Merge branch 'clscan'
authorIan Beckwith <ianb@erislabs.net>
Tue, 15 Sep 2009 22:24:07 +0000 (23:24 +0100)
committerIan Beckwith <ianb@erislabs.net>
Tue, 15 Sep 2009 22:24:07 +0000 (23:24 +0100)
debian/clscan/clscan [new file with mode: 0755]
debian/clscan/copyright.in [new file with mode: 0644]
debian/clscan/files.yaml [new file with mode: 0644]
debian/clscan/new.txt [new file with mode: 0644]
debian/copyright

diff --git a/debian/clscan/clscan b/debian/clscan/clscan
new file mode 100755 (executable)
index 0000000..de47a6a
--- /dev/null
@@ -0,0 +1,609 @@
+#!/usr/bin/perl -w
+# Copyright 2009 Ian Beckwith <ianb@erislabs.net>
+# License: GPL v2 or later.
+
+use strict;
+use vars qw($me);
+$me=($0=~/(?:.*\/)?(.*)/)[0];
+
+use Getopt::Long;
+use YAML::Any;
+use Digest::SHA qw(sha256_hex);
+use File::Find;
+use File::Copy;
+
+our $CLSCANDIR="debian/clscan";
+our $FILESCACHE="$CLSCANDIR/files.yaml";
+our $NEWFILES="$CLSCANDIR/new.txt";
+our $COPYRIGHTSTUB="$CLSCANDIR/copyright.in";
+
+my $gpl_boilerplate=<<"EOL";
+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/>.
+EOL
+
+my $lgpl_boilerplate=<<"EOL";
+This program is free software; you can redistribute it and/or modify it
+under the terms of the GNU Library General Public License as published
+by the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+USA.
+EOL
+
+# license overrides as specified in modules/*
+our $module_licenses = {
+    "public domain" => {
+       license => "PD",
+       license_text => "",
+    },
+    "unlimited" => {
+        license => "other",
+       license_text => "This file is free software; the Free Software Foundation\n" .
+                       "gives unlimited permission to copy and/or distribute it,\n" .
+                        "with or without modifications, as long as this notice is preserved.\n",
+    },
+    "LGPL" => {
+       license => "LGPL",
+       license_text => $lgpl_boilerplate,
+    },
+    "LGPLv2+" => {
+       license => "LGPL-2+",
+       license_text => $lgpl_boilerplate,
+    },
+    "unmodifiable license text" => {
+       license => "other",
+       license_text => "Everyone is permitted to copy and distribute verbatim copies\n" .
+                        "of this license document, but changing it is not allowed.\n",
+    },
+    "GPLed build tool" => {
+       license => "GPL",
+       license_text => $gpl_boilerplate,
+    },
+    "GPL" => {
+       license => "GPL",
+       license_text => $gpl_boilerplate,
+    },
+};
+
+our @filenames=();
+our %overrides=();
+our $files={};
+our $new={};
+
+# actions
+my $scan=0;
+my $merge=0;
+my $writecopyright=0;
+
+usage() unless(@ARGV);
+usage() unless GetOptions("scan|s" => \$scan,
+                         "merge|m" => \$merge,
+                         "write|w" => \$writecopyright,
+                         "help|h" => sub { usage(); });
+
+load_cache();
+scan() if($scan);
+merge() if($merge);
+write_copyright() if ($merge || $writecopyright);
+
+
+
+sub scan
+{
+    get_filenames();
+    for my $file (@filenames)
+    {
+       scan_file($file);
+    }
+    write_new();
+    find_deleted();
+}
+
+sub merge
+{
+    merge_new();
+    load_overrides();
+    save_cache();
+}
+
+sub write_copyright
+{
+    unless(keys(%$files))
+    {
+       die("$me: no files known, run $0 --scan\n");
+    }
+    unless(copy($COPYRIGHTSTUB, "debian/copyright"))
+    {
+       die("$me: cannot copy $COPYRIGHTSTUB to debian/copyright: $!\n");
+    }
+    unless(open(COPYRIGHT, ">>debian/copyright"))
+    {
+       die("$me: cannot append to debian/copyright: $!\n");
+    }
+
+    # group files by license/license_text/copyright
+    my $licenses={};
+    for my $file (sort keys(%$files))
+    {
+       my $license=$files->{$file}->{license_override} || $files->{$file}->{license};
+       my $copyright=$files->{$file}->{copyright};
+       my $license_text=$files->{$file}->{license_text_override} ||
+           $files->{$file}->{license_text};
+       push(@{$licenses->{$license}->{$license_text}->{$copyright}}, $file);
+    }
+    my %refs=();
+    my $refnum="00";
+    for my $license (sort keys(%$licenses))
+    {
+       for my $license_text (sort keys(%{$licenses->{$license}}))
+       {
+           my $licensestr=$license;
+           if(length($license_text))
+           {
+               $refnum++;
+               # license_text + empty license = License: other
+               if(!length($license))
+               {
+                   $licensestr = "other";
+               }
+               $licensestr .= " [REF$refnum]";
+               $refs{$licensestr}=$license_text;
+           }
+           for my $copyright (sort keys(%{$licenses->{$license}->{$license_text}}))
+           {
+               next if(!length($license) && !length($copyright) && !length($license_text));
+               my @filelist=sort @{$licenses->{$license}->{$license_text}->{$copyright}};
+               print COPYRIGHT "Files: ", join(', ', @filelist), "\n";
+               print COPYRIGHT "Copyright: $copyright\n" if length($copyright);
+               print COPYRIGHT "License: $licensestr\n" if length($licensestr);
+               print COPYRIGHT "\n";
+           }
+       }
+    }
+    for my $ref (sort byref keys(%refs))
+    {
+       print COPYRIGHT "License: $ref\n";
+       my @text=split(/\n/, $refs{$ref});
+       print COPYRIGHT map { "    " . $_ . "\n" } @text;
+       print COPYRIGHT "\n";
+    }
+    print COPYRIGHT license_trailer(sort keys(%$licenses));
+    close(COPYRIGHT);
+}
+
+sub byref
+{
+    my $aref=($a=~/\[REF(\d+)\]/)[0];
+    my $bref=($b=~/\[REF(\d+)\]/)[0];
+    if($aref && $bref)
+    {
+       return($aref <=> $bref);
+    }
+    return($a cmp $b);
+}
+
+sub license_trailer
+{
+    my @licenses_used=@_;
+    my $license_data = {
+       "Apache-2.0" => "Apache License Version 2.0",
+       "Artistic" => "Artistic License",
+       "GFDL-1.2" => "GNU Free Documentation License Version 1.2",
+       "GFDL-1.3" => "GNU Free Documentation License Version 1.3",
+       "GFDL" => "GNU Free Documentation License",
+       "GPL-2" => "GNU General Public License Version 2",
+       "GPL-3" => "GNU General Public License Version 3",
+       "GPL" => "GNU General Public License",
+       "LGPL-2" => "GNU Library General Public License Version 2",
+       "LGPL-2.1" => "GNU Lesser General Public License Version 2.1",
+       "LGPL-3" => "GNU Lesser General Public License Version 3",
+       "LGPL" => "GNU Lesser General Public License",
+    };
+
+    my %types_found=();
+    for my $type (reverse sort keys(%$license_data))
+    {
+       for my $license (@licenses_used)
+       {
+           if($license =~ /$type(\+|\s|$)/i)
+           {
+               $types_found{$type}=1;
+           }
+       }
+    }
+    my $text="\n";
+    # if just one, use standard style
+    if(keys(%types_found) == 1)
+    {
+       my ($file, $name)=each(%types_found);
+       $text .= "The complete text of the $name can be\n";
+       $text .= "found in /usr/share/common-licenses/$file\n";
+    }
+    else
+    {
+       # more than one, use table.
+       $text .= "The complete text of standard licenses referenced above\n";
+       $text .= "can be found in /usr/share/common-licenses/ as follows:\n\n";
+       $text .= sprintf("%-60s %s\n", "LICENSE", "FILE");
+       for my $type (sort keys(%types_found))
+       {
+           $text .= sprintf("%-60s %s\n", $license_data->{$type}, $type);
+       }
+    }
+    return $text;
+}
+
+
+sub guess_license
+{
+    my $file=shift;
+    my $license='';
+    my $copyright='';
+    if(open(LICENSECHECK, "licensecheck --copyright \"$file\"|"))
+    {
+       while(<LICENSECHECK>)
+       {
+           chomp;
+           if(/^\s+\[(.*)\]$/)
+           {
+               $copyright=$1;
+           }
+           elsif(/.*:\s+(.*)/)
+           {
+               $license=$1;
+           }
+       }
+       close(LICENSECHECK);
+       $copyright =~ s/^\s*Copyright\s*:\s*//;
+       $license =~ s/.*UNKNOWN.*//;
+       $license =~ s/(L?GPL) \(v([\.\d]+) or later\)/$1-$2+/i;
+       $license =~ s/(L?GPL) \(v([\.\d]+)\)/$1-$2/i;
+       $license =~ s/G?FDL \(v([\.\d]+) or later\)/GFDL-$1+/i;
+       $license =~ s/G?FDL \(v([\.\d]+)\)/GFDL-$1/i;
+       $license =~ s/Apache \(v([\.\d]+) or later\)/Apache-$1+/i;
+       $license =~ s/Apache \(v([\.\d]+)\)/Apache-$1+/i;
+    }
+    return($license, $copyright);
+}
+
+sub scan_file
+{
+    my $filename=shift;
+    unless(open(FILE, $filename))
+    {
+       warn("$me: $filename: cannot open: $!\n");
+       return;
+    }
+    my $header='';
+    for(my $i=0; $i < 15; $i++)
+    {
+       my $line=<FILE>;
+       last unless($line);
+       $header .= $line;
+    }
+    close(FILE);
+    my $hash=sha256_hex($header);
+    if( (!exists($files->{$filename})) ||
+       ($files->{$filename}->{hash} ne $hash))
+    {
+       filechanged($filename, $hash, $header);
+    }
+}
+
+
+sub filechanged
+{
+    my($filename, $hash, $header)=@_;
+    my($license_guess, $copyright_guess)=guess_license($filename);
+    $new->{$filename}={
+       hash=>$hash,
+       license=>$license_guess,
+       copyright=>$copyright_guess,
+       header=>$header,
+    };
+    if(exists($files->{$filename}))
+    {
+       if(exists($files->{$filename}->{copyright}))
+       {
+           $new->{$filename}->{copyright_old}=$files->{$filename}->{copyright};
+       }
+       if(exists($files->{$filename}->{license}))
+       {
+           $new->{$filename}->{license_old}=$files->{$filename}->{license};
+       }
+       if(exists($files->{$filename}->{license_text}))
+       {
+           $new->{$filename}->{license_text_old}=$files->{$filename}->{license_text};
+       }
+    }
+}
+
+sub get_filenames
+{
+    find(\&wanted_files, ".");
+}
+
+sub wanted_files
+{
+    if(/^\.git/ || /^\.cvs/ || /^debian/ || /^modules$/)
+    {
+       $File::Find::prune=1;
+    }
+    elsif(-f)
+    {
+       push(@filenames, $File::Find::name);
+    }
+}
+
+sub wanted_modules
+{
+    if(/^\.[^\/]/ || /^README$/ || /^COPYING$/)
+    {
+       $File::Find::prune=1;
+       return;
+    }
+    elsif(-f)
+    {
+       unless(open(MOD, $File::Find::name))
+       {
+           warn("$me: cannot open $File::Find::name: $!\n");
+           return;
+       }
+       my $infiles=0;
+       my $inlicense=0;
+       my @files=();
+       while(<MOD>)
+       {
+           chomp;
+           if(/^$/)
+           {
+               $infiles = $inlicense = 0;
+           }
+           if($inlicense)
+           {
+               push(@{$overrides{$_}},@files);
+               $inlicense=0;
+           }
+           elsif($infiles)
+           {
+               push(@files, $_);
+           }
+           elsif(/^License:/)
+           {
+               $inlicense=1;
+           }
+           elsif(/^Files:/)
+           {
+               $infiles=1;
+           }
+       }
+       close(MOD);
+    }
+}
+
+sub load_overrides
+{
+    find({ wanted => \&wanted_modules, no_chdir => 1}, "modules/");
+    for my $license (keys(%overrides))
+    {
+       if(!exists($module_licenses->{$license}))
+       {
+           die("$me: license override \"$license\" not found in \$module_licenses\n");
+       }
+       my @overridden_files=map { "./" . $_; } @{$overrides{$license}};
+       for my $file (@overridden_files)
+       {
+           my $override=$module_licenses->{$license};
+           if(length($override->{license}))
+           {
+               $files->{$file}->{license_override}=$override->{license};
+           }
+           if(length($override->{license_text}))
+           {
+               $files->{$file}->{license_text_override}=$override->{license_text};
+           }
+       }
+    }
+}
+
+
+sub load_cache
+{
+    unless(open(YAML,$FILESCACHE))
+    {
+       warn("$me: cannot load cache $FILESCACHE: $!\n");
+       return;
+    }
+    my $yaml;
+    {
+       local $/=undef;
+       $yaml=<YAML>;
+    }
+    close(YAML);
+    $files=Load($yaml);
+}
+
+sub save_cache
+{
+    backup($FILESCACHE);
+    unless(open(YAML,">$FILESCACHE"))
+    {
+       warn("$me: cannot save cache $FILESCACHE: $!\n");
+       return;
+    }
+    print YAML Dump($files);
+    close(YAML);
+}
+
+sub write_new
+{
+    backup($NEWFILES);
+    unless(keys(%$new))
+    {
+       warn("$me: no new/changed files found\n");
+       return;
+    }
+    unless(open(NEW,">$NEWFILES"))
+    {
+       die("$me: cannot write to $NEWFILES: $!\n");
+    }
+    for my $file (sort keys %$new)
+    {
+       print NEW "File: $file\n";
+       print NEW "Hash: ", $new->{$file}->{hash}, "\n";
+       print NEW "Copyright: ", $new->{$file}->{copyright}, "\n";
+       print NEW "License: ", $new->{$file}->{license}, "\n";
+       print NEW "License_Text: \n";
+       if($new->{$file}->{license_old})
+       {
+           print NEW "#License_old: ", $new->{$file}->{license_old}, "\n";
+       }
+       if($new->{$file}->{copyright_old})
+       {
+           print NEW "#Copyright_old: ", $new->{$file}->{copyright_old}, "\n";
+       }
+       if($new->{$file}->{licence_text_old})
+       {
+           print NEW "#License_text_old: ", $new->{$file}->{licence_text_old}, "\n";
+       }
+       print NEW "#Header: \n";
+       my @headerlines=split(/\n/, $new->{$file}->{header});
+       @headerlines=map { "#" . $_ } grep { defined $_; } @headerlines;
+       print NEW join("\n", @headerlines);
+       print NEW "\n\n";
+    }
+    close NEW;
+}
+
+sub merge_new
+{
+    unless(open(NEW, $NEWFILES))
+    {
+       die("$me: $NEWFILES: cannot open: $!\n");
+    }
+    my $license='';
+    my $copyright='';
+    my $hash='';
+    my $file='';
+    my $license_text='';
+    my $in_license_text=0;
+    my $line=0;
+    while(<NEW>)
+    {
+       $line++;
+       chomp;
+       next if(/^\s*\#/);
+       if($in_license_text && /^\s+(.*)/)
+       {
+           $license_text .= $1 . "\n";
+       }
+       elsif(/^\s*$/)
+       {
+           next;
+       }
+       elsif(/^File:\s*(.*)/)
+       {
+           my $newfile=$1;
+           # save previous entry
+           if(length($file) && length($hash))
+           {
+               $files->{$file}={ hash=>$hash,
+                                 copyright=>$copyright,
+                                 license=>$license,
+                                 license_text=>$license_text };
+           }
+           $file=$newfile;
+           $license='';
+           $copyright='';
+           $hash='';
+           $license_text='';
+           $in_license_text = 0;
+       }
+       elsif(/^Hash:\s*(.*)/)
+       {
+           $hash=$1;
+       }
+       elsif(/^Copyright:\s*(.*)/)
+       {
+           $copyright=$1;
+       }
+       elsif(/^License:\s*(.*)/)
+       {
+           $license=$1;
+           $in_license_text=1;
+           $license_text='';
+       }
+       else
+       {
+           warn("$me: $NEWFILES: line $line not recognized\n");
+       }
+    }
+    close(NEW);
+    # save last entry
+    if(length($file) && length($hash))
+    {
+       $files->{$file}={ hash=>$hash,
+                         copyright=>$copyright,
+                         license=>$license,
+                         license_text=>$license_text };
+    }
+}
+
+sub find_deleted
+{
+    my @deleted=();
+    my %newnames = map { $_ => 1 } @filenames;
+    for my $file (sort keys(%$files))
+    {
+       unless(exists($newnames{$file}))
+       {
+           push(@deleted, $file);
+       }
+    }
+    if(@deleted)
+    {
+       print "Removed files:\n";
+       print join("\n", @deleted),"\n";
+    }
+}
+
+sub backup
+{
+    my $base=shift;
+    my $old="$base.old";
+    if(-f $base)
+    {
+       unlink($base);
+       move($base, $old);
+    }
+}
+
+sub usage
+{
+    die("usage: $me [--scan] [--merge]\n",
+       "scans for changed copyright/licenses\n",
+       "  -s|-scan      Scan for new files & files with changed copyright headers\n",
+       "                Writes to debian/clscan/new.txt for manual review.\n",
+       "  -m|--merge    Merges new data from debian/clscan/new.txt\n",
+       "  -w|--write    Writes updated debian/copyright.\n",
+       "                --merge implies --write.\n");
+}
diff --git a/debian/clscan/copyright.in b/debian/clscan/copyright.in
new file mode 100644 (file)
index 0000000..fc164b6
--- /dev/null
@@ -0,0 +1,49 @@
+This package was debianized by Daniel Baumann <daniel@debian.org> on
+Thu,  1 Jun 2006 00:00:00 +0200.
+
+It was downloaded from <git://git.savannah.gnu.org/gnulib.git>.
+
+> The files in here are mostly copyright (C) Free Software Foundation, and
+> are under assorted licenses.  Mostly, but not entirely, GPL.
+>
+> Many modules are provided dual-license, either GPL or LGPL at your
+> option.  The headers of files in the lib directory (e.g., lib/error.c)
+> state GPL for convenience, since the bulk of current gnulib users are
+> GPL'd programs.  But the files in the modules directory (e.g.,
+> modules/error) state the true license of each file, and when you use
+> 'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
+> the files to have an LGPL header as part of copying them from gnulib
+> to your project directory, or fails because the modules you requested
+> were not licensed under LGPL.
+>
+> Some of the source files in lib/ have different licenses.  Also, the
+> copy of maintain.texi in doc/ has a verbatim-copying license, and
+> doc/standards.texi and make-stds.texi are GFDL.
+
+Detailed copyright information follows, see debian/clscan/README
+in the gnulib source package for information on updating this.
+
+Files: debian/*
+Copyright: 2006-2008, Daniel Baumann <daniel@debian.org> /  2009 Ian Beckwith <ianb@debian.org>
+License: GPL-2
+
+Files: modules/*
+Copyright: 2002-2007 Free Software Foundation, Inc.
+License: other
+  From modules/README:
+  > All the files in this directory are distributed under the following copyright:
+  >
+  > Copyright (C) 2002-2007 Free Software Foundation, Inc.
+  > Copying and distribution of this file, with or without modification,
+  > in any medium, are permitted without royalty provided the copyright
+  > notice and this notice are preserved.
+  From modules/COPYING:
+  > The files in this directory describe the gnulib modules.
+  > The following copyright notice applies to each of these
+  > description files.
+  >
+  > Copyright (C) 2006 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.
+
diff --git a/debian/clscan/files.yaml b/debian/clscan/files.yaml
new file mode 100644 (file)
index 0000000..2072f91
--- /dev/null
@@ -0,0 +1,29901 @@
+--- 
+./COPYING: 
+  copyright: ''
+  hash: 60c25a32bddb8e12cdd819cc29ec9a6d941431c6a013a71e2878536fa16d4dd7
+  license: ''
+  license_text: ''
+./ChangeLog: 
+  copyright: ''
+  hash: 0fc0c9c0235be8c8ba21d40facf534e03437b77886effa77a634fc9a1929b3e8
+  license: ''
+  license_text: ''
+./DEPENDENCIES: 
+  copyright: ''
+  hash: 3c8640aeff44fe6c30a27836e926fcaa6f6a5f4d35d8c540f71f7c568cf60d4f
+  license: ''
+  license_text: ''
+./MODULES.html.sh: 
+  copyright: 2002-2009 Free Software Foundation, Inc.
+  hash: 30633aa046887d3d7c2edee238d5e009b260d8eaec001809cdcdcef205089d59
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./Makefile: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 7ad5a3ccd8892f7a29384dd4ed455a2c57cdadf2624c943f51127745751ffbe7
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nin any medium, are permitted without royalty provided the copyright\nnotice and this notice are preserved.\n"
+./NEWS: 
+  copyright: ''
+  hash: 141ae5843fb9df760bf1e31402eb714cf1261d9c6db16e4db30aeba3acf9e663
+  license: ''
+  license_text: ''
+./README: 
+  copyright: ''
+  hash: 3da1ae1f2de3a84a70abca2325e281203ffe123afbc003420697463b56efd35c
+  license: ''
+  license_text: ''
+./build-aux/announce-gen: 
+  copyright: 2002-2009 Free Software Foundation, Inc.
+  hash: 9ebe62448e2c3a71f08521ec64d65dd561761e446347edc914f396fe810040ba
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/bootstrap: 
+  copyright: 2003-2009 Free Software Foundation, Inc.
+  hash: f97568fc9b26977bf8aa781f26a1f5df7c9e5dc7c8d9a4e54e2c8d7892765096
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/bootstrap.conf: 
+  copyright: 2006, 2007 Free Software Foundation, Inc.
+  hash: 95cc00b43d60d3bff61561355253d777ac82e105338bf23faf29168086d392c2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/compile: 
+  copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+  hash: 1a1d949ff906c036a902a8021154e8f127f6bdeaa7b22843a9bd13badc24253a
+  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"
+./build-aux/config.guess: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 1fc09da52d50a533ff9166226320f69603e3c5189271118a66d0cc514e6a3d71
+  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"
+./build-aux/config.libpath: 
+  copyright: 1996-2008 Free Software Foundation, Inc.
+  hash: ac72222f705d2427683a67b643cf25045db2915ab66319cf535c68b847472ad3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/config.rpath: 
+  copyright: 1996-2008 Free Software Foundation, Inc.
+  hash: c52259321cfea86c34876e34db5356168f319d7f0dda0fd76efa9dce5e6fea4d
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./build-aux/config.sub: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, Free Software Foundation, Inc.
+  hash: 6e2b7e1143d443ea670be8edea2db4d9a6ac57e6f22aa4a88443959ab8ad42c7
+  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"
+./build-aux/csharpcomp.sh.in: 
+  copyright: 2003-2006 Free Software Foundation, Inc.
+  hash: 13d53b69f8e2663d2abeb4053b3cd45b2b3f99563e826a5fd67abcf4ac201e22
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/csharpexec.sh.in: 
+  copyright: 2003, 2005 Free Software Foundation, Inc.
+  hash: 08e6e1564fcf7509ae893ac7b3121aa831344458a4ff420c1994918d9792b151
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/depcomp: 
+  copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: ab3cbcc8d9b25ff49daba60a573055149a8330158ab61b0602538a1cdf27e9f8
+  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"
+./build-aux/elisp-comp: 
+  copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+  hash: 650765cd58e0b384cc47b3c257ea4955be8b26117eb05106cd7a39ef002314ed
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/gendocs.sh: 
+  copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 203ece29ab9caad64ebd3b3a75725444676b43bd66f2f22b8fc836c5bab0ec78
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/git-version-gen: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a08c7e5c0619d75de3d15e0bdf4ff226dc7f5a89a1e3c6f7b1d5b664b96cf692
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/gitlog-to-changelog: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 9cca6130908ff793b8a1af70cc476f55970e378cddd4177d5a602decbeb94542
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/gnupload: 
+  copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: bff7381ec4c19e81634ea630fca8a053cfe1333142662cd70b32c4fe46f3e36e
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/install-reloc: 
+  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 613894d1c2a2855e0f3eb82986175598d077c45c05dbac2f339031487a83f4e4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/install-sh: 
+  copyright: 1994 X Consortium
+  hash: 5dcf8a8dd376f4c95767a2dcb626e89a66d6f2fda2352f534a296ac6cc9a20b3
+  license: ''
+  license_text: "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\nX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\nAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\nTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of the X Consortium shall not\nbe used in advertising or otherwise to promote the sale, use or other deal-\nings in this Software without prior written authorization from the X Consor-\ntium.\n\nFSF changes to this file are in the public domain.\n"
+./build-aux/javacomp.sh.in: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: a2fa68883ebe7994ced1edf628a9c6cb6d79ef3edfd0c14996e1e14ef0d7c4c6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/javaexec.sh.in: 
+  copyright: 2001, 2006 Free Software Foundation, Inc.
+  hash: 8b8c346d69504f34a6426de103455a52b09deb2a0c5a74bb8d4368cad9d6b8d4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/ldd.sh.in: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 6bfa3933015b9b05e431eb13f03e5297cc73bb56bc426d811f1fa41ec7844650
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/link-warning.h: 
+  copyright: ''
+  hash: cb78032cfaf626adb1bc97576502516519b4888988a51aaa1c4963817b48b0e2
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./build-aux/mdate-sh: 
+  copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: ae36e3c36cd08de4a5aaadc7311d0863108cbc4fcda21b18e902f6218e675035
+  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"
+./build-aux/missing: 
+  copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: d8c7220550f4985316cb4c11d4c304b84debd55902b7528ad3f944a478f0c90e
+  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"
+./build-aux/mkinstalldirs: 
+  copyright: ''
+  hash: fbad76aa017d3ccba0cfd78db353d5c15c571f4617320fd53b7ee67c788cbc65
+  license: ''
+  license_text: "Original author: Noah Friedman <friedman@prep.ai.mit.edu>\nCreated: 1993-05-16\nPublic domain.\n"
+./build-aux/mktempd: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 5c32320b58d10b6b74af578eb9a1bf5015360211ac2b2932f4303648b3e7a354
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/move-if-change: 
+  copyright: 2002-2007 Free Software Foundation, Inc.
+  hash: 804812198e7aadc810a167cc8015b32770e16ac23315a92f8ce3bba2c1ecbfe1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/ncftpput-ftp: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 462b4e7cc8f6796fd32420382ed3f3f5e2246d58bd186469614dcd8d3a89a239
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/pmccabe.css: 
+  copyright: ''
+  hash: 0d101dc42f369f71b997fc77eb3bc11d765e5c437b6824ef244bda483f9a1c48
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/pmccabe2html: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: a93c5cea3b0bf8641cfbe982861478458a8419d5adffa3e4e88c5c5450d54ebe
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/po/Makefile.in.in: 
+  copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+  hash: 5580fc36bc0f59414a3844a04f9f2f4185bddc3a262525fa98898da44a4a9e95
+  license: ''
+  license_text: "This file can be copied and used freely without restrictions.  It can\nbe used in projects which are not available under the GNU General Public\nLicense but which still want to provide support for the GNU gettext\nfunctionality.\nPlease note that the actual code of GNU gettext is covered by the GNU\nGeneral Public License and is *not* in the public domain.\n"
+./build-aux/po/remove-potcdate.sin: 
+  copyright: ''
+  hash: ff1cc3a86fdab7c5764e80f794afd6f5e81d05421c0e52dc27c4cc93e9546f19
+  license: ''
+  license_text: ''
+./build-aux/reloc-ldflags: 
+  copyright: 2003 Free Software Foundation, Inc.
+  hash: 7455efaa7fbcc667838f3599223fba7bddc4873e38527f938e7168c709602ffb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/relocatable.sh.in: 
+  copyright: 2003, 2005-2007 Free Software Foundation, Inc.
+  hash: 9999da027001765970462a1eefc6bb884cbed4f8e7c548585f0b21c86e9851da
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/texinfo.tex: 
+  copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 6e6bda9f2252f034e86fb076cb53b27dbe4b35c676205310c46642a86d6bf51d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/update-copyright: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a49986e631d5bcdc1ae01896d48c4012ff114f92427b2290dc166a7512804b56
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/useless-if-before-free: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 3328c2c72241c0c23c28e4c19a5a353b08e308334956478cce81534a6a5cf7e2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/vc-list-files: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 37cfcaca7e77bc33ad04c6bc2f69980b41136c6610fa24b30dd929126d28e8eb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./build-aux/x-to-1.in: 
+  copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
+  hash: 435c01c15a67e002b489e7cd3ceaa0680f4817e6410f07f8209bc67a061f9498
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./check-module: 
+  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 0773e749793f3ec28522fb356985b4f51ce4d7f17b99c7f1ec92a80bfff8b026
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./config/argz.mk: 
+  copyright: ''
+  hash: 6931c96d920bb98e9705beea49aa8e61ce728439d16bcc702289e9f16d04fe90
+  license: ''
+  license_text: ''
+./config/srclist-update: 
+  copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
+  hash: 07d2f67dd25798899d772b1db8639368147e43615c175443b9d8720f7ae0d428
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./config/srclist.txt: 
+  copyright: ''
+  hash: 82bb09655cee0a765f990da640454c5099c5e49f722a0d14d35fde12270d2983
+  license: ''
+  license_text: ''
+./config/srclistvars.sh: 
+  copyright: 2002, 2003, 2004 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: 009a6f6d36cf2b47a67c2e404d912b491cb310a8653631b8302a8691da1b7f6b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./doc/COPYING.LESSERv2: 
+  copyright: 1991, 1999 Free Software Foundation, Inc.
+  hash: c5e2ab2668641c2e13afa9e23551ae614f835ac715d30aec90e5d7bada5ecbff
+  license: ''
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/COPYING.LESSERv3: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: f5b4a69119b8d0acfc04d77831874f339432846e9ed129e412b15fb328c9d2c6
+  license: ''
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/COPYINGv2: 
+  copyright: 1989, 1991 Free Software Foundation, Inc.
+  hash: 2b241f6064bd3616cb72a4d0c6dae9821c891d4c8fd63493b6ad9933c3be72c9
+  license: ''
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/COPYINGv3: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: cbf8d8990150fe3b4cd5e988bb081217b05d988766f352fed4de6d2e5a35a58e
+  license: ''
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/Copyright/assign.changes.manual: 
+  copyright: ''
+  hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+  license: ''
+  license_text: ''
+./doc/Copyright/assign.future.manual: 
+  copyright: ''
+  hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+  license: ''
+  license_text: ''
+./doc/Copyright/assign.manual: 
+  copyright: ''
+  hash: fc744c2d1b5aa2c596922b17b46b760d852e99717883fe9fd547d5f5bd318a9c
+  license: ''
+  license_text: ''
+./doc/Copyright/assign.translation.manual: 
+  copyright: ''
+  hash: 5fd32468982f7402a68b288a2906b1351ffe45a2bb839b5ae13ab97a63827460
+  license: ''
+  license_text: ''
+./doc/Copyright/conditions.text: 
+  copyright: ''
+  hash: a0ea940fa380501407151c5ccd168afabc1749eab7ed1ccda3b32b2b85b9255a
+  license: ''
+  license_text: ''
+./doc/Copyright/disclaim.changes.manual: 
+  copyright: ''
+  hash: 757e8f68162152a11f39cc06de884e60f95476ecd4cd382194c22af4d7c2dbfe
+  license: ''
+  license_text: ''
+./doc/Copyright/disclaim.manual: 
+  copyright: ''
+  hash: 8bb37e0674a0a2ffd0a89682057126b8e58280dde15573436bf8b307c5db7c92
+  license: ''
+  license_text: ''
+./doc/Copyright/disclaim.program: 
+  copyright: ''
+  hash: 1004a718603464ea52341822431714f6de8c4bdcf58f20f53f418a13c0457c30
+  license: ''
+  license_text: ''
+./doc/Copyright/request-assign.changes: 
+  copyright: ''
+  hash: 2ba32591db9fee4f110bdbcbe22f674ab921b555585aa905d212b9c56b4c01c4
+  license: ''
+  license_text: ''
+./doc/Copyright/request-assign.future: 
+  copyright: ''
+  hash: 9ba7d169c4fc06b01a773daf5ff5c2a9b2e52ac0b79a3d41aa123c51c9755a03
+  license: ''
+  license_text: ''
+./doc/Copyright/request-assign.program: 
+  copyright: ''
+  hash: f1c1a0ce3e67f88c09551e5dde215d5bf03022945d5fce5d47eb781f971a6699
+  license: ''
+  license_text: ''
+./doc/Copyright/request-disclaim.changes: 
+  copyright: ''
+  hash: 5d1569edac388e95ffe46d8a867730615f1a0ff33075596038d3e7a3eb06ee36
+  license: ''
+  license_text: ''
+./doc/INSTALL: 
+  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 71a35b239f3b448ef8b27fd63a6722f5cbec0a5bc5f700deb5038afa3caa84ba
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nare permitted in any medium without royalty provided the copyright\nnotice and this notice are preserved.  This file is offered as-is,\nwithout warranty of any kind.\n"
+./doc/INSTALL.ISO: 
+  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 6e5a01010be07ff0d4d534b3b790b151a8e39cbc596c45033bf1d82ec269eed6
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nare permitted in any medium without royalty provided the copyright\nnotice and this notice are preserved.  This file is offered as-is,\nwithout warranty of any kind.\n"
+./doc/INSTALL.UTF-8: 
+  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 0b6f2758c270e39f2120bc2beb256a3dcdd878e3ab6f36c81cfe1110d4a65fbb
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nare permitted in any medium without royalty provided the copyright\nnotice and this notice are preserved.  This file is offered as-is,\nwithout warranty of any kind.\n"
+./doc/Makefile: 
+  copyright: 2004, 2006-2009 Free Software Foundation, Inc.
+  hash: e588412f4808f445922802b7c5310650b2edc4fc1d22da096884812313562f82
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nare permitted in any medium without royalty provided the copyright\nnotice and this notice are preserved.\n"
+./doc/README: 
+  copyright: ''
+  hash: 5eb4b0ac21e256e6b201f1d6038cfc9fe8c0d168484e6471bda54699c84b88c9
+  license: ''
+  license_text: ''
+./doc/acl-cygwin.txt: 
+  copyright: ''
+  hash: 7512950629f04d795e20ac566c5fc7f846b829a09031acfd3ba424841e3f6e71
+  license: ''
+  license_text: ''
+./doc/acl-resources.txt: 
+  copyright: ''
+  hash: 65da96ac4e110970dd7bee204441e94d575e83310791c7f95365082981b55962
+  license: ''
+  license_text: ''
+./doc/agpl-3.0.texi: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 77c3f2a9718accc065836d61cf2575b50220f1f3c121e281fec0a06ee3ad8b46
+  license: ''
+  license_override: other
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+  license_text_override: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/alloca-opt.texi: 
+  copyright: 2004, 2007 Free Software Foundation, Inc.
+  hash: ba0ad6232fbf3ba81b9dece15497df973cbcf4a4b7e2295ca66b0bed803d82da
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/alloca.texi: 
+  copyright: 2004, 2007 Free Software Foundation, Inc.
+  hash: abaafa45b821b2064d735be4848a476c92e67742811e7c991eefbf8b0314210c
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/c-ctype.texi: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 02681cc5ffcc4bb503782c8ce7f5b053f524a61d77b10dfd3c8d29e8696a8cd5
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/c-strcase.texi: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 12a8966489a243d56b5727a843e8d199ce1be4cbddf810d6e0546fc0d47c0db9
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/c-strcaseeq.texi: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 07a09de098c41135d2b8c252e34d16942a2df705d4165259604efc2bc89f32df
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/c-strcasestr.texi: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 28f551e29d750587564a6c9d605d880b4adc908e73ba20486dad95089bcbe988
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/c-strstr.texi: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: dc0b4e2b4ae14f6c0b231a1cb517386171cdd2e79bad16e5c8468a6d3f05d863
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/c-strtod.texi: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: f12b034c095af6fedebe50970c03692a308cd6d76c710040021e05e14111d0e6
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/c-strtold.texi: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: acd8d275bc49ba09e74845ef9ab62f76fe1ec2a82b7358a85790af57c33de3eb
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/ctime.texi: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: c54a4356bb5de6dc3dd73b82b8ba0e40975a2cf465b639f8cf8456097c6f8658
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/error.texi: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: a5f78c9c537fb0dbb6b9d6740073f5c7cf4f1bc3af0531c33806fbfd624de688
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/fdl-1.2.texi: 
+  copyright: 2000,2001,2002 Free Software Foundation, Inc.
+  hash: 6f673a8c0082124229a9a100543bd41368cfe3db307ab0db0b89cf84c611cf1b
+  license: ''
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/fdl-1.3.texi: 
+  copyright: 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
+  hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+  license: ''
+  license_override: other
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+  license_text_override: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/fdl.texi: 
+  copyright: 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
+  hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+  license: ''
+  license_override: other
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+  license_text_override: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/func.texi: 
+  copyright: ''
+  hash: f8cd19fcf35037aa6fd49e493bd85eb6f696afa87e1bc56fbf2ee045329f20e7
+  license: ''
+  license_text: ''
+./doc/gcd.texi: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: aa4594d335a46b562a96ebd76cabc7451a3ba2737bf0b032f1b66f18ab3fc5cb
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/gendocs_template: 
+  copyright: ''
+  hash: 61dc5a61685d6ce9d5377c109bba5dc71089a86add68e14628f17ca13697d849
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./doc/gendocs_template_min: 
+  copyright: ''
+  hash: 8599a5f69e6110fe324e413e04c4920db1f37a9becf5db55f27a6d132bbfb8b2
+  license: ''
+  license_text: ''
+./doc/getdate.texi: 
+  copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: b49cb20e0eb9f85da9aeb64338b8442bd47b45259faf2e6fce118e6c90af6579
+  license: GFDL-1.3+-NIV
+  license_override: GPL
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./doc/glibc-functions/accept4.texi: 
+  copyright: ''
+  hash: b17ebc577f3ee392f19100a7b506ff1a38cc1328a92bea909d6d34690aa2bed2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/acct.texi: 
+  copyright: ''
+  hash: d37daf7575d441486ace90191eefb3bea667e4d10eff5e8a14a8c41493b0fab8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/addmntent.texi: 
+  copyright: ''
+  hash: 859dc5755ca851474f5acfa8db53055f59573e5bbaf332b8dd8e5754fda11b50
+  license: ''
+  license_text: ''
+./doc/glibc-functions/addseverity.texi: 
+  copyright: ''
+  hash: 6e44d5223f4987a83f8c4db55cfdc1f9e81c6d998c1853716aba498d5d9a1535
+  license: ''
+  license_text: ''
+./doc/glibc-functions/adjtime.texi: 
+  copyright: ''
+  hash: cbc4f68c7f77addbdc16bd13629e75db5fcff64a0567488ceb04a9459e6b992d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/adjtimex.texi: 
+  copyright: ''
+  hash: 5c618ea0205407dfab68f9bf13e88e944c25e7be821a02d1e42f49998b5ed63b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/advance.texi: 
+  copyright: ''
+  hash: 83424853aeaa0dbc7252aa0ae47b7e9f9b633576a94942c0519d53e8e4fbf526
+  license: ''
+  license_text: ''
+./doc/glibc-functions/aio_init.texi: 
+  copyright: ''
+  hash: 9776ff627d5968a12d86d200038f926555e224daed04cde21769fc19b58856f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_err_exit_status.texi: 
+  copyright: ''
+  hash: 5ad7e936e9599c8501ca2844805be318d773b5d5c7e96714c730596e5bf02292
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_error.texi: 
+  copyright: ''
+  hash: 72fdeba016c2e94cd219221fd18adfb4d13c5ba9759e2a0ec006c587799f0239
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_failure.texi: 
+  copyright: ''
+  hash: 0f61197bb59045af63a046f1456ddcc1efe393b7d73e170c2c112ac960feedd3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_help.texi: 
+  copyright: ''
+  hash: 773dd3780b48dabb78efa3e3f644e7c823f67de3b7e87ec93b0ec5cac2323bfc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_parse.texi: 
+  copyright: ''
+  hash: 3ca5263fc5663150b7dc9362a3114bd350d03d1e3e5be932c07299810577ebe2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_program_bug_address.texi: 
+  copyright: ''
+  hash: 3abb0a66f95fb062ec1970dbc8bf29e7fbf683b64d7334d38c1c58e2e175a8ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_program_version.texi: 
+  copyright: ''
+  hash: ff08b5d2808dc3501de2605f1631bd2e0a60676ba06b47d3a6faa09728c9989f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_program_version_hook.texi: 
+  copyright: ''
+  hash: 7a8f425b15b7e6abda323db20c96f40c5b56729b1bd3ddb9ab1f2130c590935c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_state_help.texi: 
+  copyright: ''
+  hash: 10e9a562637cf6c60d5b43a4e8512e74cd9a74db87707e628300d49e0e4f2512
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_usage.texi: 
+  copyright: ''
+  hash: ece258de9630be5b079b97514e35aca806a96c4ebff29277d1c07379649f5e7d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_add.texi: 
+  copyright: ''
+  hash: 18f2bcea93aa6152c099688d18a0b6ae9f76590ab025af5ec39e16865f55f96c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_add_sep.texi: 
+  copyright: ''
+  hash: 3cdf339fc9645ea7cdac7064100ed6a6fecefa47e48581d2c75e8335220b9fcd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_append.texi: 
+  copyright: ''
+  hash: ae244a6da5f6ca8ef7107924f21425880f8154ab51c14f8fb43be0f5bb7c4f52
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_count.texi: 
+  copyright: ''
+  hash: 599ba24548a6631c721c4a913df6101ad0f19f0f7bfecd4549cc20fba44c1252
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_create.texi: 
+  copyright: ''
+  hash: 6b7edc8f20ff0749926679da311d9d61a120537cb7e071ee58074a4646d19ca8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_create_sep.texi: 
+  copyright: ''
+  hash: ecd63dedd9dabcd06f22d5430d23801af84b2cfd41025684200edc2f9f951256
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_delete.texi: 
+  copyright: ''
+  hash: c5327fcde9bb049ceb161f6953d623b95ee853ed45e9616599b6acc5b2097039
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_extract.texi: 
+  copyright: ''
+  hash: a09a50dff90d595c24ae23bdccfbb09746c37bffdc88cc2b94d1864b1a9e738b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_insert.texi: 
+  copyright: ''
+  hash: 85103c1f755497213b705dcb1ecf79bf4d7564fe11243f89c5a611b642a6dde3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_next.texi: 
+  copyright: ''
+  hash: 254e88751b133e09414abfe834861a0459847c67e138f81405303735f07fdf9e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_replace.texi: 
+  copyright: ''
+  hash: f9fc8e8e0ef61fb433d129ebe214dbceab9d516d9500a9721fccc477e35cd882
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_stringify.texi: 
+  copyright: ''
+  hash: 2e019d0347b285bd91926d5e328effc134b65090ca4bdb5bed2e6ec696baea24
+  license: ''
+  license_text: ''
+./doc/glibc-functions/asprintf.texi: 
+  copyright: ''
+  hash: 4d17afdfffec5aaf5d84729b98b8b39011e25b70ce4a732557fcbb77ec8941e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authdes_create.texi: 
+  copyright: ''
+  hash: af49562730f4bc1eae2bf729db613caedd3c19062f2e837d3c451c9dbbe0bf6d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authdes_getucred.texi: 
+  copyright: ''
+  hash: 3962401affaa1079d18bf6751923e893ff9ad89ac80ef2a1e4319d506af10472
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authdes_pk_create.texi: 
+  copyright: ''
+  hash: 49a5ec10bf2dcafa8d0765e2c3399c5485bda1fe79ab9e8b963d5b9b448df435
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authnone_create.texi: 
+  copyright: ''
+  hash: e2755104eebcd1c86babce2250ea655d235714bacc7ac9af5fff656edbb4ff04
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authunix_create.texi: 
+  copyright: ''
+  hash: 2249d61f5ba791a25990c863209b5e439f4be7bacaa22901a17fca65ff57c5d9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authunix_create_default.texi: 
+  copyright: ''
+  hash: e2042c8ffb02a472907f345c6a79e7d47ebdb04ccdeda8fcc0d8e0247419d5ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/backtrace.texi: 
+  copyright: ''
+  hash: 9218fc11f85121754f3dce8759f4abfc2e96678cdcde0b64b8c5bc1dac4784fc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/backtrace_symbols.texi: 
+  copyright: ''
+  hash: 8cd5973763a4a86ca3d03a9cd93b877ccae2393c527f1c27316b5179d6d4a5c9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/backtrace_symbols_fd.texi: 
+  copyright: ''
+  hash: 568caed6a6ac65d5fd1787fd3dffafa08ff544cb3fab9405ebefa12bbe3a264f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bdflush.texi: 
+  copyright: ''
+  hash: c9d58ca272a569549bccbc6cf430bbd0e3766a2fd96f4f85d28b264e7c3aac4f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bind_textdomain_codeset.texi: 
+  copyright: ''
+  hash: 99bf7d082540b4e76c5810e19f258198590dcbd8ed95ba7f249e11e2385ebbe5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bindresvport.texi: 
+  copyright: ''
+  hash: 407362b84b67ca56f509dfede5907a628e1dbc66d95aaf1fade0d8278be1ab76
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bindtextdomain.texi: 
+  copyright: ''
+  hash: 893f7472a65a60adec27ff2fd59fc1b10ef4c8c79721df77b684108c5bd4b3c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/brk.texi: 
+  copyright: ''
+  hash: 79f13ae11705a8f029f92450cb76d735a551947e2dc605f30eb41181253dcbfd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bswap_16.texi: 
+  copyright: ''
+  hash: 8637c5832585d431bfc3e334d7b4f7b28dba3867e892c9bb3212b23a83fd7832
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bswap_32.texi: 
+  copyright: ''
+  hash: 45c27263a3c7a55e61f4965f1a769c37aec80440fea88a85fac0c011a534fab0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bswap_64.texi: 
+  copyright: ''
+  hash: 0c90737dd8475488dfe04bdea14b07139f68b9db3ffe7ef7413b6d0c90aa050f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/callrpc.texi: 
+  copyright: ''
+  hash: b20e0a5aabcff3296d32c26431ce49c9d028ceed0945caea1ac15b3c39b11cc1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/canonicalize_file_name.texi: 
+  copyright: ''
+  hash: 88ff6a4a9c1a9c691748ecbfc050f992518fae1d30dc880577caea53f2fd759c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/capget.texi: 
+  copyright: ''
+  hash: 30ca364f553845f7411c9144e8fc54534e63b47c00f1d2d8b7d42651556ee971
+  license: ''
+  license_text: ''
+./doc/glibc-functions/capset.texi: 
+  copyright: ''
+  hash: 0d46ec1a25dc5ae5c2a09e23c6df148f90bc4f6a3f339202728bc731521a79bc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cbc_crypt.texi: 
+  copyright: ''
+  hash: 2fafbda5215452dabaecd6ae338b1b42292fc7649957d7dfd53298e125c73aff
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cfmakeraw.texi: 
+  copyright: ''
+  hash: e17dc832db4056f94397e2cca5eebec2b7e7ebbf4dfd1961d7d04c2a54348d78
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cfree.texi: 
+  copyright: ''
+  hash: 3bf2ea530728c4bf2675d2c138bc897e2c61fb86e52eb1aaa5f595ee3ac1334f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cfsetspeed.texi: 
+  copyright: ''
+  hash: 3fa0159499537d1d12632e4721c20870e24b362744100c8ebf05001ac60def9a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/chroot.texi: 
+  copyright: ''
+  hash: 939c1364cb648d6985389a66cee0f7eafea4bbfeb9d87202357b7a923da9c3c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clearenv.texi: 
+  copyright: ''
+  hash: 45a56cc1e9cf0437cab4c9d9ef7939585bcd832ff2630a99ac47277be6afa7ea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clearerr_unlocked.texi: 
+  copyright: ''
+  hash: 18ac3bd638d52e5eea084f0693462f14b38c9236ffa469c9d3523413afead17a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_broadcast.texi: 
+  copyright: ''
+  hash: 1c8663af16571cdf3d9365225d9a0e98784cc856191f3febbc639bd263193ca9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_create.texi: 
+  copyright: ''
+  hash: 9b8db11b5c1ea0786cad25ac17504a90a35d649d816e719443ded731822eebc4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_pcreateerror.texi: 
+  copyright: ''
+  hash: eb667a76af61d29859afcfdcbfe23a1ba8685a7697247f375d88458d6272bd60
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_perrno.texi: 
+  copyright: ''
+  hash: ad17b85da3516ff2f72cb23d033c48e8b7a2aac5a02c5d7a01d41c6aa6600db0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_perror.texi: 
+  copyright: ''
+  hash: 82cd26d158a5d3c44dece6a886244ce36c49ebeffa26673909de77d5a788b10e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_spcreateerror.texi: 
+  copyright: ''
+  hash: 209e1e3f9cdb5fb2ae93d82626397a91f86fc5de7e053a4e9dd9ee984590ac29
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_sperrno.texi: 
+  copyright: ''
+  hash: 85facf37092f224547c9b22de2ce7120f6223b123880955f9741d4f1192ef962
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_sperror.texi: 
+  copyright: ''
+  hash: 3c5cb03e7db0c9890413fb8274e3e0825571fe513b5c3c4a8a1f381da141440a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntraw_create.texi: 
+  copyright: ''
+  hash: 369e8f51ad73920a35f5bb49c46788c9676a78b5c1efd70b19cfd8bacfc2e9ea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnttcp_create.texi: 
+  copyright: ''
+  hash: 4d775bbea4f66563fecb2274103849755071792c5af93c5f597ecc85ab8899f3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntudp_bufcreate.texi: 
+  copyright: ''
+  hash: a962c5041725d4a71eba817fb867bd2533442b43a7b467916e11b4d2fcfb6abd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntudp_create.texi: 
+  copyright: ''
+  hash: b7e0dbcfcc8ab25b818f1f10021ffb0ffe9346f911c9a9d2e6c3831177732fe5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntunix_create.texi: 
+  copyright: ''
+  hash: 9e698ad851ba6e1fd147fe815aaf57881ff7dc062416604dbf2d545352bfcfff
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clog10.texi: 
+  copyright: ''
+  hash: acd1d6d0a6a71603c0428c8498650814dd43eb9d6baabdc9fd80237f71c3516b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clog10f.texi: 
+  copyright: ''
+  hash: 203698100193133e3bf5e65d9190cc87f10ec2adb8ad31f194c46c6bc5dd8f7c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clog10l.texi: 
+  copyright: ''
+  hash: 82e4a4440dbf9ba56b1f888e1715adc2e915ae8648ef4e9f1e7f35416ed36343
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clone.texi: 
+  copyright: ''
+  hash: a8582f08a00c2362dd1296178cbbf88992b956c0c3b535cf196b0bc2936a9a6b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/crypt_r.texi: 
+  copyright: ''
+  hash: cac89bde4b8094201459b5c860197e43c9d19a1edd5f4d19e61f5ae2388e36c2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cuserid.texi: 
+  copyright: ''
+  hash: 0a6b5bac9d5e7c8e6bb2e247a67c1a11e93e5a19c3ae107a8a7f6ec904f7da68
+  license: ''
+  license_text: ''
+./doc/glibc-functions/daemon.texi: 
+  copyright: ''
+  hash: 2fd4f418d424f8b9ec2b30aef1ee09500ac5b4be47c7188da99adceaacfbe873
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dcgettext.texi: 
+  copyright: ''
+  hash: 905acd2a435ee383e3a90021092c71b1e0353a4d830f8b3368f44b7e0f16621b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dcngettext.texi: 
+  copyright: ''
+  hash: 25fe3abe9d3c981d8e134eb1eac98ed4d5431cb316b695e9f394e1730882e212
+  license: ''
+  license_text: ''
+./doc/glibc-functions/des_setparity.texi: 
+  copyright: ''
+  hash: 25d06dfb2357289c755d22b55b35fc27d29e2cbd1890ff499f26685f4fd63577
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dgettext.texi: 
+  copyright: ''
+  hash: 77128e568c7dc65aa42f7e606fa4877bc5ed42b1e00fca2a430f035f9cebc529
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dl_iterate_phdr.texi: 
+  copyright: ''
+  hash: 62ea16c0513d25faf9ec94dacddf8fd09577503f95ac512b43dd64272f621007
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dladdr.texi: 
+  copyright: ''
+  hash: a3b59426c942a6c73ba2a3ab0fdca76a02287d69dcd0af66101519b5c9f9d90f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dladdr1.texi: 
+  copyright: ''
+  hash: e173046f4a96855e31bf1e8a5e8c06752872379e66c84803e099a466f56dc35c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dlinfo.texi: 
+  copyright: ''
+  hash: cce858a4949abfcaf32a9011a7bc103723a2e8c5f3f68484d8771ba6041580c4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dlmopen.texi: 
+  copyright: ''
+  hash: 88c9a180c401ca6f03ae86e95becba54896b826306370ca3b8a8507fc8e60f07
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dlvsym.texi: 
+  copyright: ''
+  hash: 26ff4f9d467ee71d017515429de5fbfa4882051545692dbcb1c41de7af914f5f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dn_expand.texi: 
+  copyright: ''
+  hash: 63ce3292ca5569aa0366ad9c7de252d6fe18bafa7a89a5a2df6a635d5803e33f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dngettext.texi: 
+  copyright: ''
+  hash: ab37ed0effb5751971a1b3250c420469fd3bf15abc3ddfcd104904dbeb4580c1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/drand48_r.texi: 
+  copyright: ''
+  hash: 2b593e3e6fd04f9338b7138257ca7619720da7ed3fd534ee3e3a1e430c2785d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/drem.texi: 
+  copyright: ''
+  hash: 568abf399954900f4cff6dd482ab33c057fe68b9a59bafe4bec9ae73f7865399
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dremf.texi: 
+  copyright: ''
+  hash: aff887dbc137c68938b4349c5ed83048621700344ed2835c697e57fc4be7ffbb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dreml.texi: 
+  copyright: ''
+  hash: 5e5742ed947607742512dfd05cc9ec610d696663893755f51adbce805ccdd0a3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dup3.texi: 
+  copyright: ''
+  hash: 16c23e59c857fb99c7bb7b25fe21d101a640baae3518a4cf20d572e9434992eb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dysize.texi: 
+  copyright: ''
+  hash: 47a7fd72f74631c010e68a98e309a73c1c98bf25571524e582306739c239555b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ecb_crypt.texi: 
+  copyright: ''
+  hash: f690509aa7eae66e6d744b6d94375a3c735a95b856afbe31631cc213d35a0b4a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ecvt_r.texi: 
+  copyright: ''
+  hash: a3766480ff58d17093f27198c734a920722b79f48f9ad3a220c417d3edce8342
+  license: ''
+  license_text: ''
+./doc/glibc-functions/encrypt_r.texi: 
+  copyright: ''
+  hash: 979cf283d7e89b787857095878553ce9fdd52f37d25528614248c801640a4e3a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endaliasent.texi: 
+  copyright: ''
+  hash: fb6325f2b1786c6daada61f5763b2eabe62ef7167e29c6def8dfec6b29b9efd4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endfsent.texi: 
+  copyright: ''
+  hash: 2ef59b14a9f5b3b4eff8dc92d40599d2989beb3056a9d905f3c287651b2051e7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endmntent.texi: 
+  copyright: ''
+  hash: 902f99fbfabd3d3eaea54807c5d37d8ae32561911a61da4d7d826c453956b788
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endnetgrent.texi: 
+  copyright: ''
+  hash: b561dcd1b6c6b62e9a3a88367b4035c2c7254d8d090337ab0323e327358e23d3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endrpcent.texi: 
+  copyright: ''
+  hash: 2ec149a39480679f19e566cbfe837884852ce67563d81ddb5af842b60a2f7b75
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endspent.texi: 
+  copyright: ''
+  hash: 23caa8ff196980b0fe2091e5ac0cd11117a6bc13a244ba4e59f2afe4d63f808e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endttyent.texi: 
+  copyright: ''
+  hash: 353485a83507aee8c9e0f8d7543cfde2ffd936dd4661252f07a58245a7f06e86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endusershell.texi: 
+  copyright: ''
+  hash: 3d7510451d51d0337b32959a55732d9db68c360bd0ddf5f7c342657074518413
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endutent.texi: 
+  copyright: ''
+  hash: 1d2126a81c39601d25ce2479b13997eea4be84fe13500e6223a15603a36a7e79
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_add.texi: 
+  copyright: ''
+  hash: 929a0bb40555c4cdf9b1d14eeb8e7c789a7a221706e2ee56ea67fb701185641f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_entry.texi: 
+  copyright: ''
+  hash: 28cf6f28a93c0ade5125892036a65037b8be5e0b2265132a56172664cb295d70
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_get.texi: 
+  copyright: ''
+  hash: 73dcfdab7c19f3e3b899aea56ac1cbe8433dc5d91c87650f0d62f50d9e29f1a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_merge.texi: 
+  copyright: ''
+  hash: da6f80f14d5cb2706ee602a6ebdcc7e2783bd46cc4dd1e217286de438f3b1bc7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_remove.texi: 
+  copyright: ''
+  hash: 052e269cc2f4c958fc937cfe92377318ac659e361bdfde1ed31ef03cc8225a04
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_strip.texi: 
+  copyright: ''
+  hash: 9f33728bf5d1263c41541e31829546c6be1bb7149bbee554414674b7a5a76f8f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/epoll_create.texi: 
+  copyright: ''
+  hash: e2be8db1d90a7447a960b5dd2f418cf2aae182562f396030b1d0b0ebba5e9289
+  license: ''
+  license_text: ''
+./doc/glibc-functions/epoll_ctl.texi: 
+  copyright: ''
+  hash: 9999e16055753d71a31950a02ef676ba0eea5e033afa1141140e66638120a8ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/epoll_wait.texi: 
+  copyright: ''
+  hash: f9429a26d6f4f4f72fa6635a53726a953061d951e8626269cd305df15371327b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/erand48_r.texi: 
+  copyright: ''
+  hash: 6669b6ab848630d8eb97b64fbb7732d3d5f0adb9cfb2efc13c602d06f44c3011
+  license: ''
+  license_text: ''
+./doc/glibc-functions/err.texi: 
+  copyright: ''
+  hash: f2822ce953258b67212742fa39cd8f3e71211dcb9ad9e1c08f1733549c5e87b4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error.texi: 
+  copyright: ''
+  hash: 8cef704a2bef7f901913e2ecb6a79a974c5c929784cd1a3efb83762ff9f0f78c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_at_line.texi: 
+  copyright: ''
+  hash: cf9e32d64af320b9a0a362a3a2030fe267c9975dd806450fc034a5271fba6b68
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_message_count.texi: 
+  copyright: ''
+  hash: 64921e6e3cbf254851de971c005efed63de341e918d68815a9cbaf0144fc2474
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_one_per_line.texi: 
+  copyright: ''
+  hash: 41c37fa05255f035aae595ba8be8bf6a948f194d6e8f062a4dc1b3b3621b98c2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_print_progname.texi: 
+  copyright: ''
+  hash: bc96d8956a86cae93032b2c4c2b2cf3d10a7c8eec32d2dd8a20d3eee8c26b4a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/errx.texi: 
+  copyright: ''
+  hash: a7cdc040dd2e090c274719420cedb80b530aacdfe42b7ede1d77a24a148456ce
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_aton.texi: 
+  copyright: ''
+  hash: a842346260d42e4c0a45db5dd7cd75a3177bb0f0df8c990257803c214823ddad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_aton_r.texi: 
+  copyright: ''
+  hash: fe43aa6c687d10c66577fc64c58745d2f5062b4b111066512e0416e4780c8143
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_hostton.texi: 
+  copyright: ''
+  hash: fe52a6f7a718ca3e4bc6d97cb686fe2b65337b46a9fcaae9ef54f7d9ccef5ee7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_line.texi: 
+  copyright: ''
+  hash: 3cc5f18d0bece8d4994e39601f8c8889a33a4f38e50df1990fad90d20e90a0c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_ntoa.texi: 
+  copyright: ''
+  hash: babf9fe2efe3a0d0c4490b4ce7caec7f2b819fa28fa57afb55ab319051106de8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_ntoa_r.texi: 
+  copyright: ''
+  hash: c2b5156ddda84f53d15db242391715e0f2ca131662587d0cd4d9e62f75b2da45
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_ntohost.texi: 
+  copyright: ''
+  hash: c2091a64f35c0ae5d661860b1f60d57ad6944ad0403e4bf28a3cc7c96131aaa7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/euidaccess.texi: 
+  copyright: ''
+  hash: 2a87b5e240d11086cffaf06df3881482e1ffa24627ab797f4715fc9a215386f2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/exp10.texi: 
+  copyright: ''
+  hash: 28f79331e4b58884933515b29863bc9a52742bc7f370744a0e4a10452f099f06
+  license: ''
+  license_text: ''
+./doc/glibc-functions/exp10f.texi: 
+  copyright: ''
+  hash: 6bc7b61d534ef6f83c8461e72de721f5118651239555193971f3dad02fa23d46
+  license: ''
+  license_text: ''
+./doc/glibc-functions/exp10l.texi: 
+  copyright: ''
+  hash: f9565a3a532005973d9b6f51e0c7706ec6dc8d01c19746fa8e505147d54a29ca
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fallocate.texi: 
+  copyright: ''
+  hash: 31fafd55b211c7951256cf510c48929dbf0905c1d6adf6ce67a5f2c834d89e9b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fcloseall.texi: 
+  copyright: ''
+  hash: 2454b1a7e29b85b95416951cb3def913d0d4ff6d29f3a9d5ada2168be1b14e49
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fcvt_r.texi: 
+  copyright: ''
+  hash: 1226fb28c13dfae15d1f84e2ace830d894b9a5785effc4bf23eae22e0819d4c7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fedisableexcept.texi: 
+  copyright: ''
+  hash: 559755cb3f08a938aa3cae6ba68289ae9e8545baf594d71a8c7a6242d0371b94
+  license: ''
+  license_text: ''
+./doc/glibc-functions/feenableexcept.texi: 
+  copyright: ''
+  hash: db385ebfb7a42feb0e9f02c96ef0ede1e5be24761c1ddbefc2f57da58df53306
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fegetexcept.texi: 
+  copyright: ''
+  hash: 6ca79a91498b9b0bc91e5a1534a1e08167e795a7018a76dea8c52af2b42cb25b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/feof_unlocked.texi: 
+  copyright: ''
+  hash: 1845120fe96136edef181ead3d3d621b9fbfbc50ad928e98b75b0958c34d1bf8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ferror_unlocked.texi: 
+  copyright: ''
+  hash: cb31a7959c6e17cb428009f020898f3aa9f5a5a94d802a13b13b4d91987f3e0d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fflush_unlocked.texi: 
+  copyright: ''
+  hash: 7b77cc9354310377449aa1c5e033d3389b2ef98d4d87cdcaf133abc67e518637
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ffsl.texi: 
+  copyright: ''
+  hash: 7ff7df1ee7b12f75c430eb45418546d6ca7af38ee555686d46292d1c6b0d546e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ffsll.texi: 
+  copyright: ''
+  hash: f42ded9a37fabd10750809c4fb7af7893b2feea0826b23d5ac2ce7574eef4094
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetc_unlocked.texi: 
+  copyright: ''
+  hash: fd047b70f29ecc5dfbe87e98fb2412798cc35c51efd44e6e2fc83f3893738c27
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetgrent.texi: 
+  copyright: ''
+  hash: 0b18f0b797c2a7c1860c33c9304af2bfa428622038cbb34e5ada28bba02c0602
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetgrent_r.texi: 
+  copyright: ''
+  hash: 85ec05e27db7a4cd0043130657bcc7d21de99ba3e8547888923170a8a0799df0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetpwent.texi: 
+  copyright: ''
+  hash: a57008ebce017626f01d164e1f36cb66ddcaf81e7aa1d43cd1d92b0223d81ebb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetpwent_r.texi: 
+  copyright: ''
+  hash: 75100ef488211123031efb59301d244ecb208b1cb9b65c4246803fa12ab4d41d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgets_unlocked.texi: 
+  copyright: ''
+  hash: 3afe49da21531770e755913daf2957e563869eaf7311d0bbae6c4d2a664b00ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetspent.texi: 
+  copyright: ''
+  hash: d22f7bf1109eaba8e95ebe8c050a77b9c677932e482068de0092aa1abc993d1d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetspent_r.texi: 
+  copyright: ''
+  hash: 88cce64476ac720a065d48f7ed83e89757d63c47b0397b2e4f66e30384ac5bc4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetwc_unlocked.texi: 
+  copyright: ''
+  hash: b29178e60e8b553881d945e4be798334def8c4123d44b176462d522bfe1af2f1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetws_unlocked.texi: 
+  copyright: ''
+  hash: 73140a13f61673c53dbb5d6a98e4edbf6648d239c6cd9dfa1e58eec08b3ed1f5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetxattr.texi: 
+  copyright: ''
+  hash: 690019b55ebc29fa70959ccca4ceea265daeeef5ab17782576151fab734ef1c7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fileno_unlocked.texi: 
+  copyright: ''
+  hash: b114e30579686f868d9b5c0c1ebc7b367451428905308c9c5b44788b23cc5fa4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/finite.texi: 
+  copyright: ''
+  hash: 29b265d6f1a1c66117c921380d2f8541ecb864d9bb4b99bd063377b2fc379fb1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/finitef.texi: 
+  copyright: ''
+  hash: 327d8133425a2bca8406a7ae88aa480fc96ef29d5d813d12bef4d00fbb84c11a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/finitel.texi: 
+  copyright: ''
+  hash: f1dfd14d92d720128a297b18802208de0aef77b8a55724a3bab52e1479a959b7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/flistxattr.texi: 
+  copyright: ''
+  hash: f690841408ca5558193c7cb2548a0fde981b916ecc72db6ff57263c37ed95f21
+  license: ''
+  license_text: ''
+./doc/glibc-functions/flock.texi: 
+  copyright: ''
+  hash: 7efcc517b27c29ac838581e490b7de074f2a907c7d0e8019e6f1ca8837296a92
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fopencookie.texi: 
+  copyright: ''
+  hash: 84f7e5764f5c5ba2402d7e79c475c8bdfacd7d6257c9f7b26fdb3330d7c09349
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputc_unlocked.texi: 
+  copyright: ''
+  hash: eaa6f4ff0366284337b9d6cf787c8b90a4496e22f732d5b3c75a7ad81a701d60
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputs_unlocked.texi: 
+  copyright: ''
+  hash: edd6df84c06304c0437c886bb83502513adc2964f412e1083b0437c0375aea57
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputwc_unlocked.texi: 
+  copyright: ''
+  hash: 1ff188f75d9abcd7575d0fa34888759b6bb1e3f5f8a22b388e78dae16f032015
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputws_unlocked.texi: 
+  copyright: ''
+  hash: 1c1444e165a52b94709303c0bbe816b400d1f56a57e11dc5ea3b2d2caa8fd7ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fread_unlocked.texi: 
+  copyright: ''
+  hash: b9d76fc01917357762291957d2a045fc020498ed7c8a767c6b27b2e3046e4fbe
+  license: ''
+  license_text: ''
+./doc/glibc-functions/freeifaddrs.texi: 
+  copyright: ''
+  hash: d5198cf034f6423206e3904ec037f3d2d3cddd2d2a19eb6f4bd11bca16cfb781
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fremovexattr.texi: 
+  copyright: ''
+  hash: 6ba4e774379ac053b21a8a26c04a2a2c453da0770521225903b9ed6de6e3067c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fsetxattr.texi: 
+  copyright: ''
+  hash: 0fc330b04332599ebb973d94e987ef0f2b31b571ab2cd7a34947c41a12ae1a42
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fstatfs.texi: 
+  copyright: ''
+  hash: 7c08a51a0efa25dffbf458537d7aecd92c717d76e40ca2966251a39e1c8a70eb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_children.texi: 
+  copyright: ''
+  hash: 94455de1757c151913c00f827b1a2cb6789f967ea511921a4f9c02f6ef1d5acb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_close.texi: 
+  copyright: ''
+  hash: f24724092bc824c6d20defedcf74897ac95ebf70949559820a3bc366b0e1f58b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_open.texi: 
+  copyright: ''
+  hash: 71e6cf5ee44d9e7d6be7a9d4d2ffdfa9e4b96b9ec8e5de10eaf3bbbae82ad330
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_read.texi: 
+  copyright: ''
+  hash: 7b1858d353c66d3dbd174039b17a0a4d0b16e8c3899a13eed362f1a4c13244c1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_set.texi: 
+  copyright: ''
+  hash: 256a8d88f0cc0955a51687ecf5615cf7a881767b10a089ca44992d99aa8b1429
+  license: ''
+  license_text: ''
+./doc/glibc-functions/futimes.texi: 
+  copyright: ''
+  hash: 037829991904df1c3901b1d01cb83109588552f04f88343861b5c4f4f1bf40bc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fwrite_unlocked.texi: 
+  copyright: ''
+  hash: 974ebb20ba87289b7f0e6ddefcd90961129b8d175829ffce2e381725d2ba1945
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gamma.texi: 
+  copyright: ''
+  hash: 9cb11d5b2e84aa422c9f2e2133ccd0932dfd228551eadc06b20ec078581b38aa
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gammaf.texi: 
+  copyright: ''
+  hash: 7edaf91ce2d925820a9a78615837f905f281f4bc2790b11ce2c8772eee1ffee1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gammal.texi: 
+  copyright: ''
+  hash: 6e51220bdbd524db03f3041796922be83f750d1c72d031514e4ccb6818a1e395
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_avphys_pages.texi: 
+  copyright: ''
+  hash: 86b817fa554261cffad4b234b1c1f76b937059593d07a00c86d3952baeb25aec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_current_dir_name.texi: 
+  copyright: ''
+  hash: c881b750dfad7180315ee97d2b221ffda075390499de4c95d673654bef8f112a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_myaddress.texi: 
+  copyright: ''
+  hash: 57dd4818b22e5ed6e62a684c49b21a6e70f5d70f8819ad0d069ce50a11aece52
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_nprocs.texi: 
+  copyright: ''
+  hash: e4ae1bf4f5a4a4d2fa18f4004fe315b6c3797753a31462fb10b80bab3eebeef5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_nprocs_conf.texi: 
+  copyright: ''
+  hash: 871ded04b70eb098a066433e66a0719f426de8652e8bf2a018c78cce4a8feab6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_phys_pages.texi: 
+  copyright: ''
+  hash: 0b435c167f36008b1c489bbe6e654c84a71339cf253b6e0bf9f6375012ca3fac
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasbyname.texi: 
+  copyright: ''
+  hash: 65689c5a2dcbda4a359ef794eb15c9024496d01b08165a300e1e95910bb8a18a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasbyname_r.texi: 
+  copyright: ''
+  hash: 7f5a394056e5e3ef999c0ef65ff789e3fd223586bf3ed8bb06e41f1b0198cdb3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasent.texi: 
+  copyright: ''
+  hash: 0660506d75982e5d03be95aa0f0eb1a59daf650761a21da74b3eac6fcc147867
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasent_r.texi: 
+  copyright: ''
+  hash: 66b222cfcd7497514392309a78bb93a837b1b127131214cafae44be18f39f75f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdate_r.texi: 
+  copyright: ''
+  hash: dc9df7e7e7403e56c170c3b7a33bce22bdb2507b21a261c3a2274538a431816c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdirentries.texi: 
+  copyright: ''
+  hash: 3a012dd3241b1456caee10d79274eb940c4214014790fc72543bc952dcd7480c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdomainname.texi: 
+  copyright: ''
+  hash: cf1b6b4a46a7477005767cb622701ab85b7d6406b5d6491f46a8c4f65ebcf436
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdtablesize.texi: 
+  copyright: ''
+  hash: 06cf32c410472a7d90298a5830e61e20c06ede2e722334ae6e9f63aa9fb918af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getfsent.texi: 
+  copyright: ''
+  hash: 8fe4b7150bb087d51ba540574f6fd67b6f8d21603d46806af136aa0c804a4f03
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getfsfile.texi: 
+  copyright: ''
+  hash: 4d6b165155cbcf1d90f346c076836501c493c3c4d5b3b50911fdde6a51d30a4f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getfsspec.texi: 
+  copyright: ''
+  hash: 98cbde6d93830b56dd77d5410108faad88aa601e687bc9e7db3a330fc2faec5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getgrent_r.texi: 
+  copyright: ''
+  hash: 415a963f427a26141a3101785143c8ae15441636078d0713398e1d6806cd824e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getgrouplist.texi: 
+  copyright: ''
+  hash: a49850ad2d6a07c35ad979f1159ebcb648b6cbe8736094494ca1469400eaf72d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyaddr_r.texi: 
+  copyright: ''
+  hash: df45e5647825973d9f0dd763fa040795dcb4f5bc902da7282abcb73868525863
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyname2.texi: 
+  copyright: ''
+  hash: e719f389b44f23c32ed792b3458b6ea0553f49ed5f3ac8daf200f4b116f9a484
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyname2_r.texi: 
+  copyright: ''
+  hash: 7dffb2287bac4f81d6d7f64d5e7ec94935a87c3de4f3f32a5dd53d7cc95cc52a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyname_r.texi: 
+  copyright: ''
+  hash: 19e1150763a82fe7e0239e6fde63ed8e2c97ca30a9d81e16934d038d8f015a8a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostent_r.texi: 
+  copyright: ''
+  hash: 0a7b5beeb6683459d5d242bebe81d29591081a3dc8337b6bf4794ef911d90a47
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getifaddrs.texi: 
+  copyright: ''
+  hash: b6e093fdcea493b5eaf3d05eebf59cc8019e8c30ec1f918dca2ff11926e45f5d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getipv4sourcefilter.texi: 
+  copyright: ''
+  hash: 6c4a84dbb00ebe732e345872cd6238e6b6a21d0c570782c5027f85a132939cdc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getloadavg.texi: 
+  copyright: ''
+  hash: 5c50122cf493b14e89404a2529742e0eb7f769eaf1ad2e2eb1de55c522f72070
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getmntent.texi: 
+  copyright: ''
+  hash: 118d57e88ed72fcb5c276a839dcf8b0c904f5692b6a0edb3f06e68455489f824
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getmntent_r.texi: 
+  copyright: ''
+  hash: 48eb7d81bc253d4a805ba2492968265048fdcbb16ced813c0c7e47fa43786e19
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetbyaddr_r.texi: 
+  copyright: ''
+  hash: 8836358d4db5b375335c43a5829364489815a6743c667794e43dfbe350165119
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetbyname_r.texi: 
+  copyright: ''
+  hash: 74b2ce77d900b1b43ab6ecf6d5ab1609135ccd0f61fbfbeaed71ec533218ce92
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetent_r.texi: 
+  copyright: ''
+  hash: 9d9954b6b2c0763e4863e77e693ca5b27b4af1bb9628c68b09b84c5fbfd32569
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetgrent.texi: 
+  copyright: ''
+  hash: c13ce3af9094527db4d66d68ef8b1753c8c544443356ccae7c3b6c80a8192153
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetgrent_r.texi: 
+  copyright: ''
+  hash: 31b5ec65e6bdf042d6ec5850f70992b8512f0847207be624ae421c1eba543c4a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetname.texi: 
+  copyright: ''
+  hash: 0a4a9be7822c9ece381caf81f9e18f6b702a742c21ad0cb63bbaeb38723fe229
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getopt_long.texi: 
+  copyright: ''
+  hash: dad8eb73ad490ceaf3ee7e5c203f85a5bf4c98806402d26ebcd62dbaed58c7a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getopt_long_only.texi: 
+  copyright: ''
+  hash: 38aefb0c9ffea52916f9d325982549e94f16a1f00e0fcbef4b0c17571276c80d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpagesize.texi: 
+  copyright: ''
+  hash: 17c733598549bd7e5467f30df030367e9330861157dd95d74e0b470ba83f72a8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpass.texi: 
+  copyright: ''
+  hash: 694469640b9f29046e9d2544e5ac1f53e9b4c5a8f5be710ac49bcab014eb3f6a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getprotobyname_r.texi: 
+  copyright: ''
+  hash: aac24abffdfc1f64410dd5a2db7699f92d0dcff5a635a2a699f8751026986cad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getprotobynumber_r.texi: 
+  copyright: ''
+  hash: e2bf616350a39627ccee7c70afff54cc519b109982c4b47c8fd24d1c5a24a6dd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getprotoent_r.texi: 
+  copyright: ''
+  hash: 1b20b82271d78e1add8a6c551ecf444f41b8844b3aa86f658341c1da9c4ca1ed
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpt.texi: 
+  copyright: ''
+  hash: c6fc22204ce304b1a58766533965391bf90544a87140bc3c144d1b2ec3c2005e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpublickey.texi: 
+  copyright: ''
+  hash: 1e5ed1f2dd2cd6f816c391c3c1400afff1a8594c11c520707eba9311d64d99ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpw.texi: 
+  copyright: ''
+  hash: 3396864fd691dff5978be16d1c8ca280115900c5ab81b4ec3cd820be7c12b6cd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpwent_r.texi: 
+  copyright: ''
+  hash: d35394471916e21a74403c692013b97e794c9e13ee8b73d01ba8c40a30973da3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getresgid.texi: 
+  copyright: ''
+  hash: 4efd93f503f97b2da4db28219cb83a1d67ad3a1ee604faf21c7edb0cde3788e3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getresuid.texi: 
+  copyright: ''
+  hash: 4f1280ba0721b8f9c76f825e14245c788548755fad562195beea6cba0ad1d1f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbyname.texi: 
+  copyright: ''
+  hash: 905f78969e816bd350371c52ebe91dad4a5b048ee6f000151ac80b4a65e48b2e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbyname_r.texi: 
+  copyright: ''
+  hash: 44eac722eea8be2fcae7d693ea0284f9ab65ca59b43434d0fa9cdc3978586116
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbynumber.texi: 
+  copyright: ''
+  hash: 19a049fa39885a88b1b1656784167616f7a0f06cc386b49b096128fe8a14849b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbynumber_r.texi: 
+  copyright: ''
+  hash: 5b8dd84e20a06df244b7d3edc8605103662dfe841148bf00b9a454ef95f02a88
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcent.texi: 
+  copyright: ''
+  hash: 548d13540a5fe2e1a3f06658f9888ec428a4921edbcb4e94fbb13845c393cf20
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcent_r.texi: 
+  copyright: ''
+  hash: 19ab0f4d93c76eb06be0821328366797143747ba178622a0f9ad32e40bed4f3b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcport.texi: 
+  copyright: ''
+  hash: cf4a3213ca4830fdea0aaa73c4e0d6bbecd11482e8b41445b0b799f0a900fd3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getsecretkey.texi: 
+  copyright: ''
+  hash: cb680a88fb1c4043d7ad5aeede48e3b45f280065222c98269e3b7e2f1ff3a4c9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getservbyname_r.texi: 
+  copyright: ''
+  hash: 2d08f58dc31a7a5d6ce63b87427c82c10463d0677ed9a96c6744dac760cf7262
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getservbyport_r.texi: 
+  copyright: ''
+  hash: f488f6a67c41f08aaf2d078d1bee111c5ba850008601f5abe7cb2fcdf2dbd64a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getservent_r.texi: 
+  copyright: ''
+  hash: 6f3fb5e0944a60104ac0c0367388c291c6bd330cf92a5ce3ea037bada24731ae
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getsourcefilter.texi: 
+  copyright: ''
+  hash: 15322732f310afc29502328c640113b0330af4800e7215f544f5bed24ed06e0e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspent.texi: 
+  copyright: ''
+  hash: 816a3e44c64019324be118cf732622c9b41800b00d54207318c5ca679391c448
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspent_r.texi: 
+  copyright: ''
+  hash: c90f3c1a8151fd685d77b05c06edad9008729c3d6da221cc0f5f83ffc04fd932
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspnam.texi: 
+  copyright: ''
+  hash: e631c5008ad912f6ea71bb26ec876dfa92e9b2bd194088697e5d399c962b248c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspnam_r.texi: 
+  copyright: ''
+  hash: 06de88fb505a2a1a6c2b68ab76d83c4b0cbbe1d455a47eda337bc53683c07825
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gettext.texi: 
+  copyright: ''
+  hash: c3e128d9a2aad55928c0e6dec0d5eb46e61499055328c6a496a176b7c9ac4c25
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getttyent.texi: 
+  copyright: ''
+  hash: 6323d546b13f1fa19f8d12c7493f30c83d3069e5d758e42d85fff135a2af58d1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getttynam.texi: 
+  copyright: ''
+  hash: d37f8ec697e742f31810a75c3856bdd3135ac59ca5aff77900a26735a96fc0c7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getusershell.texi: 
+  copyright: ''
+  hash: cfab9f44b6e745d3d468f31d513f50ed5583cc39de18788eee15bf69ef1df781
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutent.texi: 
+  copyright: ''
+  hash: 6f5c71a6983b4ea15e9a021b7b35f04339c8f553d0a6665bee201e2a4029e32d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutent_r.texi: 
+  copyright: ''
+  hash: f23aa1bb4cf2e15afff917913cf5fa875fcce3fd76bf28b6286146cf1a8312cb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutid.texi: 
+  copyright: ''
+  hash: 439997018c8b769dfb084615688bafe72428d4474bdfb0161939704cec828897
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutid_r.texi: 
+  copyright: ''
+  hash: 9ba7da53bc2795a796bdf6f0dd1b970e8c280d5f17ce03a6b670e9bccb38494b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutline.texi: 
+  copyright: ''
+  hash: fe54ac8a004414583269fc3344705760ecb22c3c50e12363d49ade9a623af8dc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutline_r.texi: 
+  copyright: ''
+  hash: 36891c71d337e6950a6843a4569e906ecbc3d31a1cced286b170ebf0444c16ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutmp.texi: 
+  copyright: ''
+  hash: 5c40fd3e795045b2d723783cb2d898de33a3b0c6c7730816e237fe1cf9a4198b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutmpx.texi: 
+  copyright: ''
+  hash: 860f5db05955b646b09ef98b56e1d0f553aba1321aff45ae114e2477330863e0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getw.texi: 
+  copyright: ''
+  hash: ab2d47caf89a7b4d27c816c5fa8ae1dc26e8bb1719b7513534a167d08bc66bba
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getwc_unlocked.texi: 
+  copyright: ''
+  hash: e15241f0f79501082baf0556344152cb4ad99e048310bddd3307f49fcd782590
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getwchar_unlocked.texi: 
+  copyright: ''
+  hash: 4bc33b5e349b95a16b08328563f1705c3a8b377d4bba92760d98a3c2e53e0dcc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getxattr.texi: 
+  copyright: ''
+  hash: 03a413c12f46294e620434f6988a843d1c7b71e9093540c05f8c052577dc98b5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/glob_pattern_p.texi: 
+  copyright: ''
+  hash: e5a45525080d1fb6f20b346c999fc57bf1d945c563ca219e40b7df38385c616f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_dev_major.texi: 
+  copyright: ''
+  hash: 2c8f2c8cd3092dac8fde1de1fa9eba83afac47e2d00f2579adf9f6ea6fa342ab
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_dev_makedev.texi: 
+  copyright: ''
+  hash: 91456ec1cb52c337a02eab045a676bccd9b81ab87d293c4bb059c08f8cf09782
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_dev_minor.texi: 
+  copyright: ''
+  hash: f4ba04dbd23ce77e3cefff8b4b2b5c60dfa80629d1069a98d9397a37023b61e1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_get_libc_release.texi: 
+  copyright: ''
+  hash: ef4a4671b053aa45ce96e73496c747ef75fcdc144a722460e0be44456916ec38
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_get_libc_version.texi: 
+  copyright: ''
+  hash: b5114fbee7bd09824fa503582703e09f7f6b2a7585e6663c67a35609ed382e10
+  license: ''
+  license_text: ''
+./doc/glibc-functions/group_member.texi: 
+  copyright: ''
+  hash: 0e0b082f81548c68c61dd3a9eeda82ebf07d7b1fd5b61543994344e045a92408
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gsignal.texi: 
+  copyright: ''
+  hash: b2b2657d25fbc80d269f5a0685e399bf312b4d68ba672a068f8f2431ad41b553
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hasmntopt.texi: 
+  copyright: ''
+  hash: 36f7270890737ec725e1cc0561841b5887be379932a7033ec8b834289f5d3a8b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hcreate_r.texi: 
+  copyright: ''
+  hash: abc69a457cc1547bbeecb52c53a69d35e837795fca08831198f38f4dfccd9c5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hdestroy_r.texi: 
+  copyright: ''
+  hash: bf9ebc5b6f3dc6c2fef05616d7749656828c50f575497157021cd89b734630c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/herror.texi: 
+  copyright: ''
+  hash: 7efb9d00e25020573fe0ca6d431f5327a0e107cfdb5d169ea32044a5b6a90981
+  license: ''
+  license_text: ''
+./doc/glibc-functions/host2netname.texi: 
+  copyright: ''
+  hash: b79d5bf0b0a6505453d8350062b6df0e9778f32ddb2362c3f8588bdef2810d9e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hsearch_r.texi: 
+  copyright: ''
+  hash: 5e162a4ac8adb0bbf7952b6adb65c2b16238a077bfe346cf416573a5d02bf8b9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hstrerror.texi: 
+  copyright: ''
+  hash: ff2896c321e129159b197b089ba7d3b2bd432f5c19892df7bbcce553a885f3f5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/in6addr_any.texi: 
+  copyright: ''
+  hash: 3343d5d1d2109f64c2734eaff57f503f856d8cf36c052b02fbea1534b6b254ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/in6addr_loopback.texi: 
+  copyright: ''
+  hash: f691c99e758b8950e9d2c3d2632ba2188ccce0bf0e2a694b5fc6bfb3d8d0e62f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_alloc.texi: 
+  copyright: ''
+  hash: f8ee416c2fafae2cc7de879032e7e823c23f002bb1f0da2f9775c0365c34ba50
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_append.texi: 
+  copyright: ''
+  hash: 32eed6853d5746e0ae79df426c83fbbe260b5d207cb80f91e936621abbc3c97c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_find.texi: 
+  copyright: ''
+  hash: 8baa6d877ecd7d6bb686c29f627489c85204f5aaf48caa2abaf89eec92dcb309
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_init.texi: 
+  copyright: ''
+  hash: 716e71d5494dfdb22f64896bde3fa8ae205c6bb991f7e9c6d0fc952c846f47dc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_next.texi: 
+  copyright: ''
+  hash: 13cbcc7303e27c83c1774694d78389e69aa86407793a5949c9d9405345911b82
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_space.texi: 
+  copyright: ''
+  hash: 6a338b1ab5bf78425879176034fbd8ce86ea60012693598f4ea14ecae1e3a5f6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_aton.texi: 
+  copyright: ''
+  hash: 9a56198c1b11ffa7150833f8ee1d9a4028f6aa89bd414b1f7a0e7c543cff9f16
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_lnaof.texi: 
+  copyright: ''
+  hash: 20483661f4173ae4282bab0f288af2fa5e182b5412f23a427c4436a1f8265660
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_makeaddr.texi: 
+  copyright: ''
+  hash: ecbcf0e5b28d43d1b529117c3fc1158cf0098e7ce14f76ed0d567668319cb56e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_net_ntop.texi: 
+  copyright: ''
+  hash: 77ee21bd1f169d7eb033b898b34b45a0237e0df1410f25dd455a01729c3c05d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_net_pton.texi: 
+  copyright: ''
+  hash: 8091b168ada9dce7cbb5a6a514333edd9f7183085b640320a395810c26b5a4b4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_neta.texi: 
+  copyright: ''
+  hash: 3c964ed2f9db297bb4dcf3465662c790ab871bb6097a662047e7c1e08390065c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_netof.texi: 
+  copyright: ''
+  hash: d70586041f476627921035730357871373233e52c0c6e94f91818550e6b66eaf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_network.texi: 
+  copyright: ''
+  hash: f2254b279938a2eec4c6ecc5454ce2b3beb3bd6351d7975d0f0cd8790b21f533
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_nsap_addr.texi: 
+  copyright: ''
+  hash: c1c16ad1ff261f383ff1c3afc2d485879cd52700b11d1b32d6dd64c261374cc3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_nsap_ntoa.texi: 
+  copyright: ''
+  hash: 22cbce91c0a84fc930ea34428b2487e2cc500468c4078b1cb753e56d6c91d490
+  license: ''
+  license_text: ''
+./doc/glibc-functions/initgroups.texi: 
+  copyright: ''
+  hash: 10e6d0b7a28afe505954b18d7222af105b5c0d8bdd5981dd65217435dc52cfa6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/initstate_r.texi: 
+  copyright: ''
+  hash: 50335fba65ff9a2874843ef28cf645262a1f58db8252219f19d40c753f96617f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/innetgr.texi: 
+  copyright: ''
+  hash: 98fc724eab658d8ed65ba83432248a5d34c20a9d3d052ad6a96bfbcb9bcc62cb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ioperm.texi: 
+  copyright: ''
+  hash: 823826c8fd5e3e084b894cb58615b662b2bf53547e5e3808f4249cd4101bcadc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/iopl.texi: 
+  copyright: ''
+  hash: 3e7a8dd4e5b5ae33a9f5e799d208ddc48030ed9fee2c0d94b15262ab5b16030a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isctype.texi: 
+  copyright: ''
+  hash: 889baa1d5aa326c2837dc4f72b30c184cea862b1a32ed8dc7d20b6b87d5f235f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isfdtype.texi: 
+  copyright: ''
+  hash: b493b5b3e930e6aa2d5182a88f186dbf845e087ff44fddeb94fb7989c9969514
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isinff.texi: 
+  copyright: ''
+  hash: 7b778ea3f39894bff3a41540003a2ea2ce14fef3bb60ef86d52ee6660ef0e805
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isinfl.texi: 
+  copyright: ''
+  hash: d68b2173aab022dadd5e172ba5216fba620cd71f9e5b92a99548f1ae1ebfe338
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isnanf.texi: 
+  copyright: ''
+  hash: 1bce23ee271e7eef2d71e8db58edf3ca47dc80441668f74c81dbe8826bf87b2b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isnanl.texi: 
+  copyright: ''
+  hash: efbd3688a2c450ca48c45b0136ced1c4aff2c88514808efec73f03fd9b78c319
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j0f.texi: 
+  copyright: ''
+  hash: f018984a8e665058bcee8aba2e80e8d77c5ac1a803125c397151f46fe43e20e6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j0l.texi: 
+  copyright: ''
+  hash: be8df2ff66c9633147a1dc233d630b26af08ffdfa1933cf4aaf9f4d09d5a5941
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j1f.texi: 
+  copyright: ''
+  hash: e6ea933aca4d80ea575f33af255ab6a3a2eda0cdd27784b83b53ca5d66211d21
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j1l.texi: 
+  copyright: ''
+  hash: 36579052197222d9efc066047354b6a133e706205b9f137ecf4b71427b4fdc15
+  license: ''
+  license_text: ''
+./doc/glibc-functions/jnf.texi: 
+  copyright: ''
+  hash: f14a75b388ab7fe56275dae1799ba1c17cde27b7e5d9b96b1a391a33b3df3efc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/jnl.texi: 
+  copyright: ''
+  hash: 3349339e57b6eade070ba4b9cbe16e5a0618a9b85fddbc1a5247036cc12fa268
+  license: ''
+  license_text: ''
+./doc/glibc-functions/jrand48_r.texi: 
+  copyright: ''
+  hash: 875e437face5769c385f1106637fd80c5bb8eb5b226ca64b99af6987eddd8647
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_decryptsession.texi: 
+  copyright: ''
+  hash: f14cf546a9737b2f8028dafe7ef389ce9b886ba35d2542ddc8ae65517df1610d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_decryptsession_pk.texi: 
+  copyright: ''
+  hash: 5a61fcee114acb7ca73e3e27b17554cff55f4d20b58627e0d6482974bcfd9fc1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_encryptsession.texi: 
+  copyright: ''
+  hash: a352d0f45112554f83095b1b11cfc6c2fe3dd18846a2e279d57a07069eaeaa29
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_encryptsession_pk.texi: 
+  copyright: ''
+  hash: 50ce495fb62eac5281e2a5197c60eb843d01fa0e0d74462c77c5f5d108c772bf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_gendes.texi: 
+  copyright: ''
+  hash: ff565b8a1f485504fddc3dd79b2a5298cafee45d9cfd295f06952f93cf0fc41c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_get_conv.texi: 
+  copyright: ''
+  hash: 2d67dd92f660d35a6c01ee3ab092b29f019bce6e4cc42b7d6090ddcd22078945
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_secretkey_is_set.texi: 
+  copyright: ''
+  hash: bd6b7b1dace7b7a1b74b4b0b2c58048aed86b897ffc611526f68c6c8582b5f8b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_setsecret.texi: 
+  copyright: ''
+  hash: 6094078abb1f07ee4edafc08a32407f75d51ce0754608fbcf30285aa93aeeed9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/klogctl.texi: 
+  copyright: ''
+  hash: e94f06a40c4d0334e6164193081d720d3919f87240350763f60fc1bd02243920
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lchmod.texi: 
+  copyright: ''
+  hash: 41c523da30a051dd99ec2257cb0be4a516ebd67cf98f27fd1cdec7233791c0e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lckpwdf.texi: 
+  copyright: ''
+  hash: 6ce97709bb88f0181fdead5cdd63ba4ea2ff23e2133e08ef3ad6f38aad44d168
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lcong48_r.texi: 
+  copyright: ''
+  hash: cdf1fc0cf75c5dfa76850685b7dfa0970223c08ac3c313511109705f041e32e5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgamma_r.texi: 
+  copyright: ''
+  hash: f1067f2deef4d6d086b613dafcf75e2d8a8b33516dcea3d650a4e53eb798be85
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgammaf_r.texi: 
+  copyright: ''
+  hash: 07fc9d2fb55d3b03b25613c659cd7a421cec84336ba790a0140f2b5170959e36
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgammal_r.texi: 
+  copyright: ''
+  hash: a202db76414d545a82571afd6b5b142038b5c76857892595291bd0956dbabded
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgetxattr.texi: 
+  copyright: ''
+  hash: b4016960542d19ab531b198fa260b565e234aa75f52e450a4ddac8c4153c2b86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/listxattr.texi: 
+  copyright: ''
+  hash: 766b533e1039bda67b46b2abc106e61b68237807b365fa2d8c7cd9cedb09b7ed
+  license: ''
+  license_text: ''
+./doc/glibc-functions/llistxattr.texi: 
+  copyright: ''
+  hash: cb2cc96665e3469eab1aca6e9914d527d7deebeb1c577cf6e66e9927b5d0d9af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/loc1.texi: 
+  copyright: ''
+  hash: 9949724a8185c91f3ef464d2aa050f0b5b43eaa8321a6a2515bd0b6999330021
+  license: ''
+  license_text: ''
+./doc/glibc-functions/loc2.texi: 
+  copyright: ''
+  hash: df9bf9c136fd206c3634b2407f5b42dc6c9288ce610651a6db47701b1370b762
+  license: ''
+  license_text: ''
+./doc/glibc-functions/locs.texi: 
+  copyright: ''
+  hash: 1a2e4532efeb8ca8cc341d087d36601be44fa8bae2739f429d389c234c74841b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lrand48_r.texi: 
+  copyright: ''
+  hash: 7b0e546feae99c2ea77f3129dd3efb78f581ebbc0ac49a32cf55bbac1a3c8d1e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lremovexattr.texi: 
+  copyright: ''
+  hash: dac08211e81a4886e6300466d6179c752fa4e88d6e18909047d998eb01c48fe1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lsetxattr.texi: 
+  copyright: ''
+  hash: e72b0131c569a6b2919740004a201d9042a5886861a99a6682116e0d74deedd0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lutimes.texi: 
+  copyright: ''
+  hash: 4494237aa78d1f5feae4a8716c80b67462a78776a0e04621a5e002a93c5e9db1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/madvise.texi: 
+  copyright: ''
+  hash: 0abf4aaa28a84d398b86fc0b64fe40ba82661a7aa28be80be83ce5481999c24b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mallinfo.texi: 
+  copyright: ''
+  hash: 53dc1fe63b43700cfc5595bb7c9b42bf254ea159738be0d6f19e32959922a525
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_get_state.texi: 
+  copyright: ''
+  hash: 0f8db5157459002d516fab08a56deebcf940e6ed3025d83ef829c901798a9bf3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_set_state.texi: 
+  copyright: ''
+  hash: 4bf70c2bcd80fab43784d28c0b12af9e30854ed31c601ff859a7b01f3acfb720
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_stats.texi: 
+  copyright: ''
+  hash: 2298a8823b378dea8818f1d9a770ac197b8503a13a69fd7346fec1b8adc5badf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_trim.texi: 
+  copyright: ''
+  hash: 8fa0f761ba3f7a709958c154bc5b00060432a7bc5d64dd87a029374c23b3c721
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_usable_size.texi: 
+  copyright: ''
+  hash: e03768f538df19a72d96df56a8d72b851ed620417a3cfbf0f023984a7aa27cbc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mallopt.texi: 
+  copyright: ''
+  hash: 354303e13ef60ac8f163ce31970099caae693733e806a3d784b35c6502380d33
+  license: ''
+  license_text: ''
+./doc/glibc-functions/matherr.texi: 
+  copyright: ''
+  hash: c9f25db9aa8e2d44cb7c2d7eb36e59a781374db3345e762d9947e00308b640af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mcheck.texi: 
+  copyright: ''
+  hash: 43737afc82a18aee7de3fedd13d407ddc56eb478a24e445430f3562474a8d00d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mcheck_check_all.texi: 
+  copyright: ''
+  hash: 05f9d5fb933246bb5f0e7c78250f93db035e76fc439f2b23d51d878607946515
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mcheck_pedantic.texi: 
+  copyright: ''
+  hash: 073bd20f56761fe3864be551f40f53acdf50e7f558c6283e8bb446e1a7507e0a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memalign.texi: 
+  copyright: ''
+  hash: f136fa4c4d15ffdbd5f531220ea80a0fe280ea744efe2df2464ca729ed50544a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memfrob.texi: 
+  copyright: ''
+  hash: 90bb532679e589dc002bdac93373fb237660eee372041a4d57bbc10bca2b4613
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memmem.texi: 
+  copyright: ''
+  hash: 04f124a3fcb1df4da38a60d37d4857c9345452b7fbf71a71c6002a518c95ead1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mempcpy.texi: 
+  copyright: ''
+  hash: b858f2e5874b7b279e54b70d044ef9bd6b836bf3cdb7e62182ef094457ea7fb6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memrchr.texi: 
+  copyright: ''
+  hash: f10096eec4df36c30bc322d5f37c71eb9e1295c8d1279caa10d7337adb9e9bfe
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mincore.texi: 
+  copyright: ''
+  hash: d5ceb391e9ca3ad88142c561d35df48487b2b5244eb31c59c10c86148c729d52
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mkostemp.texi: 
+  copyright: ''
+  hash: b2b1685ff0c8b88ee8472b3ef555c792849913110ee83219aad70e59cb6ecb84
+  license: ''
+  license_text: ''
+./doc/glibc-functions/monstartup.texi: 
+  copyright: ''
+  hash: 66ff5e7ec331a6bc6b660646ab8eb22538317c7d33f96fcabd0c5d425803cfad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mount.texi: 
+  copyright: ''
+  hash: 89d49f190bf722b33bba60f3422d827ee83250869251d905394a34bf4bba6a9b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mprobe.texi: 
+  copyright: ''
+  hash: 2ac42cda54a697d68ea2e325e4ba43eb65736cd30b4382aede8dc4824572f9b1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mrand48_r.texi: 
+  copyright: ''
+  hash: ffb500a2ff554d63422da2ea61c5b231549100a88736dd7fc3b506d3b5fb3094
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mremap.texi: 
+  copyright: ''
+  hash: 4e3207e5e74599c816870d954202dcdae1715843b3df121a4f2e92175bff329d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mtrace.texi: 
+  copyright: ''
+  hash: db58f2773449db5048f8cfc6447f1ec6a5800205846cafe936b2e50df304b6c0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/muntrace.texi: 
+  copyright: ''
+  hash: e4ef0e069f49433b429895b055f989584f43aee61bc11729d0b12690d53265a0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/netname2host.texi: 
+  copyright: ''
+  hash: f6e22e73db730831231e52473244e21f49b9472597a7d25ee6374780b72b7be4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/netname2user.texi: 
+  copyright: ''
+  hash: 297df46c6a600ed01680f8e1ab82d3eb8dfea80bafc392c63ff042c3066b957d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ngettext.texi: 
+  copyright: ''
+  hash: 353e35ccc3655d2746555f2166fe50c9745ff46f8d3b9da62cdf4e2478edfd0d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_add.texi: 
+  copyright: ''
+  hash: 263e816d7afa10f2eff1d04d45ad18c9376fefc8387e038002157f1fb9b9e627
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_add_entry.texi: 
+  copyright: ''
+  hash: be462a1c0813a2fbe4a6c63c656728103b648f8ebf90d7d65cfd43b7c9bf2122
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_addmember.texi: 
+  copyright: ''
+  hash: 7072a94c1c6a763fbdb403984914dab8d19e94f4e006d2da05d793a5e9d79671
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_checkpoint.texi: 
+  copyright: ''
+  hash: e4226fd044059c8fe33f10a2fdb76cc5fc56b89c1d3311a5df12bfd78967e027
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_clone_object.texi: 
+  copyright: ''
+  hash: a464d80bc89c5ec658aa632ff8d84414cbbe990b840f5d53e82199e019a4222c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_creategroup.texi: 
+  copyright: ''
+  hash: 5e4f2f700588803a40a7426e00f416c4be2652170b4665a3b23aa6e553094d81
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_destroy_object.texi: 
+  copyright: ''
+  hash: 86f6389d465a145bc9091b09bed0c51c1c7ee4d09f94612821e1b529fe29074a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_destroygroup.texi: 
+  copyright: ''
+  hash: e11e32b812c8f945ae14541ca337f9536b7a79ef57894734a37d2778596935ac
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_dir_cmp.texi: 
+  copyright: ''
+  hash: 5ab7cef0103aeadbae156d28208185b62d0745b1f91b0201776b400d5fdbbd3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_domain_of.texi: 
+  copyright: ''
+  hash: cb2e2f91fac66b3ef7cbbed96c046597d9402dac44e48715e298c5d3325b33e2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_domain_of_r.texi: 
+  copyright: ''
+  hash: e01fa11b120ba609cc2b03eb06432003342c5c2f6777c32b6b476bc8c80107ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_first_entry.texi: 
+  copyright: ''
+  hash: 45660d94336a14941d4700b9f46ae7b03258556c408af401e0bc43e60c92fdc4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freenames.texi: 
+  copyright: ''
+  hash: 33c1a1ff5e5749756bb71d4be9085a4e0906d101402c28d9b918a58d5c2ff30d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freeresult.texi: 
+  copyright: ''
+  hash: d641a6f0bd155a2f4fb7439d570eccb55e645429ca22e9c07c97a8ab658afbc5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freeservlist.texi: 
+  copyright: ''
+  hash: a313a31d105e0e98d83014e7b059a110654b88e2bcd163dba39b969d19d33446
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freetags.texi: 
+  copyright: ''
+  hash: a3ff251aea66d507b2063975140b06150d679a9a9bf00017624ff85f8f6bd28f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_getnames.texi: 
+  copyright: ''
+  hash: d43fe192fa29a30b8f90ac61d180ccfe184211ed3f0977faa89ef0f7a07d6099
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_getservlist.texi: 
+  copyright: ''
+  hash: 1a83d9805324b888d5311711e68616fedd684b59f87f51d69b563dc9f00f6858
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_ismember.texi: 
+  copyright: ''
+  hash: 2857c63d04a9936f8ba3d20d28940517296bf8b20f803c8a743c104988d93034
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_leaf_of.texi: 
+  copyright: ''
+  hash: b6c67a9456cca5e2b69c86c0ecbbd2fedb8440c625e979a1f5566c64ab27f6d5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_leaf_of_r.texi: 
+  copyright: ''
+  hash: 725eaebe89c74f16acce404fdf0f071aec15529fef9f090ef5c34be4d433546b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_lerror.texi: 
+  copyright: ''
+  hash: 4ffdf8647b3c5221348e69ed7337e739bdff92f8eb769471e9d6689991070429
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_list.texi: 
+  copyright: ''
+  hash: d4769bf377fc70bdf55491b7a67377fd1a0aa1dd73dc058055d72c76e32af56c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_directory.texi: 
+  copyright: ''
+  hash: ba21442c5b7d1c1e7df74f813f51c39739ef4c44fdd4c3e30410aac44ffff269
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_group.texi: 
+  copyright: ''
+  hash: 35d966e801ccbc175af0d271405896cdf076aee2a3963cccf9c344996b6ef16e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_host.texi: 
+  copyright: ''
+  hash: 61acdea5cc4f7e391d7a17ca71f48b4e99ce85adf87422596ff9b9fe9ad33c17
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_principal.texi: 
+  copyright: ''
+  hash: bda75c39fa29b305e57270533cd43fcff4b8957b7c33a88720f576e56d2df59c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_lookup.texi: 
+  copyright: ''
+  hash: dff8a627d19f85a944417280c3e06bac997c1e3e602fb256a92071677849b399
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_mkdir.texi: 
+  copyright: ''
+  hash: 5cab157d00861d7ae6a2e0a5aa9eb68901e09a0368fe1f5a3eb24cf0ed06cae2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_modify.texi: 
+  copyright: ''
+  hash: 5114449ba61f1c9ab605553b89b6123d3a32078f00e5a76e499b68d8366876c8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_modify_entry.texi: 
+  copyright: ''
+  hash: 293d5bb41a19fcfbea60ee5f78972517c0bcc93b6eddeb5e0b1f79ea538f3c49
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_name_of.texi: 
+  copyright: ''
+  hash: bd40e5451a5dadee1589a2ca890f0c4be95459bfd4710d3b00c0f7032a323d41
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_name_of_r.texi: 
+  copyright: ''
+  hash: 74450547b58277c638dc8c9fc5a9f77735cefc00af5581f21b477426174cba91
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_next_entry.texi: 
+  copyright: ''
+  hash: b5d18a883a8082cf62c0f70127d027f2d730dfee8bdf4fce9f78fac612a11059
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_perror.texi: 
+  copyright: ''
+  hash: 63e175ba3d8d9462bf33f5591c26da377537e4c2d19f98ce94b1bf4e6667cda4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_ping.texi: 
+  copyright: ''
+  hash: a283339d6df98d521b354c7c3a19f12800177c783e36c4496190befec8058db3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_directory.texi: 
+  copyright: ''
+  hash: 0d12a211acc7071d10598c83dbc6b33b328ab633b38ba33d6ffcce607c22c16e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_entry.texi: 
+  copyright: ''
+  hash: 3c03608e3d357f4f2ae81a76f45c8440141609a4fb7c6ed2db95ac5b426ce10d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_group.texi: 
+  copyright: ''
+  hash: d191e435ff63ff626db4247802381f0d2ca23de51ccd223ae5b0e3fa8798d383
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_group_entry.texi: 
+  copyright: ''
+  hash: 94235e89b9b74f3643923e90bf96ae311c285f6e306e968846b16b97edf831f9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_link.texi: 
+  copyright: ''
+  hash: db76e611302d621d742ecbc5f0b7748aa41a52c75fef66b7d51a9b61e47b31b8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_object.texi: 
+  copyright: ''
+  hash: 4b444fa06c5c0e05d28efd64f53953c251fe11cd356c7072f605f7b81fe44643
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_result.texi: 
+  copyright: ''
+  hash: 065717135cf4120bb8595486c857722fac9a7ff6efa0cb228ee5ed7bd4b0b62f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_rights.texi: 
+  copyright: ''
+  hash: ef827fc3aeb4e8739745772e04c2bb33dfb616b5c139e9899cef7de0b2c61ff9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_table.texi: 
+  copyright: ''
+  hash: e0f15bef44e6d6c29b27cf7fb973a373c824b49e6f6cac7d78e1a4e24ffe9c8f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_remove.texi: 
+  copyright: ''
+  hash: 32a1b74e420a969df9b898f94512ffe55692fccd53e5bc0a8b49747dd12ae9c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_remove_entry.texi: 
+  copyright: ''
+  hash: b942f308181744e8798341c6f5941ded24f4e0c7da25c1418c85aa877c6e8883
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_removemember.texi: 
+  copyright: ''
+  hash: 25febaa8a16ad94e35bc18a7488d7982d4f78ce14918877d291c9c5c767bfd6a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_rmdir.texi: 
+  copyright: ''
+  hash: 1520922fcc74b7d84ab000e8f2cc44f6b632d3b360c994c96ce622aaac36c8ea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_servstate.texi: 
+  copyright: ''
+  hash: ae1e425890ce2bd608090b7d4fda1a425f4eb9e9d9f8a723ea19657380abe127
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_sperrno.texi: 
+  copyright: ''
+  hash: f10e0ad2db9f765254f6314102b1293f9016812a67324536afc77869bea491fd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_sperror.texi: 
+  copyright: ''
+  hash: 0424f046ae5b85b906c4f37dde7692dda8837b71c3e8e5f2fe20a3803efdb6be
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_sperror_r.texi: 
+  copyright: ''
+  hash: 0b85879da12a5e9e29a941c50f3efd8e45e0541a0e18802f9a4506be929cb612
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_stats.texi: 
+  copyright: ''
+  hash: 42c64c2e6a6584e33cd7eb39921d729dbd6e6a26115b6d2826df92d6939149ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_verifygroup.texi: 
+  copyright: ''
+  hash: be6731f73427f2734ac003d261a86ec8c46e25e1fc47cce640ccd74020f884c5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nrand48_r.texi: 
+  copyright: ''
+  hash: 7712ccaaa3bdcae2f7eb09d18a52fe84269c4bafff25c8852f4fcba3ac3e98d2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ntp_adjtime.texi: 
+  copyright: ''
+  hash: 9e4776f50a88065a71713e5f612bce9632cc30b1f8bc4d2954a2446f9cb88aef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ntp_gettime.texi: 
+  copyright: ''
+  hash: 43d0ca9a1f71946a1212081c572d4bbf1200a6741aac69b1615aab6a59449b55
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_alloc_failed_handler.texi: 
+  copyright: ''
+  hash: 5a162a65e8a06e06e90a6b0899fd99e63db1b413893f10ba7032f07f8aef588b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_exit_failure.texi: 
+  copyright: ''
+  hash: 2edf67bf7a1835c04266ee354618b79b2cf1a55504e63f8df43d88e33fa7adea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_free.texi: 
+  copyright: ''
+  hash: 07713f4fe1679f4214b0ef91479610382e1e71da8177afffda8ef741d4bf2bef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_printf.texi: 
+  copyright: ''
+  hash: b365a91c2948c92bec6e04ad47471246074c066e91a9c7280419a2b0565744ba
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_vprintf.texi: 
+  copyright: ''
+  hash: 0116c5a2b4b5e76cede18a9b00d4584b1fe9c48eab74d203c12d979e2b2e39c9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/on_exit.texi: 
+  copyright: ''
+  hash: f98b9178741dde52f30e55489bd237902b8cb9e5b46daed74deb35af2053adb3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/parse_printf_format.texi: 
+  copyright: ''
+  hash: 08ec06c5f956c4070a8b8054be634cc362e5e0e26e4ec8caef463a3ab9cd4cc9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/personality.texi: 
+  copyright: ''
+  hash: 63ce42d8b39416dbcd2374b3db74e391930f2df790ac086e8b1e7f762ae2fd69
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pipe2.texi: 
+  copyright: ''
+  hash: 12ae9770c7677e3b83f1a72345d69c53783e89421def3b00a427828aa4aae3b7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_getmaps.texi: 
+  copyright: ''
+  hash: 9d85f6d0f65096677f4732a2bc82f6afa1f50403b05bf01e92206309db3f8873
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_getport.texi: 
+  copyright: ''
+  hash: 43960c367109816c9e5617623378139b66ceb8f0b929615750e1c5f4843f9dd2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_rmtcall.texi: 
+  copyright: ''
+  hash: 03654d766f665bb32b4a7b827d20aa8f6bea089916d5f00fa3f88848d411778d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_set.texi: 
+  copyright: ''
+  hash: 201b0d49ff805bb952b775dcdb25c33a70a6d0ee2aa959f9dcdce21ab7926ce5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_unset.texi: 
+  copyright: ''
+  hash: 054bd3e1cd0792cb25c68df8fb153cd370444146dfc243b81cb187e177db8e48
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pow10.texi: 
+  copyright: ''
+  hash: f7912dfe94bb0f8ed4dee6d39483b4a4f76d7351546ef2c3e26fd901e252d2d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pow10f.texi: 
+  copyright: ''
+  hash: 877756c67f392d56fce20c2950bec91968190c557374f63cd87a22763ce81b47
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pow10l.texi: 
+  copyright: ''
+  hash: a4c1ab66b2a92023aed121a70e545bc9d98b47f6df5d36b1351cc504e97d55d5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/prctl.texi: 
+  copyright: ''
+  hash: 2427ec4bec38663fd75581e4a8602ed0c541707f2cba09a65af9825adb32a23c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/printf_size.texi: 
+  copyright: ''
+  hash: ccc98cc15667f89d94b22bc643ce60325dd868e79cd95487d7f6ad497a1210b9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/printf_size_info.texi: 
+  copyright: ''
+  hash: 237a32ff30c1e23980f4360ba09bfb50c6be4224fabd7a59919bd51aeffaaafc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/profil.texi: 
+  copyright: ''
+  hash: 0285b1f65b72595b3cdc34f19758d6a7c23b39ca0f9fbea16ce0fd482b5633ae
+  license: ''
+  license_text: ''
+./doc/glibc-functions/program_invocation_name.texi: 
+  copyright: ''
+  hash: db3aa2f7f6e63fde4dd4838f5ca464248be07d6ce02f604a2409cb704bb60f78
+  license: ''
+  license_text: ''
+./doc/glibc-functions/program_invocation_short_name.texi: 
+  copyright: ''
+  hash: 8fcb3035a868fc5dfa3c18c5064f3f8923e58487d6fd76f3c7b2b0655ee2d384
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_getattr_np.texi: 
+  copyright: ''
+  hash: 5590b31dad731bebfe2b8ceb8113ac27a6c50d9217e44e6ab3f30cead2c0d24e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_kill_other_threads_np.texi: 
+  copyright: ''
+  hash: e25942ee2f53e9ca33f05e74e0ae70f80054d143a1ee2b6fe1dfd8e3289969b3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_rwlockattr_getkind_np.texi: 
+  copyright: ''
+  hash: f84f03d67a82f7e2c4af4bc8a182657f2a4551524d997213cee786e26dfbf543
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_rwlockattr_setkind_np.texi: 
+  copyright: ''
+  hash: 5ae7f4598ef73bf7ce5a8f90875cdcff75b082163e7d79da8ba002b34fb91ea2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_yield.texi: 
+  copyright: ''
+  hash: e1337bc33112135e65c647d51a8d5adee256835cb800205a520d0546efcf4873
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ptrace.texi: 
+  copyright: ''
+  hash: 27af6240148516067e80c328ec3534ed7e40044622162395eef385f5719f584d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ptsname_r.texi: 
+  copyright: ''
+  hash: 1cc50cfb5fafbdd0153d9c1788a49c41bb87fc9100e76edd9175ae4fc9547845
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putgrent.texi: 
+  copyright: ''
+  hash: 544f112128ba4307a201ac0244bdcf3352fce4cb574457ff2406b5b357d0d483
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putpwent.texi: 
+  copyright: ''
+  hash: 93178cf90ec4ac36c8ae75028fca56b82288ccb6f4fe145a418aa253bc3fe25c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putspent.texi: 
+  copyright: ''
+  hash: d6963772ef8e056c5e923c67f34fd2e931d6bf1f1e62dd2bae741ace73ec4265
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pututline.texi: 
+  copyright: ''
+  hash: afff12c0ed2226e45909cef2f6b409fddf503c4d0245a035fa85302e70bd9e10
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putw.texi: 
+  copyright: ''
+  hash: a7028bb2975807511cf4acd39f137c540e13cdcd67e0f00188a345645605ccc2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putwc_unlocked.texi: 
+  copyright: ''
+  hash: 570a8de4fa9f99fd2e735a412763e2dd138191615b64b9bb16bc3c3cd03b535a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putwchar_unlocked.texi: 
+  copyright: ''
+  hash: f69ccaf0b8879e1b32f8329370cbbd3eef8ebf53964299657799567911f280e6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pvalloc.texi: 
+  copyright: ''
+  hash: 01f71af124d7774fd46b6a3c388a86a7a0039fc30d235d2ea226ee8bc659912b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qecvt.texi: 
+  copyright: ''
+  hash: c2c83522e967fd4ceb406a9629d36310bedc29e77ba38d75f3a5367a178f8932
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qecvt_r.texi: 
+  copyright: ''
+  hash: a1c7516fe37f8c935920a2793726be94fcb48c5064bf4fbcc516a47b9bf9d2db
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qfcvt.texi: 
+  copyright: ''
+  hash: 1b0d08244caaca9dd6f63183a50f81ee270c7250b6c4090fec67e3cf11e0e253
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qfcvt_r.texi: 
+  copyright: ''
+  hash: 06b32b91bdd122fb691306a30ee07dd366dc10afd4fb5f4b797675626c46cf22
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qgcvt.texi: 
+  copyright: ''
+  hash: ec9dd3a171af5d5d31ec024141385d5bd30972d0d66e42dca15e845bd24f395f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/quotactl.texi: 
+  copyright: ''
+  hash: 836ab775c2feab3b068d36d672ad6123aad387f6fb1f5fa368f06a01ac807f2e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/random_r.texi: 
+  copyright: ''
+  hash: 5844e7a46c936938dfbf2ce4fdbcbe51d82a4074a6bc5b2414f2a107311479dd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rawmemchr.texi: 
+  copyright: ''
+  hash: a88efb16cc1008fb2069f17f86e19d4ca86a2ee95560cffd35e015f79d55c8b2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rcmd.texi: 
+  copyright: ''
+  hash: e257d1d57a345cddc907c3e227b0d51dfbece0c211d1b0e9d7b2519ba85090b1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rcmd_af.texi: 
+  copyright: ''
+  hash: 33267b7d2782d13d76324a3812e2ce79aae5bf28b639472be4e5dbeb29588118
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_comp.texi: 
+  copyright: ''
+  hash: 01bfce768f404c4fff73edfee715bcfea880485a92171532c28dd24ee902ddda
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_compile_fastmap.texi: 
+  copyright: ''
+  hash: df04f615fa59f124aea7423c97c3ab28d68bc4e7354fdba5bec20ec2189c38bc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_compile_pattern.texi: 
+  copyright: ''
+  hash: ed911d035be21cdd51ea9886bfeac42f4b1528025c790409d988e1dd298ec0e4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_exec.texi: 
+  copyright: ''
+  hash: a1297936ebe8c37bd2e40e89c02f620cee30ab8e066c05b44c9e007fbcbebe85
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_match.texi: 
+  copyright: ''
+  hash: b18566e77f75118465e53a1b14a0cf42da170947642f9c6d7d32272329b89661
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_match_2.texi: 
+  copyright: ''
+  hash: b456a65fbeabbb70c1ea7c3cc9d9af1c0d1fd7313ae2cab14bf0fcdfe8a9d949
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_search.texi: 
+  copyright: ''
+  hash: 1546d42e4213de80f339e367568465dddb64971f935cca31fff6a46ceaa22107
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_search_2.texi: 
+  copyright: ''
+  hash: 81618d34a0a95e7bf19b0c3f6e9bb7dc853e954bc4bc0e91581cc76af5aec179
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_set_registers.texi: 
+  copyright: ''
+  hash: 56b39a6302e400bfb705a54caefa53c2433d8b834ddd4f96e4322a2afd219580
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_set_syntax.texi: 
+  copyright: ''
+  hash: 748a99045110cf56f79df6e0d5f4b234bf7dde20a723d93a0a673da3b03c90ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_syntax_options.texi: 
+  copyright: ''
+  hash: 0c830a2c8456fd51772baaa9a4090458bb2e6b76f76c386603a25c228f7b6ca6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/readahead.texi: 
+  copyright: ''
+  hash: 8f826416be974f9a1e522ef20f3a12a29ef06badbf895c58d04588577d843e0e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/reboot.texi: 
+  copyright: ''
+  hash: 821bc1ae818abe8915a90b46f5222f4ada16fbea77e88d86c0358421e73b709c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/register_printf_function.texi: 
+  copyright: ''
+  hash: 55330e647478ac89ec8173c27dc6ccde685c0c9ff1aa731f92c403c3643264f3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/remap_file_pages.texi: 
+  copyright: ''
+  hash: 6ebd3f6be34b6b2bfd24e20710e6b8f9eb129fa6248ab974a952205fd4a98f67
+  license: ''
+  license_text: ''
+./doc/glibc-functions/removexattr.texi: 
+  copyright: ''
+  hash: 84ac25baaee52cbb40f99f510e79d07b6b8428d24256042b6ae785a0868f9883
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_init.texi: 
+  copyright: ''
+  hash: 388e462fc34d47868da844ac1b41166ca1d710720fc4cf90949471b6b22e06df
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_mkquery.texi: 
+  copyright: ''
+  hash: 0b93eb65d4f8eb234d2cf53f9be95119f92ba036e114bccffaad8f4217b8be95
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_query.texi: 
+  copyright: ''
+  hash: 86b37d31764f008efaccff858dd736522731703d0e3db5df805ff8a8641830d7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_querydomain.texi: 
+  copyright: ''
+  hash: 4febd67db3cafc50012c62f08b9150179b6b6a86fe3b563308abcf8aef41ea22
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_search.texi: 
+  copyright: ''
+  hash: c61477ed9ea9b2f03e6d988d1459e5c85d6d767e5d5afd77688cbe1531c9d6bb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/revoke.texi: 
+  copyright: ''
+  hash: adf7f5046e9f85a1de13826a1877dab9bfb1e3f8926f96c31feb8fc9917c69a0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rexec.texi: 
+  copyright: ''
+  hash: 4beb711fc9303350ba038dd9e41dd18a54e9cd1df22fd2848b2ccdb633abc29a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rexec_af.texi: 
+  copyright: ''
+  hash: 2d2addfd332aeac29c6e6f0199609364003aa36cfe6edb4da81edd73f408250d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rpc_createerr.texi: 
+  copyright: ''
+  hash: cd184775acd5c98bf80055c4f63cc5e4f1cf8be76c79f8359575324e96c0126c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rpmatch.texi: 
+  copyright: ''
+  hash: 5626ebb2b2a3e883ddea5f7983fd541e62176b8fe1b90b6315281551744b773a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rresvport.texi: 
+  copyright: ''
+  hash: a97f5ee77da3a964130fe12ad34f4429a25dc4e8983614eee3ff2228e41a5f05
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rresvport_af.texi: 
+  copyright: ''
+  hash: 5211bddef422718e87e6aed59cf45e467d35e86554b9620b72846aa840542485
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rtime.texi: 
+  copyright: ''
+  hash: 2da678ee5e984b04b11b8441f6c38275bfce06b3d62f5bbf89e85c5510b10242
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ruserok.texi: 
+  copyright: ''
+  hash: 4521b929c1ed87ca5ae848c5a95d221964ecfdc3efb41a6f0d05adc5c438fb6c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ruserok_af.texi: 
+  copyright: ''
+  hash: 54c8a002ff9e44fc49fb4bffd3bccdcc0f11e545b23463d9e3d3945bc8862e56
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sbrk.texi: 
+  copyright: ''
+  hash: 4d580822d85c2db8a05c71c6bbc254541a6ce7666158f73bc52fe573cc565151
+  license: ''
+  license_text: ''
+./doc/glibc-functions/scalbf.texi: 
+  copyright: ''
+  hash: b16e449629ea32f221f6a63199f6b1691aa80be4d73e7215d8a0e1139149a9d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/scalbl.texi: 
+  copyright: ''
+  hash: b30afc7e613e8f733f740a96f53c657699ace3dd840b3dd6859224ee96ca2385
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sched_getaffinity.texi: 
+  copyright: ''
+  hash: c3f41bc0b5cc0b9f81a9b3c03a45c74c58936a3ed3fda2d3983a1de9c0cdf054
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sched_setaffinity.texi: 
+  copyright: ''
+  hash: 2df764b35ee0d3f8a787b710f5154954dd0775e3daf75a5b9cfb34c1cd8c010c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/seed48_r.texi: 
+  copyright: ''
+  hash: 6f0ca8a62a531d471a5968c0b0117f6bfd1b3c4f8292a2f805e916f1b4ebea5d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/semtimedop.texi: 
+  copyright: ''
+  hash: 80ac3efc9c4674b2a8c0fba162e409c061324e76e3715bb034e48f06d744c1ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sendfile.texi: 
+  copyright: ''
+  hash: 20c385fd8bd96b281377ff50c7eedf88fe7f424d965765b9ed3429976ffe788a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setaliasent.texi: 
+  copyright: ''
+  hash: c676df80fadf27ec301ff8d5668fb6e7aa5e057788c4b334847bcd9402724933
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setbuffer.texi: 
+  copyright: ''
+  hash: 840463919c23c80fb9256b4d89f5a8a975413c47a4b18d99a291d2c3fd775c74
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setdomainname.texi: 
+  copyright: ''
+  hash: d246fb85da1d127786c3c8c54fdd4662f2ab4234985ba4ec0f9e983a2856970d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setfsent.texi: 
+  copyright: ''
+  hash: 92cc739baa4eb3f52eefcad295bba2960905e5acec6e3f69afdb6cccac5b9d96
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setfsgid.texi: 
+  copyright: ''
+  hash: a3e35a76fb66fc7edfe5eadb4fca7c217aa0f2dc521b0784d0e1e47749f1c49e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setfsuid.texi: 
+  copyright: ''
+  hash: 72853abaad0d3750b660aaa0496f1d95d3ea3a182bc34a16df3ea00a1b25ac1b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setgroups.texi: 
+  copyright: ''
+  hash: d47bf569c94762a70603caaa8b89619e1820828049b0a19af2694cf7928da98c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sethostid.texi: 
+  copyright: ''
+  hash: 2caed9ea890d6844a17a375c6b579ec03850c96c9aed240cea87bd0b882c9561
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sethostname.texi: 
+  copyright: ''
+  hash: 6359c3be8e8047c37933b2a94e5323fc44e3be3ef72ad19957500e4d1449c832
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setipv4sourcefilter.texi: 
+  copyright: ''
+  hash: 769bdc41e8ac069fabcdf83b06be2c5741e75b340352c2b9eafa1d294f032097
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setkey_r.texi: 
+  copyright: ''
+  hash: ff01f1e3f4faf132318c0d62ae42e6e536e83adf9f04b6987d397f18b871dda1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setlinebuf.texi: 
+  copyright: ''
+  hash: 823f1a2c56b9bfd0fc25a9476ef59c90fadb49050d097037bc459d3d71e7c1e4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setlogin.texi: 
+  copyright: ''
+  hash: 9eaafc78df2669e5b4e72a2e5a485085acb927d50e5be2953dbeb2d81701391f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setmntent.texi: 
+  copyright: ''
+  hash: b332b02169657299a7ca3ba9af1e7e3fc737d24cd2983f7a4d133af81b092961
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setnetgrent.texi: 
+  copyright: ''
+  hash: 30d8d87126649c90573d67b04ff921db26d84a756946067181cb5946356b0c0a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setresgid.texi: 
+  copyright: ''
+  hash: 4975dfd5771c4957030f086d8ac5ce7189cdde23f5e2bb67d0ff07d968e35479
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setresuid.texi: 
+  copyright: ''
+  hash: cbd55c93dfbb005061c4332bb10d9cd19c08f8a184a1d192c45d42466ac5fc85
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setrpcent.texi: 
+  copyright: ''
+  hash: ca47e2ef511b58040b7786ede8b64eaa8d0cb58ac434221596b0d7243d1b480c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setsourcefilter.texi: 
+  copyright: ''
+  hash: 9e3a447c3cd41174f4b9ea6a4eede7e34ee84c95483674ed06d20ff866e0bfc8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setspent.texi: 
+  copyright: ''
+  hash: 68ed2648af0ebecb98d3bf880c5be4de1fce4929b0de543754c298c458c011fd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setstate_r.texi: 
+  copyright: ''
+  hash: e4d7b351007b8e8def79a82d454f164d8f556f4bf6826632ba9d25a7145afb84
+  license: ''
+  license_text: ''
+./doc/glibc-functions/settimeofday.texi: 
+  copyright: ''
+  hash: fc6c7b74ed55751f1b9cd21d152fa6e70b668dcf57710351f309902b5e5affb9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setttyent.texi: 
+  copyright: ''
+  hash: 872b4c7efffec76c314ae3692798b581b59be4b0a11eb6e347a2433f8d3d1b74
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setusershell.texi: 
+  copyright: ''
+  hash: 477ef1c7ddfce9e2288f6a88e43c3ea8e145e597f6e804432e490c88a6fbdb7d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setutent.texi: 
+  copyright: ''
+  hash: 36be58898a9d9619f987500bb8ad48703b3b386cdb1dca7f13a8f722980c3f51
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setxattr.texi: 
+  copyright: ''
+  hash: af409fa4c1d03fe81bac55d63c469cdc03226ca561f727c619154204da0bf115
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sgetspent.texi: 
+  copyright: ''
+  hash: 2f4846b40833b0c7688dfa37b976889a9f8cf678e31e3d1531283d9a60baf9f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sgetspent_r.texi: 
+  copyright: ''
+  hash: 978bcfc4fc40a2fdb82866fb2987a7a8e76d94770f437d12d4fcd9f1f53520da
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigandset.texi: 
+  copyright: ''
+  hash: 5b76732bc467d481bed4bf2c89662fa7a83bd3efb8edbe663a459dacc489df5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigblock.texi: 
+  copyright: ''
+  hash: d24395448034650dd3561cf398904e9423525f1ea310dcc9495ad4389678ff5f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/siggetmask.texi: 
+  copyright: ''
+  hash: 9547fcbda13bfb47700b223e5625b1dd8f7ead952650f7f1601796a5bd9bfd75
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigisemptyset.texi: 
+  copyright: ''
+  hash: adc7331e09d3e1906354d3f1088b3d82a0f374a49d70553bf2a8bdf5dabd6d98
+  license: ''
+  license_text: ''
+./doc/glibc-functions/significand.texi: 
+  copyright: ''
+  hash: e3fc1148c171fbea7b8a88291964da753fc483cc72e395f90defc8f913dab945
+  license: ''
+  license_text: ''
+./doc/glibc-functions/significandf.texi: 
+  copyright: ''
+  hash: 914e8ed95038b7596b6f8664b5d356e94bf64fd371a8d34e5c6993514c247e80
+  license: ''
+  license_text: ''
+./doc/glibc-functions/significandl.texi: 
+  copyright: ''
+  hash: b914050d57690497a42bf4f9ea1629690571bf8f248678bb27144558244459bf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigorset.texi: 
+  copyright: ''
+  hash: 0f90cd35021ca496fcca811f88941ad4c53f6bb7f4bb5309ac69e9cec7b2607a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigreturn.texi: 
+  copyright: ''
+  hash: 4109f568a6d1455056f5d91d0c44277e0af12df9f48ead1d3b0b093d9cb88367
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigsetmask.texi: 
+  copyright: ''
+  hash: 21b02d389a2a52be020e6d2debdbb63155256cbcd340a7139e37883d164a2f53
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigstack.texi: 
+  copyright: ''
+  hash: b27976cb6de009f776f9d77d1e943fd892684d910082b2e313ab25dbd9929c56
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigvec.texi: 
+  copyright: ''
+  hash: c8f0aa7dc316b819ba924fdd1b032a56d1c51033556703a95693b7ad37469047
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sincos.texi: 
+  copyright: ''
+  hash: e099c2aa2af17f5445683b13950dc83c8f36a8c799ddd736778f60b769bfa978
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sincosf.texi: 
+  copyright: ''
+  hash: 9acbcc862d6641f66afd97f947372db43d1da508ebf44bb2e097cfb5dadfe08a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sincosl.texi: 
+  copyright: ''
+  hash: a89fd4b147815474f331d64f144fbd4d7d75f2227af7eb93441703a0b16d3c32
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sprofil.texi: 
+  copyright: ''
+  hash: c08fdfe99dcfab4dca1cb86b587f2240b31c837207173d7174db1f34d4062e2c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/srand48_r.texi: 
+  copyright: ''
+  hash: a1b31d907a31703ac36d663284071ace96275b5a27822fe0a1e5e4f1c2b603a5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/srandom_r.texi: 
+  copyright: ''
+  hash: 2a08e55af0f00d7af009ec4676559ba9918f061ab74e235b22c59972ac050349
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ssignal.texi: 
+  copyright: ''
+  hash: fcb2979253673c67d4c09487a6cc8cf39be3c2252c6ec496042be4023ea0a398
+  license: ''
+  license_text: ''
+./doc/glibc-functions/statfs.texi: 
+  copyright: ''
+  hash: 9d6fc5e1c0bdfae6063e50e332eb0012b995748c979a5d8580eef86bfd8264ee
+  license: ''
+  license_text: ''
+./doc/glibc-functions/step.texi: 
+  copyright: ''
+  hash: 426a0a4b16e9bcbd7d7aa2ec82179983156979e5d4f5cf3b4873f222927b3649
+  license: ''
+  license_text: ''
+./doc/glibc-functions/stime.texi: 
+  copyright: ''
+  hash: f64814a768ab3a8c2dfc527a6996a254ae0378f1372004713722faa0f7539d86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strcasestr.texi: 
+  copyright: ''
+  hash: 6be97e12f20df96d2042b184ed047d50673dc850649541ba46094f6487dc5932
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strchrnul.texi: 
+  copyright: ''
+  hash: c291b83d07a36362c9038066bdc0d7d21ec01dd7ae29f155f14de1706c7fc7f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strfry.texi: 
+  copyright: ''
+  hash: eca813b0b80cd6fd4f69613929302810c07d23628958246d8b381f371a8ab226
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strptime_l.texi: 
+  copyright: ''
+  hash: 61de6a13e4b945c81a96495f6c1314565151113468844dc21ee8250c55736e4b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strsep.texi: 
+  copyright: ''
+  hash: b489bf696b48cd524d457667002388a229416e42dc1a63eb63730caa7f9f834e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtod_l.texi: 
+  copyright: ''
+  hash: 96d95390352ef1aaccbdef7d3046cd2710855e0956a86dd2d9ae0a73882d8d2f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtof_l.texi: 
+  copyright: ''
+  hash: 3a7c917085697f19f398d2dff4f912cc2558df8b1a20619530347c1a32cf2a10
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtol_l.texi: 
+  copyright: ''
+  hash: 1056e76e6f3b96576d6daa749628144d71173983258b917cfabdad15c2a5cc84
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtold_l.texi: 
+  copyright: ''
+  hash: 980aab34470b28f72b4d05de96192a884c5a5b4735613778864b58c978d2a052
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoll_l.texi: 
+  copyright: ''
+  hash: 7c77b5e468dba6520dad40a9029afb868c0e77759d1aded41f788d9512fa7fc1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoq.texi: 
+  copyright: ''
+  hash: 3ee5c14f722fd6571b509d168bebaa6eac29ae9fa67e06fa6185e1c6434f843a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoul_l.texi: 
+  copyright: ''
+  hash: 2e9edb1ca6317be19540834bdc994101d4e1ba3acf938a92f0a208d703663327
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoull_l.texi: 
+  copyright: ''
+  hash: d72937fc153e6134f62f1e5e091dc1fba60c2bfe36ee0fde62e11f29af458254
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtouq.texi: 
+  copyright: ''
+  hash: 4d4e4b1560b347f7c940bf2f1ab536573b722bc14621595d1f58b0beb6fbcc56
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strverscmp.texi: 
+  copyright: ''
+  hash: 0434fb9a8d1d9eb76da42138e9dddaabb2ed83e8256c8125e1518d22996cdf13
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_exit.texi: 
+  copyright: ''
+  hash: 742a22a37b97a093d94bfb5e450a99a8493496e7a45e9fbc9523dd8b1e8e26ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_fdset.texi: 
+  copyright: ''
+  hash: 86ac209423900ccf82784e29806514f557a75814e294a8ec878a178bc4a43d7a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreq.texi: 
+  copyright: ''
+  hash: 0d0f553c97d0c006ff8fd51d80811496471a155c5f6142ef18346229375be10a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreq_common.texi: 
+  copyright: ''
+  hash: 6eb644f28f759de13fb4a8a99336de8a03220b4313b734f69fd0f7592bec8385
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreq_poll.texi: 
+  copyright: ''
+  hash: bd3b4fdaad69465c30adb4295f68efa66bf8f4ed1eb19fb4516ab39d442f9cfc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreqset.texi: 
+  copyright: ''
+  hash: 998123121ccd30984d17bd2695098f64638509b84567a5245ad531e5460c24a2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_max_pollfd.texi: 
+  copyright: ''
+  hash: a8c742ad774e846b1ae0224476a8eafacf12814e0d2d92e51c10c19c89d47f72
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_pollfd.texi: 
+  copyright: ''
+  hash: a5eb6ae06444b07898b1ff83435e446b709bee52ac757f9bbe48742ee666ed57
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_register.texi: 
+  copyright: ''
+  hash: 1a6f4f41aac1621aa10a247323bad0698f2b0531c10b84782216e3728f0009ff
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_run.texi: 
+  copyright: ''
+  hash: da083b143bb1db65e5210a2456b483c19b833f3d2d3e495fcf9b4b319b6a1fec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_sendreply.texi: 
+  copyright: ''
+  hash: d710e6624e82f543d3ad7fdefe76aefd4b88cd0142ad24f75d5403c7942f93dd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_unregister.texi: 
+  copyright: ''
+  hash: ad6885dfeb185cdf4f0ce763b440c8805f8e4b02ac9c44df6231576ac68918aa
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_auth.texi: 
+  copyright: ''
+  hash: 657d79eaada1f05fcd496f9faf8a85c5b914419aee6c0681b961250cba6b8bd2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_decode.texi: 
+  copyright: ''
+  hash: 013d5c25e6c2ab654f6b6b95e33881fc2e774e31b404265acdba1610fe7ff4a1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_noproc.texi: 
+  copyright: ''
+  hash: 0093d9d2b2f48942af33a201c8aa57b2d588db21b684f0cb9622ba87f780ac97
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_noprog.texi: 
+  copyright: ''
+  hash: 0411b3b4407bb4ebf4a5a86b619c044ee035b2a77fbcf2de14ab8c04a44708d5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_progvers.texi: 
+  copyright: ''
+  hash: 63b59aa0eaba24585ee2ea85ba6b8d2ce2212ced66266f5fff5ef99043ca4675
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_systemerr.texi: 
+  copyright: ''
+  hash: 9a43f8242ce29eea2b3dabe6eba74372a66b998d24a8784634b931912ab118e5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_weakauth.texi: 
+  copyright: ''
+  hash: 60f129f48b216becf43b7a6e107572bad1c0aa12975c9b9e2dcb4de32ea12bb6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcraw_create.texi: 
+  copyright: ''
+  hash: 9875045015fb706eed8645e1d24f2b6d09cff0018b985afe987c567c3f262168
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svctcp_create.texi: 
+  copyright: ''
+  hash: 76e63979ea96b2ce48409fcba007b8d2a2dd2d1da33cd8c4be2477376f860d6a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcudp_bufcreate.texi: 
+  copyright: ''
+  hash: ebad62a46d00b7f175d1ac81978d861de596d20f37be2a7e01c918ee9ad815bb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcudp_create.texi: 
+  copyright: ''
+  hash: e6c5c92dcfc4d6256d7c0c8704a3ab0156d7b8f8f4da9cdb264522e3cffcca68
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcunix_create.texi: 
+  copyright: ''
+  hash: c2d36cc3e9b42dc5c0087798d08088d981fee60bb2b1fc134cb051015dfdf364
+  license: ''
+  license_text: ''
+./doc/glibc-functions/swapoff.texi: 
+  copyright: ''
+  hash: d28e58cd281ea7d216c396bbe6cbb28c4ade6a1b1cb8f5d2bdfae763de8eb9bd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/swapon.texi: 
+  copyright: ''
+  hash: a2ae81f7c69492bebb553992ff91279a5e17c259426a305e78c4398175810bd4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sys_errlist.texi: 
+  copyright: ''
+  hash: 9484aa6c644fd4efcf3f9c79bbb710107e54086b9d2cfea822a505e85b11d95f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sys_nerr.texi: 
+  copyright: ''
+  hash: 6c269f9e04c5d53a2917b1fddeb7d432f614326628f60cdf42128bdbc1b4bf58
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sys_siglist.texi: 
+  copyright: ''
+  hash: cdfa2194216664145565158d29ce28afe50425b6434879005d1f09fc2e353de8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/syscall.texi: 
+  copyright: ''
+  hash: 190444fde09ca92f5d3c1a088254e8ea24f8ad21e7e743bd7bc74d5e7c3d8422
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sysctl.texi: 
+  copyright: ''
+  hash: 7caee75d99a482a34152821c313157a935611e93d37475e51fcfa966c389b00f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sysinfo.texi: 
+  copyright: ''
+  hash: 2ad08e1570e50f92819f57b496af7be37f638f2c45f31ddf1445f35d928e58b8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sysv_signal.texi: 
+  copyright: ''
+  hash: 53654570fe739a0174eac69d3395bed8f5ee0a66ab1dce4870f0c6a9ef8da8d8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/tdestroy.texi: 
+  copyright: ''
+  hash: 2b159ca8f8ccd5a6ba34012b632072be835387cef1daa34853fdbdec8d11bfd3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/textdomain.texi: 
+  copyright: ''
+  hash: 2b3b638baceaf30671d2612435628b02e3510a81bcb035c4d0953415beb44aa0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/timegm.texi: 
+  copyright: ''
+  hash: b33fd6b9183cda8ba31a038b0646223cf342064f7f57f96a60c01adee101f593
+  license: ''
+  license_text: ''
+./doc/glibc-functions/timelocal.texi: 
+  copyright: ''
+  hash: aa7d6d8db5573d824931cad1a0e543b7ac6615fb9f76d7e294700027c2a7f901
+  license: ''
+  license_text: ''
+./doc/glibc-functions/tmpnam_r.texi: 
+  copyright: ''
+  hash: 867eda2cdd3958cb2d0774ac423ace6f99f332061f97fc1e89ee182b4defd593
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ttyslot.texi: 
+  copyright: ''
+  hash: a2db69dfed6d03d128a80b25100aa8bfdbf9ab8b7e6aae779b69352fe68be984
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ulckpwdf.texi: 
+  copyright: ''
+  hash: 5f913bc70494c38469fbeb1b242348e0d6818d5efa27ce69d1e56d0bf9733477
+  license: ''
+  license_text: ''
+./doc/glibc-functions/umount.texi: 
+  copyright: ''
+  hash: fda8d64fea228f847027a34530867b8fb61767a6b19b9bd8a2bccd46400dd1c5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/umount2.texi: 
+  copyright: ''
+  hash: 2957ef22d4b034fe43264d7a077e0c0b79acfe9b8d77dac47cbd9871e7322a87
+  license: ''
+  license_text: ''
+./doc/glibc-functions/updwtmp.texi: 
+  copyright: ''
+  hash: 0b9cdb5b25e1d740d3d4f9c7f3b42619f569938aba2412951a154103a9300952
+  license: ''
+  license_text: ''
+./doc/glibc-functions/updwtmpx.texi: 
+  copyright: ''
+  hash: 3d8f09f5afded96b9f0ae4b4d20dfa978893205440ea6bd95424e0e3861d624a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/user2netname.texi: 
+  copyright: ''
+  hash: 5f52a0441b2809065a8fa64c97c5c16eccf950ae9ed3108a0f0746ffc0ecea5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ustat.texi: 
+  copyright: ''
+  hash: f6cc53dfd21cf85c0e451aeea98c50ccd011ea4c88da39fcde741121726e1183
+  license: ''
+  license_text: ''
+./doc/glibc-functions/utmpname.texi: 
+  copyright: ''
+  hash: 30f2c75b23465299b58ac58dd7d8782080f478c88177e4f4a383f7c45f7120db
+  license: ''
+  license_text: ''
+./doc/glibc-functions/utmpxname.texi: 
+  copyright: ''
+  hash: 7f048aaa1c923da17dbac39bf8b24992e0e1429d0f8f1b07ad60a6b4c0959974
+  license: ''
+  license_text: ''
+./doc/glibc-functions/valloc.texi: 
+  copyright: ''
+  hash: bc0a2963c65006320c0a49b64417fe78e8b2fa1dfa9bacec78dcada637280365
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vasprintf.texi: 
+  copyright: ''
+  hash: 01dc69843bb08b39bbef53771785a3f74e86491f2d1dddc8739d898d2a8bdf9a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/verr.texi: 
+  copyright: ''
+  hash: 78267ac4d25a9129dd9b2509e14064e457b8c938b2f7075931403403963d17da
+  license: ''
+  license_text: ''
+./doc/glibc-functions/verrx.texi: 
+  copyright: ''
+  hash: 243ae75a133530c958e53bb80fbef71f2528824270327400efbe249a75c523cd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/versionsort.texi: 
+  copyright: ''
+  hash: a8d292fdf0af9d2eb2473ecba25b36c64863e58acce8c463bf054dc5476603c8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vhangup.texi: 
+  copyright: ''
+  hash: 24826dfcb8f9b2e73d2e89ddd190426d8e5d0f227b0082ac812909b10b8a8b3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vlimit.texi: 
+  copyright: ''
+  hash: 9462f628ec3422857cc94eb976adec9a79466b27f54a83ab819f916053c96976
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vm86.texi: 
+  copyright: ''
+  hash: c86ac73a01f52ed04acc07d62d1ec512640f650cb0347dd079e7ec4c71e0af5d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vsyslog.texi: 
+  copyright: ''
+  hash: 848e6a794d99db034fd60bb81dd195003e60770bffcdee4dbaeaebcf71c98ddd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vtimes.texi: 
+  copyright: ''
+  hash: 06d2ebc51079102284cf04e82831a57f97849fd2a1e177aaed25aa462f93e12f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vwarn.texi: 
+  copyright: ''
+  hash: fdc2b63b39a6cb2c3207ba881f0765eb8768f34d2fa7badb91b15c0a291b715c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vwarnx.texi: 
+  copyright: ''
+  hash: a36189d641dc9338fd1667d162ed6642f0a3bea5356d5357aedfcc2888b47337
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wait3.texi: 
+  copyright: ''
+  hash: a7b4066310d3a25054fa4f7aa01e708505f766e673c9cd25645a820129cf5d2d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wait4.texi: 
+  copyright: ''
+  hash: 6d200273bf91bf0dcb399661230e36cac133661d4bc9dff07cc419dae1f76c05
+  license: ''
+  license_text: ''
+./doc/glibc-functions/warn.texi: 
+  copyright: ''
+  hash: 723908ecf30a2a6a42d40630b7c66884afeb923239309b052149301d01d48d41
+  license: ''
+  license_text: ''
+./doc/glibc-functions/warnx.texi: 
+  copyright: ''
+  hash: 5f98d682eb3ca5672fcbad900bd876090ced691d922879ea4bc661c541d83d1e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcschrnul.texi: 
+  copyright: ''
+  hash: 5d417933737648f79c9b9091e34dd6de4bdcbacabb611962290237a8b1a53f78
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcsftime_l.texi: 
+  copyright: ''
+  hash: ef33c1a0f5969ac80dfac455c2ab398baa7e2ae22403663282b851abcacb0c86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstod_l.texi: 
+  copyright: ''
+  hash: ad0ddbd33f44160180dc6a5116dec058c419d4cbabf88fa761763aa9f38e11a4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstof_l.texi: 
+  copyright: ''
+  hash: e3b0808da41d177b2fc26f9fa6dbaf17fde774661f00d708a7599f32e8ae22c8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstol_l.texi: 
+  copyright: ''
+  hash: 7f70614683c069b068bdd6f22a9f557afb8a5cc586f5c4a6e434506834c08c2c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstold_l.texi: 
+  copyright: ''
+  hash: c68fa338d011fe9288ac28b1eb729b469531db1475cae1b1b7dadbcf7098b90a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoll_l.texi: 
+  copyright: ''
+  hash: bf5c9212a552069833ed365917ab1628caaac9bafde388b648aeb9d3d96cb709
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoq.texi: 
+  copyright: ''
+  hash: 4999de040d3a057b3a08f5a332220ea773287f6916b8f012d3e0b184c3f26592
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoul_l.texi: 
+  copyright: ''
+  hash: e614b148fe54e7838a90ab850f729e323d6669bf7e07312bf4789ce74918119d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoull_l.texi: 
+  copyright: ''
+  hash: 745c028ab6e80155cab792bf525124410699c33d23085c42d2be99ab905f0f24
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstouq.texi: 
+  copyright: ''
+  hash: ba85b34761c3f98505456e786d5ed3c3259271db6f67594a58751d4cf48f6053
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wmempcpy.texi: 
+  copyright: ''
+  hash: 4bcdb18550e5c7d28fb6c83a0313ce9f4ace5cc915c3d08084984599785bc2fa
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_array.texi: 
+  copyright: ''
+  hash: 19c6ca0199f50e5f501e77f148ab91dcbfe91b661cf52da5e6856f5cbcea03d3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_authunix_parms.texi: 
+  copyright: ''
+  hash: cdb3df779cceb4d74a88670f6a4610951a2aa4394de151d1e7fadb24c5d0be3b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_bool.texi: 
+  copyright: ''
+  hash: 4ea286fe1a567849deeabf993df9d993ba60ebca88953089f743484495cd055b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_bytes.texi: 
+  copyright: ''
+  hash: 3cb975a4ce2552c20f4957ccd8b73cdb7b626672140bef0b1e2f72f6e5fc0d1e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_callhdr.texi: 
+  copyright: ''
+  hash: 6f417e2360984d05faa4f6e29ec925d45ff15aaff8b559b8797a3e1323b85751
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_callmsg.texi: 
+  copyright: ''
+  hash: cb750ed335f8990d02c2f270df2af3936914bca25e3c6ccf0744ca6cecfb28c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cback_data.texi: 
+  copyright: ''
+  hash: d4a37bb7dc668a544a5cd09991da24d8096f4b12f9e6e37e8393a26940361fa9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_char.texi: 
+  copyright: ''
+  hash: c14040bd19324e444f22eb519f081124ad19cc489ff3204c2b48e52576921e8a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cryptkeyarg.texi: 
+  copyright: ''
+  hash: dcdd59591f3dca753276ddb3dc166b55ae1e1dd469fa7a80f9ce2a998423b84d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cryptkeyarg2.texi: 
+  copyright: ''
+  hash: e7b71aa3c2b7935333c3782753185038023468223a630d977a16a3ffd24e105d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cryptkeyres.texi: 
+  copyright: ''
+  hash: 3b754af6685bd5ebf15014e7cf19ccbbfef72939d1c5a815488b0007e0352e44
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_des_block.texi: 
+  copyright: ''
+  hash: 3ce2fdf69ba45fff5fc0faa36f81ae554c4a5af6ea364d6a134a230d870b4f93
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_domainname.texi: 
+  copyright: ''
+  hash: 3881316adc80be14ad5c4fbdae5d311b492d7109e80cf05a00314e9e69aa5ff9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_double.texi: 
+  copyright: ''
+  hash: f91e2921b11504f0c91cbd54470b2973bc77623887893e0b94e964b503f7277f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_enum.texi: 
+  copyright: ''
+  hash: b149f650f465a2faa5f1d68bd93ece4c0a0ed0896afeabae4dcb70ba405b89d0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_float.texi: 
+  copyright: ''
+  hash: 78543df2289178a87a35441879ce5a1ff664fcc58c7b8c6426ba648e3ff4a8cb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_free.texi: 
+  copyright: ''
+  hash: a47ac9b7d37b8d0cb2f75c4d7d96e563dd8047c92de3f49a33e3c3ce8f66020e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_getcredres.texi: 
+  copyright: ''
+  hash: beaa386f00d0505786655c3db8d09815047d87487d12835741e566bf945bbed9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_hyper.texi: 
+  copyright: ''
+  hash: 8e26f31e26f57ef964cd9116f3d9e2574589b14caaa979585e198941bd24bb9e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int.texi: 
+  copyright: ''
+  hash: cb72dde3124b8fd76f079ba72974518af41d6411110e224ad69a9dd66c4e377e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int16_t.texi: 
+  copyright: ''
+  hash: 9d69be17ce7fcf05a552f56855ca688ec4eb9692b7e7133dd74cf3af7a0ff4c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int32_t.texi: 
+  copyright: ''
+  hash: 17df4279175d33cbffeb13dfc3723dd8cff57e6848ac36fcd31b6f662e0083e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int64_t.texi: 
+  copyright: ''
+  hash: 4753692e70e7e2651f024e883c7f010c103b4c79709fff8ef1fdf941047ec0e1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int8_t.texi: 
+  copyright: ''
+  hash: 1a0aa6477a573362cb68f4a632c0a058c2ec2902f2151ff9e84ac6a5a6b780e8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_key_netstarg.texi: 
+  copyright: ''
+  hash: 0f4590353eccd2b066cc84ed1e150a99a544717e54a13be8af2bb22d7dd4a240
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_key_netstres.texi: 
+  copyright: ''
+  hash: ca085bcc181d082d1a2f1577ccc05c0d4b52ee79579b97259bfc6f5bf07dc781
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_keybuf.texi: 
+  copyright: ''
+  hash: a9c13f98859f695a73919a5fc0a4b2ba5b2b45f2ae7e162642343596d1533435
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_keydat.texi: 
+  copyright: ''
+  hash: 73378018a2b511581dae3489763c619c7d7bfc34028fb1b7b863c5a39bb2f04c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_keystatus.texi: 
+  copyright: ''
+  hash: 298e5a8921550a28dba370bdccc49d13dd939586385108de443e2ed839be59a1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_long.texi: 
+  copyright: ''
+  hash: e06094afc04e32d73c2acc605cafcc9e09437632f2b5c2abe358e516f94f18a7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_longlong_t.texi: 
+  copyright: ''
+  hash: 53de27845b0a5e03ff5f8130b12a1b13999547c01fb30c65b73cf92694bb0803
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_mapname.texi: 
+  copyright: ''
+  hash: b9e02d47cff97af875c28948086c04f39cc7552f7a2a0497f3027dc263b9c919
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_netnamestr.texi: 
+  copyright: ''
+  hash: fb5440773a3cf802982b1e1410236bbfce22b04dab527a1bfefd607e06ee96af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_netobj.texi: 
+  copyright: ''
+  hash: 918ec09950c6cef891df450e39e65854ad72f515eed4a07675ad526d7d029271
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_obj_p.texi: 
+  copyright: ''
+  hash: 7ebd559c8f4ce57177436f5f78c4c8d2b3896199fe11a24f1af48c471cda310e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_opaque.texi: 
+  copyright: ''
+  hash: f79ec3f8db308c32f344e9d267e031c96c9b3a017a6d431bc0a7348be7ce1fd8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_opaque_auth.texi: 
+  copyright: ''
+  hash: 54c3c5c297b9d6cf5c898ae54e857b841a1e16df4f1571dadfe2f3ba295f391f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_peername.texi: 
+  copyright: ''
+  hash: 8538bdb09599068f97b98edfb2a62e4ea6127f54711bd870c49aa117313eaa7f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_pmap.texi: 
+  copyright: ''
+  hash: caaac80f2f2fa2612d1e842bfd4a93f557882c7eea684560c0d85549a95f91c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_pmaplist.texi: 
+  copyright: ''
+  hash: ff5f2a65c464e0a939f8b99d477a84604052392e0b2992a9476887c90c433043
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_pointer.texi: 
+  copyright: ''
+  hash: b660e5bf17a26cdf685fc6d23dffdb14a71b632f4eaa27f03edeb522f5aa7f99
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_quad_t.texi: 
+  copyright: ''
+  hash: ea704f7e0d01c043c1e277cd4963dbf6187e89e3654dc699e7b5fcb850a840a7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_reference.texi: 
+  copyright: ''
+  hash: 6134f57fa3312cce201a4c6d77ba8e811fd8790b22ccb6b8a73e687644ac9330
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_replymsg.texi: 
+  copyright: ''
+  hash: 4e007440139b2dda257c96d363b3b80ccb149be9009ae80ae2bd3a629b6b2135
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_rmtcall_args.texi: 
+  copyright: ''
+  hash: bec9d04d82d941309b9d46bf423d0eff1f90382e71cdc9e3a08357dfc740bdd5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_rmtcallres.texi: 
+  copyright: ''
+  hash: 150f8543b53edd291c4b83bc2eefebe934b2c8158a173cf8e2650e0f38c12d60
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_short.texi: 
+  copyright: ''
+  hash: d8f8eb2c0ee517e33fff798e697baf8765a32bb01fdb018e1c7e4c5d24d47ddd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_sizeof.texi: 
+  copyright: ''
+  hash: b9e8e1b750d3cfa2d374d483dac1308f4b5a8e614ddc1bc89201bcdca2b53bd2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_string.texi: 
+  copyright: ''
+  hash: 2a056d27011ebfb9c2fde0648bb47ace5429329369eeae141bbd0b5dd7d19abe
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_char.texi: 
+  copyright: ''
+  hash: 6b8f014daebc6193c1fe4b95ca2bc0c9a75a34bf91e625a64779cf4d09632198
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_hyper.texi: 
+  copyright: ''
+  hash: 38a30d406c25e5e945e21ba8df38a61a5bea26be525257fea360edf720f62be9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_int.texi: 
+  copyright: ''
+  hash: bc84e1bcbc9c805eeae8970f26c2f2c08cc6f3c7b3aca4d3d3bc4116ccd18762
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_long.texi: 
+  copyright: ''
+  hash: 79996dfe2a34829be53444eeb81caf5bf33642fb5791eadf467cc5be2efb58ca
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_longlong_t.texi: 
+  copyright: ''
+  hash: 68109be44fd22b27b66ac2dfe47e3ef9a8cc0f9aff21e2fade30373aae96ffa7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_quad_t.texi: 
+  copyright: ''
+  hash: c1debccf71d14e14221ed9c5848cc1aa2366a65948f68845fcd2b57b0749ee79
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_short.texi: 
+  copyright: ''
+  hash: 5277089c7dbf9c47c789cddf19c5d1b80af4a83c8fc5858daae1d6f960a9c0d8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint16_t.texi: 
+  copyright: ''
+  hash: 5056c5c947997ff404e63d557adb270b3a96be18eb85d91a99ba658f262c307b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint32_t.texi: 
+  copyright: ''
+  hash: 0e93d9fbd8816dd776781b73ba642602968d88b1a9a1835f2aacf5d163f256bb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint64_t.texi: 
+  copyright: ''
+  hash: f40a280712d786b4c58851ea0ada93ee7e8dd374dc6bedb1d88d1eb3029e5171
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint8_t.texi: 
+  copyright: ''
+  hash: 6944d05901cc4f743764f005d098d50799ed43b4aa6de7469c40a94cc1d92d87
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_union.texi: 
+  copyright: ''
+  hash: e8c3b53eade2aaea2a515e16d398bf97e4c667a4fb5aed2dadff6bf8dfb8b62b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_unixcred.texi: 
+  copyright: ''
+  hash: 9f888821059934a9e8d72e85c34b0c74fff437fff04af14d3e1f7b8adc0c95ce
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_valdat.texi: 
+  copyright: ''
+  hash: 3ed49a721838c98227ffa1d475de25866ae591b1f5a580e5f9dfeb46cbef4f91
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_vector.texi: 
+  copyright: ''
+  hash: 53d9bca4da0f5eaed77104e988310b12bc2f5d42c83b6937c5200c174cbc3708
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_void.texi: 
+  copyright: ''
+  hash: 81033902e9049ef9f57a463240c562bc2d5d68852657d2a8088758b1418b5ba0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_wrapstring.texi: 
+  copyright: ''
+  hash: c8c995b3843fb29dbc49af22efbda22eaa1a4c9a3ac036833c892b533db4384a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_yp_buf.texi: 
+  copyright: ''
+  hash: 967c6a5a78890236ee181eba0d63eb789115e8eeedc2c58621664544ec9bd493
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypall.texi: 
+  copyright: ''
+  hash: 49021a841d747afa6c867addf2fdad46adfed7820ba1999395e264b2e4e3a96c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_binding.texi: 
+  copyright: ''
+  hash: abd640055eb5a0d21f0f6a06024ef8e25da1cab867fd84151c3fbfa71ba49b0b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_resp.texi: 
+  copyright: ''
+  hash: e71ba4166aa4b084e54b251c076892d86209e5c4026c9621bb83cd82420518a2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_resptype.texi: 
+  copyright: ''
+  hash: fc323b9e591fd7d0405fbbfdf6a350828bb3e37b17f5698ce0853da9accfca6e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_setdom.texi: 
+  copyright: ''
+  hash: 715266fd7005c68155bc84c3bfd72a0dbd2839f4f9c1431cdccda41d2516c61b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypdelete_args.texi: 
+  copyright: ''
+  hash: 5a2b2391166fd729def02629326df511cb557403bb3430e8c309d40f0151bd0e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypmap_parms.texi: 
+  copyright: ''
+  hash: 31deda1200c8b55648464a71a80e05c092d1c342a11dcf1621ae60f75649e2c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypmaplist.texi: 
+  copyright: ''
+  hash: 3770fe4174a30510e6650d1532f1254d90b4ee9a8fd55a240704aeceac7116d4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_yppush_status.texi: 
+  copyright: ''
+  hash: bed774ce7f2689102ac04fcebe6f8bb353d2fa812ccf8fef9e3c9f9ef7707539
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_yppushresp_xfr.texi: 
+  copyright: ''
+  hash: caacebd076371cf8370ef66bd87d61c5a969ba9b2de9263437267a78a4582b2d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypreq_key.texi: 
+  copyright: ''
+  hash: 5e8853ba7b6102e9ef59daad62f95b5ad79482a0809507ad302e7efb7e14c180
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypreq_nokey.texi: 
+  copyright: ''
+  hash: ca0a55c40a73ff170a59e2e77693a4b0099f9f21cf68112362b10c73ba4897bd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypreq_xfr.texi: 
+  copyright: ''
+  hash: 38242199a4947757bcca43ae41c1aceeaf21204f91662b6c6a70870aa6c52105
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_all.texi: 
+  copyright: ''
+  hash: 7b3944e0fdfcd0437b44e330fd160a5a452738e4f2ed88a06c428507135704af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_key_val.texi: 
+  copyright: ''
+  hash: 16879a199e808011cfb7bce444c0400f537d3299a1c9667ca1581d622e8387f1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_maplist.texi: 
+  copyright: ''
+  hash: d8f02b128e983b30f2be817f09ec1636d1d22863908833b9a104231736c1757d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_master.texi: 
+  copyright: ''
+  hash: e623a774cfbf5390ac5ab6db1871df8fc813438aa10e701c19f067fbf11ca3e0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_order.texi: 
+  copyright: ''
+  hash: d68c39c59fcbfefdb10d7e77def68a96ee1536b33e42d7cae1249a59fbddc7e5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_val.texi: 
+  copyright: ''
+  hash: 7c45b13e75ad02e922ffc50bd1e0f74f246ff392ec0f7269f784490ff6421332
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_xfr.texi: 
+  copyright: ''
+  hash: 6684da40fa119c7354fda920dbc8067d4e6769687a66c08c96342311d0dc1a9c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypstat.texi: 
+  copyright: ''
+  hash: 1e7de73d56c70be501e608841a86d6e7c23b5b3d58f1d9a3f6e09d9868d5d6e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypupdate_args.texi: 
+  copyright: ''
+  hash: 77aaa0ef10b3095e45964efa46e739376002decd90cf42f0f8a8dec3d5eff977
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypxfrstat.texi: 
+  copyright: ''
+  hash: c78e6f06c5fd2a43a28a72a7ce49d02b158b37062e80b1d9788be764b82b26ab
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrmem_create.texi: 
+  copyright: ''
+  hash: 2a203690a726870fade84da1208be0cdfab169f22001ee6efe93f06e3742ebb7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_create.texi: 
+  copyright: ''
+  hash: 8073fe892a74de188dd302a4a43e971cf0e3fb48c86cebeef96240e0ac4bd4cc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_endofrecord.texi: 
+  copyright: ''
+  hash: 88344824ec838d41448198022405e5dac92019e2bc1475a230608b4518bec054
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_eof.texi: 
+  copyright: ''
+  hash: 25422c24889db04aa8ff53d00ce41fae2e5444730364cb37890ccacd15e10f3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_skiprecord.texi: 
+  copyright: ''
+  hash: 0b1d2e89f6f0d930e81e40412735caed420e496c1d7e2c3317083704ddbc822c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrstdio_create.texi: 
+  copyright: ''
+  hash: 0898f08554917e889fd206ae59a18d6bf78f9f57a5a9e636844660f8bb4460ba
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xprt_register.texi: 
+  copyright: ''
+  hash: c94e94912422f8a89d1046086b09b5f1aa13198a6ecd72276a6cba7caf0364ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xprt_unregister.texi: 
+  copyright: ''
+  hash: f682b2bfcd16651912315034106c71ff0946a50daaf430177bd0624a37f88416
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y0f.texi: 
+  copyright: ''
+  hash: 53011f664d3903683e4544d10dcf5b7c7f2c1222c9acab2e70d9f2c9df387afb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y0l.texi: 
+  copyright: ''
+  hash: 049581b8d62217de9d548fee3df56a779e216c9b490a92081b3e440174e277df
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y1f.texi: 
+  copyright: ''
+  hash: 2af7a392fb4304dd9bdf7cedc4f950d151b3e72dc31b5eb42d9b53451859e389
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y1l.texi: 
+  copyright: ''
+  hash: 9f65d87b286eb81df62bfdb118cb3ab8c763aab3cae81aea9a9dc16161bdaa12
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ynf.texi: 
+  copyright: ''
+  hash: b20e9430fc3cd02a0586eed22a0cd3eb2d271582b9087490395973f33038aac6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ynl.texi: 
+  copyright: ''
+  hash: 8802eb9677218d45cd4e44dd735d1115f0fcb9e61acec28ab17b887b50ffe117
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_all.texi: 
+  copyright: ''
+  hash: b42b025cf632d8cf7da519a7528a9a2d1210f4e357dcd9390c882bb8a38c0e53
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_bind.texi: 
+  copyright: ''
+  hash: be7340086b6000053f761dfd46aea30bcc1bd2f4dfa161204a8bedc5ec212967
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_first.texi: 
+  copyright: ''
+  hash: 448d2709a2f0d219dbd749d8367b8c82fcb12aa01988d1ecc33e5deb2fc824c5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_get_default_domain.texi: 
+  copyright: ''
+  hash: 41048d71e875a399559a8d3438f700a43b5468548935403691f02ca2351e141c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_master.texi: 
+  copyright: ''
+  hash: 0b2a7eb836405fa27ed19e381580f7e43df719ab12e78763c129576b5cdd1a7c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_match.texi: 
+  copyright: ''
+  hash: 627851384f34c2c955e0e1e24fb264440f4559b4e2d93ed5661a97bf32a4380d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_next.texi: 
+  copyright: ''
+  hash: 6a2841054c2ea3aed8bf5bc393b4dd9b7b3178b199b119fdd82678eec3ed21a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_order.texi: 
+  copyright: ''
+  hash: 8eae91da78f387f713f35b9d102c4fa66c5931737f6f1467289f76628a8334e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_unbind.texi: 
+  copyright: ''
+  hash: bd6cf9c478e4596ec9082e569e2bf6937f7985d1ba7c2d5db1f9802195b5bd26
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_update.texi: 
+  copyright: ''
+  hash: 117e4ddb5bcaf2a5e0768d85e23471c5895cc162da1390b7c5fdb77ba5ddc775
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ypbinderr_string.texi: 
+  copyright: ''
+  hash: e7167ff396db2d51dfefcd5b793df6d529e9425dd1aead57cb012d97584e6cf6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yperr_string.texi: 
+  copyright: ''
+  hash: c94934aac4843428b891128424e3012dee61594fb6bd1dddf9d466de2ada7482
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ypprot_err.texi: 
+  copyright: ''
+  hash: 2670cca93cbe02f004e8676febd96ceb18676682aae42a869b01c0697332a068
+  license: ''
+  license_text: ''
+./doc/glibc-headers/a.out.texi: 
+  copyright: ''
+  hash: c82b738632f1965d1559f7667c877af774465a98c6ca3f81c897beaf7b374357
+  license: ''
+  license_text: ''
+./doc/glibc-headers/aliases.texi: 
+  copyright: ''
+  hash: 94f129741de8a7fd4521bae2dc42f429abfaba102e9fa06c5a9351e1379a4c5f
+  license: ''
+  license_text: ''
+./doc/glibc-headers/alloca.texi: 
+  copyright: ''
+  hash: 42d72a383eea05edb7de100160f56e7ab4d915e5dab4668c2fd128f4b651d2f0
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ar.texi: 
+  copyright: ''
+  hash: 63a2433058954240c8a3d62a4b5b0a2809326d5c6b82b623799d2a8cf39cc734
+  license: ''
+  license_text: ''
+./doc/glibc-headers/argp.texi: 
+  copyright: ''
+  hash: 7250680a987ff78ed8feac3a74ec4a5661c071de4e4d1dfc60de9db22d28e589
+  license: ''
+  license_text: ''
+./doc/glibc-headers/argz.texi: 
+  copyright: ''
+  hash: c0d05a1e13f8f4f7a4a4002cb7e9683b657434da45c97b304951986f7d94bfc9
+  license: ''
+  license_text: ''
+./doc/glibc-headers/byteswap.texi: 
+  copyright: ''
+  hash: daf819b6395c3de377b3efb8f8176107e27f2b3b26561d77a8a3b2dad08e147a
+  license: ''
+  license_text: ''
+./doc/glibc-headers/crypt.texi: 
+  copyright: ''
+  hash: fa453cee950ed9d2d41db4eac6a4c5fcad6f4186d3d207d519045a9f68ae65ef
+  license: ''
+  license_text: ''
+./doc/glibc-headers/endian.texi: 
+  copyright: ''
+  hash: 0f822251f51808592a371b872b6ac045d213519befa9311b36eb6e28bddc9324
+  license: ''
+  license_text: ''
+./doc/glibc-headers/envz.texi: 
+  copyright: ''
+  hash: 939b798b1ec8e61e63e9f93a82c69c5db6f6c05bf98f7f3bbfb8e44c9bb4453e
+  license: ''
+  license_text: ''
+./doc/glibc-headers/err.texi: 
+  copyright: ''
+  hash: 771c351eba6fadf44f8ac86e707dfc90823ead9582e51fb8c95a54702a09395d
+  license: ''
+  license_text: ''
+./doc/glibc-headers/error.texi: 
+  copyright: ''
+  hash: 564594bacc029daac4577221c831b68ab6e6b141d225252b2e5a1ff6a2b5c377
+  license: ''
+  license_text: ''
+./doc/glibc-headers/execinfo.texi: 
+  copyright: ''
+  hash: 442281157e2f5c7d15617b99dc65c5e2740ed8132d5ef4b6a637d7bd0efe8a16
+  license: ''
+  license_text: ''
+./doc/glibc-headers/fpu_control.texi: 
+  copyright: ''
+  hash: 0d1f21a6828be61eaafc50791e6648cadd3cf5986071c19912bb0e485780e01e
+  license: ''
+  license_text: ''
+./doc/glibc-headers/fstab.texi: 
+  copyright: ''
+  hash: d765e5f871ae90bba1b85512cdbbd9d04babbb1073e89f28a5e4203003ccbb3b
+  license: ''
+  license_text: ''
+./doc/glibc-headers/fts.texi: 
+  copyright: ''
+  hash: 05a382b4ee91017936ce7dceda2379ade746af1154b3977321604b116f237f5b
+  license: ''
+  license_text: ''
+./doc/glibc-headers/getopt.texi: 
+  copyright: ''
+  hash: d2425536ed01e34b35b1f3c58f4cf07ca9b09f6d81663efab78da5a5ab688a03
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ieee754.texi: 
+  copyright: ''
+  hash: 515398e288e2a4e2e6118c4c896dbb4c1a9019d6b91221aa076f2d5cac32f9f7
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ifaddrs.texi: 
+  copyright: ''
+  hash: c85198be6c0f9e8ac1c65d365a6cc7bc0cc665bdbc72fe83acf7b0ab0cc955c9
+  license: ''
+  license_text: ''
+./doc/glibc-headers/libintl.texi: 
+  copyright: ''
+  hash: 79beb5970e6f446c6a04900828534f021471762201935c60cfd021c6332b7e78
+  license: ''
+  license_text: ''
+./doc/glibc-headers/mcheck.texi: 
+  copyright: ''
+  hash: dedb846dbfd04c6c9a2a967d276c9de008ac4c79e61e07aeafd412846df98fee
+  license: ''
+  license_text: ''
+./doc/glibc-headers/mntent.texi: 
+  copyright: ''
+  hash: bd4559256ee3494644710f4e1602495d4050f8fa0d4c703f11fcaf8fde02a704
+  license: ''
+  license_text: ''
+./doc/glibc-headers/obstack.texi: 
+  copyright: ''
+  hash: 1c5f322397603a32199f6a1983459423e6610d00288bfb2f3e8b8ee875abd7a8
+  license: ''
+  license_text: ''
+./doc/glibc-headers/paths.texi: 
+  copyright: ''
+  hash: 8dc24f98bf823265dd3378f42860137cacdfd735284b75108ef5437552a339b1
+  license: ''
+  license_text: ''
+./doc/glibc-headers/printf.texi: 
+  copyright: ''
+  hash: c7159716f5c2910ec7d390f7877340ba3998b5fbbb63bd559484742f859ba86b
+  license: ''
+  license_text: ''
+./doc/glibc-headers/pty.texi: 
+  copyright: ''
+  hash: 210686eb5ebf3e3163fa609fea0156ea611363bde9b6a363135e2697765a0594
+  license: ''
+  license_text: ''
+./doc/glibc-headers/resolv.texi: 
+  copyright: ''
+  hash: 67e701d549c3af1a21fa81ac7bb0aea9bc236210f49d4a58e44a93ef173d7d1d
+  license: ''
+  license_text: ''
+./doc/glibc-headers/shadow.texi: 
+  copyright: ''
+  hash: a366437bb8a42ee9261518470bfbaf0fdc8da97ebdfafd9b582e0896d7f739ad
+  license: ''
+  license_text: ''
+./doc/glibc-headers/sys_ioctl.texi: 
+  copyright: ''
+  hash: 9368a7f1aab344a4a2b9c5e895868ca14cc69044c0b1c04a8bf3a9c89cef6e41
+  license: ''
+  license_text: ''
+./doc/glibc-headers/sysexits.texi: 
+  copyright: ''
+  hash: e281f6c23b36b8fd6bfaaa9e8983259765fa320d989f9d77639cdf67c7b74182
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ttyent.texi: 
+  copyright: ''
+  hash: a9e0f8c8e52a08d612b970503007b714f785c88f0d36786a6f2a8917b56c59d8
+  license: ''
+  license_text: ''
+./doc/gnu-oids.texi: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: a8b7560867c2aed55edee1312ccb3b71d4a7d36209c0544d538aafc0c990c7d2
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nare permitted in any medium without royalty provided the copyright\nnotice and this notice are preserved.\n"
+./doc/gnulib-intro.texi: 
+  copyright: ''
+  hash: 8afe4cf237d90be78640df9ef7349588a2a5bcb07901f8bc2ad44b625b00afea
+  license: ''
+  license_text: ''
+./doc/gnulib-tool.texi: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 86878555c512a6423372b2cd838d55c7c6a02da7eb97664a78e4bbf111f33b31
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/gnulib.texi: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: de3a5da4c9cc7db7d7ef6de60a5248025bed7cbc6b9dc0320c0075bb28b18b77
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/gpl-2.0.texi: 
+  copyright: 1989, 1991 Free Software Foundation, Inc.
+  hash: ba36a1e79e0a6db5aa3012803fd12acab7bc7be569da100c6659fff959670389
+  license: ''
+  license_override: other
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+  license_text_override: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/gpl-3.0.texi: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 1c68a24b291a0eebaa1fabba67326ad8c5d48968b84bba0907bf74d8d3b01971
+  license: ''
+  license_override: other
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+  license_text_override: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/havelib.texi: 
+  copyright: ''
+  hash: b178e7f4be5c66b0756783fc65a9fdbefb2ddb9e2fce18cfe4838383506ba25f
+  license: ''
+  license_text: ''
+./doc/inet_ntoa.texi: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 44cfa1261391ab7b6da6a8387826d35826ef9238214aea7713a3bdae92621afc
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/install.texi: 
+  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 3579aa06fdcde2788de2bdb2ac9e3f7dddaaf305033e3819b0bd5e8bcd321ad5
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nare permitted in any medium without royalty provided the copyright\nnotice and this notice are preserved.  This file is offered as-is,\nwithout warranty of any kind.\n"
+./doc/ld-output-def.texi: 
+  copyright: ''
+  hash: f3adaf3de58b4ee8286574e8dc7d25e0d536753026018880d7ed6299129dee1c
+  license: ''
+  license_text: ''
+./doc/ld-version-script.texi: 
+  copyright: ''
+  hash: 21a0a61901f55f0d7c8ba37d1ce6dc1d569e74583bd96a03ea211db7d969fc10
+  license: ''
+  license_text: ''
+./doc/lgpl-2.1.texi: 
+  copyright: 1991, 1999 Free Software Foundation, Inc.
+  hash: 85eec7ec57d7c054ced20ff937a0dbb6f85ef080feef81c969e3338c4e07c237
+  license: ''
+  license_override: other
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+  license_text_override: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/lgpl-3.0.texi: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: a4c865bb56a69cee86c1ab9bb354cd6a81b95e64a6ed096b1b3e616af3f85cc1
+  license: ''
+  license_text: "Everyone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n"
+./doc/lib-symbol-visibility.texi: 
+  copyright: 2005-2006, 2009 Free Software Foundation, Inc.
+  hash: ace49800754530f3421436b0c69c07faa05fec9319591a7a4d30b2bd37a98525
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/maintain.texi: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: c3f2ff808bd13ddf5c9dfdecff85d6bc5581e6338bf9919e43aa41a7d2a5ed05
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/make-stds.texi: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 6856144813c56da2dd64ded78323b4e4e1be9177837113f827f9340b8cb74446
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/manywarnings.texi: 
+  copyright: ''
+  hash: eb20f35c0202b22d36b97d775196f85053b54dc0a181eced05ac1f19457dd4df
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bcmp.texi: 
+  copyright: ''
+  hash: ee5e5047ceaf869e5c235c6f2702e7f43b6b4ea02ef553524b75e92be07c640b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bcopy.texi: 
+  copyright: ''
+  hash: 223523ff87be634108d2bf747ce5fbe13ad98f02904e0c098e5bbf60bf490330
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bsd_signal.texi: 
+  copyright: ''
+  hash: 00704a5cfe69597fb6d992575594832eb5947e8748892a721d7ffb17283aa90b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bzero.texi: 
+  copyright: ''
+  hash: c850be8ba6f681e50eb0a4ecc5820bf7e59d6ff4b4614588c060201ea49eb02e
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/ecvt.texi: 
+  copyright: ''
+  hash: e6504270c1681b6065cb639e57224dd1f372edfa0a59123f7d37173406a4f494
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/fcvt.texi: 
+  copyright: ''
+  hash: 430225c066876772ad6b84ef2fec19a1c57b804a039583810795399f63705b54
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/ftime.texi: 
+  copyright: ''
+  hash: 89c4865146e1c4cbe085be8b535cc4895846e0d7dc5d9463cd893f2a2611cc6b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/gcvt.texi: 
+  copyright: ''
+  hash: b58c5c40dd157cd45a90cc8116c094bc7467118421b812fa7603d85ef5f9a216
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/getcontext.texi: 
+  copyright: ''
+  hash: d4cff088a3b331819944b6dd371788d793587a91a2e300d45e194025ba3912f0
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/gethostbyaddr.texi: 
+  copyright: ''
+  hash: f62bfb5224b154effd3082e24c0573f955ccece64433a088bf72f82c97797593
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/gethostbyname.texi: 
+  copyright: ''
+  hash: 776bee42bc3143a75a126fc67510c85e732caff095d2618cf3dad9adfde2823e
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/getwd.texi: 
+  copyright: ''
+  hash: 0ea55e75af07fb3979e1a63cf6b6182eefbaea7dd5556d849894438bd700541e
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/h_errno.texi: 
+  copyright: ''
+  hash: 8ad4e6a01308643335b767c77d0f461f310eeeb59a03fd2b7057f5064c165625
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/index.texi: 
+  copyright: ''
+  hash: a5fca5d0786ced2a2f131a143afab2f5ee54b26b419e1be48f0139c208117de8
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/makecontext.texi: 
+  copyright: ''
+  hash: 1c5f3629d45da8aa766f448b81564a651ce98fcf39f5982732a39f9309b6760b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/mktemp.texi: 
+  copyright: ''
+  hash: 9eb524104f966e5d2bec99631296f09f0f359d79cd59f39feeb96ab11d99fc43
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/pthread_attr_getstackaddr.texi: 
+  copyright: ''
+  hash: 4d63b667e605bb58aa0663e91f62ede2047edc8b47c59feb336a73fcbfe9fc8a
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/pthread_attr_setstackaddr.texi: 
+  copyright: ''
+  hash: 6321fd00b2cdfca18d37e2da59c1746b49d208d9342fd98061524fae66a617fc
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/rindex.texi: 
+  copyright: ''
+  hash: 7d63a4ee6bc483b81e2d88abf9ecc5576e30f3c911e8a00ae2a6c79aeaa0f141
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/scalb.texi: 
+  copyright: ''
+  hash: 466c68b70229a839f6d041c664ca3b58a0cd8bbe7b878e3d1fbe68f1bf578b90
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/setcontext.texi: 
+  copyright: ''
+  hash: cf06f7a1492f1b932e521f9532748e9d6e93638ac687bda4eabebd45b8f14fda
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/swapcontext.texi: 
+  copyright: ''
+  hash: cbd3d366ba77cedb5d159f4ba6325e42dc851244f91750aac38dd037bbe32ebd
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/ualarm.texi: 
+  copyright: ''
+  hash: 2e8b19c1c34350007a55f47aec6a9c248d12f48f6b5b350f391b723c0b93392c
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/usleep.texi: 
+  copyright: ''
+  hash: f501d093118e406965e4dad35b035eee7346fec9ca5ee2a69867718e32d277fe
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/vfork.texi: 
+  copyright: ''
+  hash: 36148ae554abcc4b634cf714f4fd99d663a957814057cf580370d48944a22ff5
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/wcswcs.texi: 
+  copyright: ''
+  hash: c56c89e0ec1d7221fa616889acfc8be4eff6a18d830fb452fd62c2c59c115c32
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_CLR.texi: 
+  copyright: ''
+  hash: 4bdcc69109a06b2a638508e0e88920c7b9144c36295828451960cc3937dfa0ee
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_ISSET.texi: 
+  copyright: ''
+  hash: 1291518a4f9111d9e9475c542cc9c025c2150e824852f4f5d689b43aff16f0d1
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_SET.texi: 
+  copyright: ''
+  hash: 16e13795165195f4a4eacd97bb731c1cc32746395eda808584fe24e7bf2bf040
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_ZERO.texi: 
+  copyright: ''
+  hash: 867ed157d794920b1e6ef522bd1389065fa176a2745516597adc9d957c6d9c1f
+  license: ''
+  license_text: ''
+./doc/posix-functions/_Exit_C99.texi: 
+  copyright: ''
+  hash: f2971a822bc1838157a0c388c7112b4fb3512e7285ad00028a64ed2d126560ca
+  license: ''
+  license_text: ''
+./doc/posix-functions/_exit.texi: 
+  copyright: ''
+  hash: 617e14d15ded9c83e30656eee2982fbd7779fae2a9ebb85434e731e0448ea376
+  license: ''
+  license_text: ''
+./doc/posix-functions/_longjmp.texi: 
+  copyright: ''
+  hash: a4efad25c9a2aa0a0bb68cb8f8d93469f8dededd867d67616165bd2cac5b49ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/_setjmp.texi: 
+  copyright: ''
+  hash: fd4f68ff284ebc28908272e8ba70caa11cd851a607710395440093198b78da33
+  license: ''
+  license_text: ''
+./doc/posix-functions/_tolower.texi: 
+  copyright: ''
+  hash: af965647c2059fa305a0ea66425e067f6351285e242a80bfb79892d04af1efe2
+  license: ''
+  license_text: ''
+./doc/posix-functions/_toupper.texi: 
+  copyright: ''
+  hash: a60a13b20e2c158a30d313107892d5c7445595700c098bf69aa2e09a9932a27d
+  license: ''
+  license_text: ''
+./doc/posix-functions/a64l.texi: 
+  copyright: ''
+  hash: 9a48aa5a59249118c5ed8abb938d8c66ee17754847ba48b97d1bb34ebd736950
+  license: ''
+  license_text: ''
+./doc/posix-functions/abort.texi: 
+  copyright: ''
+  hash: f7017d331926830c3d0ee3ef193aaba54cc29e400d26730478300ed46c330278
+  license: ''
+  license_text: ''
+./doc/posix-functions/abs.texi: 
+  copyright: ''
+  hash: 8a6be2b119b4780391f1a407aef5ce6064c1f1c2fb42b2d9801e81446320a575
+  license: ''
+  license_text: ''
+./doc/posix-functions/accept.texi: 
+  copyright: ''
+  hash: 81b3c3211aee16330e76a0b86a339f4d352a02421066633fc356a3bff5365aec
+  license: ''
+  license_text: ''
+./doc/posix-functions/access.texi: 
+  copyright: ''
+  hash: 5c9fe6527a708f0f5699ddaa241a010325972adaaf5f6dbd5a05728a80ab7de0
+  license: ''
+  license_text: ''
+./doc/posix-functions/acos.texi: 
+  copyright: ''
+  hash: 150b61e719501d08ba13f5c263800804a50eefb71d3ce76b4c267c5cf01f297c
+  license: ''
+  license_text: ''
+./doc/posix-functions/acosf.texi: 
+  copyright: ''
+  hash: 9c84c5a1592f90ebe189dd0411e60fae1dc44b75d1b85235767ba29fdb461845
+  license: ''
+  license_text: ''
+./doc/posix-functions/acosh.texi: 
+  copyright: ''
+  hash: 194f7fc07993dbde9913bcdc50b1f595c79f07e3bcc99a22abd2c7f996be9615
+  license: ''
+  license_text: ''
+./doc/posix-functions/acoshf.texi: 
+  copyright: ''
+  hash: 16975c50d57f3c7d1e6e146f12dd4fb00edf62eb981cd7ca0086ba4637a6c4ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/acoshl.texi: 
+  copyright: ''
+  hash: c48a11ab5a5cbe1b315d4eba844ada7b360515d9dde684063df356b4e26ca7cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/acosl.texi: 
+  copyright: ''
+  hash: e7792ee050ec415ebb3afb0943ed08c5a1d8473e4a3965fc294a40f54508ff80
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_cancel.texi: 
+  copyright: ''
+  hash: b66233d7d61128517a0b7295d5acec1e95f4b39184ffb18d77fb8ef6b78fe623
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_error.texi: 
+  copyright: ''
+  hash: c373cc41047b3d210041a50ec055a65ffe89026e4fdf391bc4a45890df6fe34c
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_fsync.texi: 
+  copyright: ''
+  hash: e727b3d41bef54f2e5c2729130af2eb90f1010edc998c99bd06e02f466e47cdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_read.texi: 
+  copyright: ''
+  hash: 3d17ee9b9556d524d7d7f90a80fe07b3fcd01a23d833c1bd12815ded8abe1f0c
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_return.texi: 
+  copyright: ''
+  hash: 7991e57a0afdf4886417e32b5ff2fefca051625e020d2f99c6ba13a9ba0b93f6
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_suspend.texi: 
+  copyright: ''
+  hash: 6a7462cef0037932257eeb80998e3fe8d56418d33006cdfd729b36c2ee2442f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_write.texi: 
+  copyright: ''
+  hash: 1bcfee726b7f2c39b8ab864a98213996e3d6550bc91ffe27e68ca52cc42fef61
+  license: ''
+  license_text: ''
+./doc/posix-functions/alarm.texi: 
+  copyright: ''
+  hash: e2e54168615ce20a9bdb520184cdb94f8c87bc7afbe08bad9e3fa30228948609
+  license: ''
+  license_text: ''
+./doc/posix-functions/alphasort.texi: 
+  copyright: ''
+  hash: ef1142784d13d61cc5243b241b611436b5c41936674ff9c822f3bd5a525a541d
+  license: ''
+  license_text: ''
+./doc/posix-functions/asctime.texi: 
+  copyright: ''
+  hash: 721bc2ac5ac79045cbf87988e789bbab5132485fcfb82753f1341d315c4ac690
+  license: ''
+  license_text: ''
+./doc/posix-functions/asctime_r.texi: 
+  copyright: ''
+  hash: f9f95df6f49642a423caa4d7f15c2f032790dc10388af51c7661f87407f1f260
+  license: ''
+  license_text: ''
+./doc/posix-functions/asin.texi: 
+  copyright: ''
+  hash: b329f7976db842d1b576513d498164f1469586519242f55a3549f35d19fa5c8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinf.texi: 
+  copyright: ''
+  hash: dcc23541874407b670f6aaa98d3206d52d1dc7d332c61591c21b902c0c88175a
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinh.texi: 
+  copyright: ''
+  hash: ca1f10207ab80b34856d7d221917ab4e3ea8ec66daabfad193f620a43e0890fa
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinhf.texi: 
+  copyright: ''
+  hash: 57aa296f938827a7b7ccc0146a519d2daec080d5a4fd9faaeb912ba6b25fc5a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinhl.texi: 
+  copyright: ''
+  hash: 5334814ec20f8cb6f5b4fa90b116944da8b21130f87f170143da8c5e7d0ed90a
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinl.texi: 
+  copyright: ''
+  hash: f38089461ff6de8a2e20fe6faf14bb3536b88885f71406ec3678f9eeddb3b7e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/assert.texi: 
+  copyright: ''
+  hash: c57a5393ad06cfbf14e522f23e99c9f7c79ff4295814b68d038ebfc9914898a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan.texi: 
+  copyright: ''
+  hash: 4ff1b784715d8fccd274a4d46d6c0a2aaa69ba2d80d1b6551033c492cf599c98
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan2.texi: 
+  copyright: ''
+  hash: 7fdc70bbb2d4ec9e2f5cb007bc3c45617de137614d5d793d80e6a1c7d28fdcb9
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan2f.texi: 
+  copyright: ''
+  hash: e097eb1773d31fceff278a30c31286bc5600c4b73b1c152778dd1057036982d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan2l.texi: 
+  copyright: ''
+  hash: f4c5ca77363c312560873e8094350021d32b086379d14a23fb80a75147fbc45c
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanf.texi: 
+  copyright: ''
+  hash: ba3c7c2fc2662ad55ef268494c70149f99f16a3ef9f266870508454cd70e12a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanh.texi: 
+  copyright: ''
+  hash: 2ebfd2d4f0608e214eee8e76ea21fa027dd8496d685b81231e7e7e40bcd83689
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanhf.texi: 
+  copyright: ''
+  hash: 327fcf33922e20f61594c5d6bfb40a36d60661a50594ed1373cb04182f78ad1f
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanhl.texi: 
+  copyright: ''
+  hash: 7d84523ad7598e7932a11e3bdf4cfaa78a0e2844bfa8fef21ac0a9445a7d2461
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanl.texi: 
+  copyright: ''
+  hash: f9fdd043f291ef30c72d8b86bec63f81872c4e27c075eb44555e3519a942ce71
+  license: ''
+  license_text: ''
+./doc/posix-functions/atexit.texi: 
+  copyright: ''
+  hash: 07af21ce2184b60a35aff17a7de75adac18a1c23a31c8ef3966fe5a19b11f702
+  license: ''
+  license_text: ''
+./doc/posix-functions/atof.texi: 
+  copyright: ''
+  hash: cb598c82f7c415f1525ac2f407c7924853f15d7f63a42471e2e980e263aed83b
+  license: ''
+  license_text: ''
+./doc/posix-functions/atoi.texi: 
+  copyright: ''
+  hash: 42f659e4671bf747e181f5ef4b3f949ecb73cdd988944a3847e0b43b3af9a980
+  license: ''
+  license_text: ''
+./doc/posix-functions/atol.texi: 
+  copyright: ''
+  hash: 509a54f5251640192f8b2054f91f5c2d8acf54dbe7ed65ef8ef07747502402af
+  license: ''
+  license_text: ''
+./doc/posix-functions/atoll.texi: 
+  copyright: ''
+  hash: 8c9a6dc1b25278f7455c06e10fdccf05c49405df1d7116aca867349387b4d9f4
+  license: ''
+  license_text: ''
+./doc/posix-functions/basename.texi: 
+  copyright: ''
+  hash: 580230c22dd6f6cf1cf798e506e89d861118db39bc129e9f4257f55de4915995
+  license: ''
+  license_text: ''
+./doc/posix-functions/bind.texi: 
+  copyright: ''
+  hash: 075c556c5fdc1c0a9aa62c6cc8c9c94ab0a632352b43e43c36daf2682dafbcac
+  license: ''
+  license_text: ''
+./doc/posix-functions/bsearch.texi: 
+  copyright: ''
+  hash: a52cfb1ef7418d53462eb86d9b8153cf8589b501f912e649c765afe6ee090968
+  license: ''
+  license_text: ''
+./doc/posix-functions/btowc.texi: 
+  copyright: ''
+  hash: 86660f1a58cfde44606f43b85c540b2e731dca2e3387fb1a2486656615ba03e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/cabs.texi: 
+  copyright: ''
+  hash: 5a57e05203246e471ecb597d82a6df81a9a9324e7f9d41c4c07524134f1a742f
+  license: ''
+  license_text: ''
+./doc/posix-functions/cabsf.texi: 
+  copyright: ''
+  hash: 6206f6a5f20a0c6471551ea93ba80961472d58caa288e80acc5400a973546d49
+  license: ''
+  license_text: ''
+./doc/posix-functions/cabsl.texi: 
+  copyright: ''
+  hash: d6d3a323b448fe92e604e0121be72ea0fdf5c8876ab74c851cae2119804a23af
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacos.texi: 
+  copyright: ''
+  hash: 50eeefeabe4315e966bc544fdef355a310e83c8d3a199628c70c4333fb3659c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacosf.texi: 
+  copyright: ''
+  hash: 5574c38edf482540ee0ccabea8512ea3b254bc971aac84d48c0814a9161b71ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacosh.texi: 
+  copyright: ''
+  hash: d5668e987d967fa28f2fc14ee7b0b32cab5b7ce204f9724133c81b1ab9d0d38c
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacoshf.texi: 
+  copyright: ''
+  hash: 09c419d35ce19ad5101b87b37cb67507975fa38ad4e5558a78c3fb28897d45a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacoshl.texi: 
+  copyright: ''
+  hash: dc375481504fafa3bd2f505b3a24f913052b5d7cc8f6be09d322b23ecd72fe4f
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacosl.texi: 
+  copyright: ''
+  hash: bf1d59e5f937aa85da28fa866443894e6a227636f9c2075f81c13a6ff1f010fb
+  license: ''
+  license_text: ''
+./doc/posix-functions/calloc.texi: 
+  copyright: ''
+  hash: 8d5ecf56975464579d01f08920bee2441850c4e3e295ee55688c1669a6d871c3
+  license: ''
+  license_text: ''
+./doc/posix-functions/carg.texi: 
+  copyright: ''
+  hash: a82fbcbbd57f46c534a0b7c0498648ccb5d1b990a71c3f00b7f71d62ead996f1
+  license: ''
+  license_text: ''
+./doc/posix-functions/cargf.texi: 
+  copyright: ''
+  hash: 3400afd0256e66a6906d3ec9034955305cd3018876434b982005c1070ff4d9b1
+  license: ''
+  license_text: ''
+./doc/posix-functions/cargl.texi: 
+  copyright: ''
+  hash: 05ba0a0471f75afc9164bf93664b3e3169236684072ba2e750805ba7c441ce71
+  license: ''
+  license_text: ''
+./doc/posix-functions/casin.texi: 
+  copyright: ''
+  hash: 088c0bcfac54314d20520422d335a2cdd8fd8de1fa28f7a3574b049b64206d4c
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinf.texi: 
+  copyright: ''
+  hash: e1eda8eda74e50383462f6250d8797995b4bd9e33630a97b11068457b25079ad
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinh.texi: 
+  copyright: ''
+  hash: c92401d5821a5c2e8eae6e1ee0e4d0f404fed62fe860d51ca34276cbe5c67fdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinhf.texi: 
+  copyright: ''
+  hash: 955a15c8ef8373798497a79b8303d6ddc32b5a9ca5132389339e2934344d3d45
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinhl.texi: 
+  copyright: ''
+  hash: bc36d55b4db6c64eec973c48e5f4e01bf2524e0774b4ed7575a0962e6c752d60
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinl.texi: 
+  copyright: ''
+  hash: 2fdcbfd22461c6328f3a88b4a220c43c7e669f760b9247dc13924213b3608ca4
+  license: ''
+  license_text: ''
+./doc/posix-functions/catan.texi: 
+  copyright: ''
+  hash: 1900ac3c57172c7fcf543e7c2bdbbe29786d3e2de52b270034ba0d1043b03142
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanf.texi: 
+  copyright: ''
+  hash: 15a02393981d9d54e9343892174f0f4460b9a912a7e081154ee9549d2e7ffbf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanh.texi: 
+  copyright: ''
+  hash: 26f0ae150358d27a41ebd8a1ea04f9894175f61babb39a6b98f5d61599a9edd1
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanhf.texi: 
+  copyright: ''
+  hash: 4e75f5881fbb08aa54a2fff4134b3762fa0e12469c74932a38fd9e4207a3623a
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanhl.texi: 
+  copyright: ''
+  hash: 82d0c974c64a7cf16231948261385d9481c370fccd9c1505479c1570315fcd47
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanl.texi: 
+  copyright: ''
+  hash: 9e7691d069d4a4738e083cf638a18a533a7c823dcd5703365ab766d077e8744f
+  license: ''
+  license_text: ''
+./doc/posix-functions/catclose.texi: 
+  copyright: ''
+  hash: 01ecba8a97e46807f4fbb86f8f783a4aac58738c54a0100b32283f4d64f2307f
+  license: ''
+  license_text: ''
+./doc/posix-functions/catgets.texi: 
+  copyright: ''
+  hash: 85222dd53c8d87d37d1fc345d441786afb858cfbd76117d6ad374541305c418b
+  license: ''
+  license_text: ''
+./doc/posix-functions/catopen.texi: 
+  copyright: ''
+  hash: 6735bd2f884c12725cdae1f82a0d5e53c6773f3803e206c4d2fbb773e74834c2
+  license: ''
+  license_text: ''
+./doc/posix-functions/cbrt.texi: 
+  copyright: ''
+  hash: 67c9f016fcf80f7a7bb55861e8547c42548312e7370fc73728b5274032f976b6
+  license: ''
+  license_text: ''
+./doc/posix-functions/cbrtf.texi: 
+  copyright: ''
+  hash: 803d4a7e0a751e168dc18cd98d0f2c41155e2c26493040183d792e4024515762
+  license: ''
+  license_text: ''
+./doc/posix-functions/cbrtl.texi: 
+  copyright: ''
+  hash: 43de9ac1aa9e5cc0d8bd8702ede4d1aa16e6dcef3ad574242605a0c8bbec94cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccos.texi: 
+  copyright: ''
+  hash: 8fa59bae0d8f0c675e9ef48de43de0b4c10b0507a31cd2d81550f52d9712cff0
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccosf.texi: 
+  copyright: ''
+  hash: 2eaf3ff8e1a7a5cbb0233238640c6a1134ae3cc80acc412585115fd63358bf61
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccosh.texi: 
+  copyright: ''
+  hash: 8acf4ecf1abbec6b25ab0cc53f8a452f4ddb32bd61ff4a6ff94c16a5602ec2ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccoshf.texi: 
+  copyright: ''
+  hash: f30beb9e547118702e7f30525f258e4cf50a5195e03fb66554802fe0a580f7c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccoshl.texi: 
+  copyright: ''
+  hash: eb9e28e48f625d3e2eb5e13e96cbbe361b852162d3d90ba26a5837e1889af495
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccosl.texi: 
+  copyright: ''
+  hash: 3d9df8f9f71f802e5d84323b16351e60dbabdbb3cd0abd9bc862b3e291439694
+  license: ''
+  license_text: ''
+./doc/posix-functions/ceil.texi: 
+  copyright: ''
+  hash: cf8b5752573720cc25bec831c538c1394b14f3b1460f5cc3a2e16ac7016e0497
+  license: ''
+  license_text: ''
+./doc/posix-functions/ceilf.texi: 
+  copyright: ''
+  hash: e13c58fd23e0ed41d99a7bd4d0e8d7849bd2da76d7ce095fdaa587ccb3839d6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/ceill.texi: 
+  copyright: ''
+  hash: c9b79f28ab9283d893f155d1f25c8e75cb360e0d04af0b245bf3e1d009217a5a
+  license: ''
+  license_text: ''
+./doc/posix-functions/cexp.texi: 
+  copyright: ''
+  hash: d3f7892298fdf378f2828a6b51fe4805c92d3a2a217a3e38d4bed5f7c4cc3da4
+  license: ''
+  license_text: ''
+./doc/posix-functions/cexpf.texi: 
+  copyright: ''
+  hash: 09f585a4aba129816d1cb526a14f28ff83ca3fa54016e7bf8b8c08494c2db323
+  license: ''
+  license_text: ''
+./doc/posix-functions/cexpl.texi: 
+  copyright: ''
+  hash: 883e3b88e16b87337802472c75c00fa5b35462c0b8573f7ef558e9a4c0e4faf9
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfgetispeed.texi: 
+  copyright: ''
+  hash: 14c4e6e62c223931253fb497e69a93dad3a1c6a51fca15f3e63337795107bea5
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfgetospeed.texi: 
+  copyright: ''
+  hash: c2519db2b4f519fd3f66640aabd8e497ba1ce5892d23c916a38576bbb580361e
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfsetispeed.texi: 
+  copyright: ''
+  hash: 3b3d21a8f207d8e41d3c912c4a0083264a6fa411c2da6c3f604d7050dee0fed8
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfsetospeed.texi: 
+  copyright: ''
+  hash: c20afc895be661df0733a8dc75794fa7293263468d39678a301ff494d2c87109
+  license: ''
+  license_text: ''
+./doc/posix-functions/chdir.texi: 
+  copyright: ''
+  hash: 53aded6f64b0941116e51303b73ac8e6e9278e3f201af7c6ad326820b5e2e3f6
+  license: ''
+  license_text: ''
+./doc/posix-functions/chmod.texi: 
+  copyright: ''
+  hash: 3a349653c163fa2e3564b1e31ed14ab490934bba7fd3d0096f0d7b1efded7348
+  license: ''
+  license_text: ''
+./doc/posix-functions/chown.texi: 
+  copyright: ''
+  hash: fb9f116f87fc01e4ef30e188f7c9360ac6f517f9eb1370ae2491f5246ed6fef0
+  license: ''
+  license_text: ''
+./doc/posix-functions/cimag.texi: 
+  copyright: ''
+  hash: fd22dd26750766a15751078eb653fdc2ddde0ce0fbd929b258c9fe161e04170e
+  license: ''
+  license_text: ''
+./doc/posix-functions/cimagf.texi: 
+  copyright: ''
+  hash: 76a569fc520aa0eb83fadc9a9e735b2a0a5f3f6daeeeaab322bac1b697554888
+  license: ''
+  license_text: ''
+./doc/posix-functions/cimagl.texi: 
+  copyright: ''
+  hash: c881d444238f5203c0d3b0087372957be2f909c63037c1d14ee0a916707a9c6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/clearerr.texi: 
+  copyright: ''
+  hash: 5fed5a649725e8940e5adb12d4fbf3f5af27aade47daa719911b155f7421149d
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock.texi: 
+  copyright: ''
+  hash: 71e1ceb2d0f5f512ab4a9a0fb2ce9e895457e1b6c7425130bf8ba7896980978a
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_getcpuclockid.texi: 
+  copyright: ''
+  hash: e72acf21acf80e70335aa212455e60bf1f9815caa0e8d1bf2d2d192c9e337803
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_getres.texi: 
+  copyright: ''
+  hash: bf955ddbae540035a89e35302304365a2a775aabb9ae7fccbc9c66948de3619e
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_gettime.texi: 
+  copyright: ''
+  hash: ac68c2fc02227f916df88dfa46f6b2dfbe111860e20dfa605934d149550ef2e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_nanosleep.texi: 
+  copyright: ''
+  hash: 59ca36060acae6a447a4111243c638108a3a98fcf1b53dd7681aaf989698df2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_settime.texi: 
+  copyright: ''
+  hash: 297b8d0066f505aa8c21939c73612aaf536cf0e4f977f1edbb2c4f242d2c5a3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/clog.texi: 
+  copyright: ''
+  hash: 47702f69c3982416c0512a7bd4025df239fefbe4a2f1707cd4745b9fdb500379
+  license: ''
+  license_text: ''
+./doc/posix-functions/clogf.texi: 
+  copyright: ''
+  hash: 2e2bd1295966040f14759ef405f2038a279e164148b402035e9f0633e8e9f49e
+  license: ''
+  license_text: ''
+./doc/posix-functions/clogl.texi: 
+  copyright: ''
+  hash: d40dfa8fa5b96d52d881955e61b8f0cedd381b1e8ca3d7b5ab72c35fb5cdaf55
+  license: ''
+  license_text: ''
+./doc/posix-functions/close.texi: 
+  copyright: ''
+  hash: cdb920f0119a8df783e378bc05571ee2ca4308b3f841b50ca48bd1a3a592ecdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/closedir.texi: 
+  copyright: ''
+  hash: 7e1885ff9368f59c6f2b55a3f04b6ff7a6aa6b2ca796b91c3c88c5c8ec50eaf7
+  license: ''
+  license_text: ''
+./doc/posix-functions/closelog.texi: 
+  copyright: ''
+  hash: 30ca3ffe1cf65500c3bcc3580781dcc34252bea949f3270ce75ad084a281b055
+  license: ''
+  license_text: ''
+./doc/posix-functions/confstr.texi: 
+  copyright: ''
+  hash: 2ce3fc57057be6a24091d7ea399f22cba994b4346cef4ad9e0905d51edb913bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/conj.texi: 
+  copyright: ''
+  hash: 0eb7d2bbdb99c6fd78b92c2b7914b2877cf9e69c4ba5b330f498ef280b11e362
+  license: ''
+  license_text: ''
+./doc/posix-functions/conjf.texi: 
+  copyright: ''
+  hash: 11074f4091f08fd28a9c95b2c7dba4bd66f6fffe7db41e961cfc565ec2d5e960
+  license: ''
+  license_text: ''
+./doc/posix-functions/conjl.texi: 
+  copyright: ''
+  hash: 2c89f05a72f75624bbe8a6c3541f8d3907e91507537a6a5fa75fdceab2a35963
+  license: ''
+  license_text: ''
+./doc/posix-functions/connect.texi: 
+  copyright: ''
+  hash: 122c3713f1fc98b41082aeaf30a2698ca66f35c223d70b97b76ef1b622c58db0
+  license: ''
+  license_text: ''
+./doc/posix-functions/copysign.texi: 
+  copyright: ''
+  hash: 93dede54d4a068e03c2a790b968101fcce78809d3aa2353f8cf98fda60d7c269
+  license: ''
+  license_text: ''
+./doc/posix-functions/copysignf.texi: 
+  copyright: ''
+  hash: 936705fb4bcc082135aa1afc2248b7cfc45cf37f22d002866acaa14c654baaff
+  license: ''
+  license_text: ''
+./doc/posix-functions/copysignl.texi: 
+  copyright: ''
+  hash: 5540cb65bb917d842bc6d0e81dcce0f16f2d1a6d0a8bb9add553a8c9559fabe7
+  license: ''
+  license_text: ''
+./doc/posix-functions/cos.texi: 
+  copyright: ''
+  hash: 80045abb71f4e33aea591a9a33a90bef9af7125bbb532ff6e163c7c900307481
+  license: ''
+  license_text: ''
+./doc/posix-functions/cosf.texi: 
+  copyright: ''
+  hash: 6a11bab0ddf9d06df138b7698cf452d382efa0ac3c383bf36c1b2932b9e8f892
+  license: ''
+  license_text: ''
+./doc/posix-functions/cosh.texi: 
+  copyright: ''
+  hash: dcd6e2553d7fcd67f7d7ac4b296e0b86c27791599a33b0f849b7b6b9ae783102
+  license: ''
+  license_text: ''
+./doc/posix-functions/coshf.texi: 
+  copyright: ''
+  hash: ac511adc238f0fc43aee913691ce5b4d5758b02ba0edc1f377f07bc2b24b427d
+  license: ''
+  license_text: ''
+./doc/posix-functions/coshl.texi: 
+  copyright: ''
+  hash: 10b1339882714ecb27f3595789ff7e57531e1394b8047b6a66d9784f909f0a64
+  license: ''
+  license_text: ''
+./doc/posix-functions/cosl.texi: 
+  copyright: ''
+  hash: 29fb7a5e98a754431e7f3a277096efe178611cc623d9e14b592014d367fd3c58
+  license: ''
+  license_text: ''
+./doc/posix-functions/cpow.texi: 
+  copyright: ''
+  hash: c196fd3e6b5e82b2df412700bd551e90fdcb006566259e526e52d5066a7f136a
+  license: ''
+  license_text: ''
+./doc/posix-functions/cpowf.texi: 
+  copyright: ''
+  hash: 20082274ab3053bb9211077523ac71a8564395068d111a99a4471e5bc315270a
+  license: ''
+  license_text: ''
+./doc/posix-functions/cpowl.texi: 
+  copyright: ''
+  hash: 0aa484e5a20be1692c9b64d6039dd16438e77e2176ec0f54625f67c854b498b2
+  license: ''
+  license_text: ''
+./doc/posix-functions/cproj.texi: 
+  copyright: ''
+  hash: 4f7a4e43573aea662d11b57f91b99a7039874efc4c3cc6de132223a6dc634f3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/cprojf.texi: 
+  copyright: ''
+  hash: b964a10e871a0bf9d13731339a259aa619636a7a3f618a002b287ff1ab07e402
+  license: ''
+  license_text: ''
+./doc/posix-functions/cprojl.texi: 
+  copyright: ''
+  hash: 7f382c38eb94bcc1fa720f6c78e14a0b20186f2f595d2c3894535797f3e52942
+  license: ''
+  license_text: ''
+./doc/posix-functions/creal.texi: 
+  copyright: ''
+  hash: 8079a8295b42f1edf95f7aeb2f5be551b970419bfdf820bbce90b95c10754e45
+  license: ''
+  license_text: ''
+./doc/posix-functions/crealf.texi: 
+  copyright: ''
+  hash: f25ddd8b33eb1c125e29e84ae98346e7e5bd73fe20ed9b18090e2080ef09f851
+  license: ''
+  license_text: ''
+./doc/posix-functions/creall.texi: 
+  copyright: ''
+  hash: 77e4a42b2d8f9df278e80f0af88cc71dd02401f1ecbddcca69cb825cab14f2cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/creat.texi: 
+  copyright: ''
+  hash: d7c959e3c46a579a8bdeecfc246074e2c424686307d26c1a2210fb8317cb37c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/crypt.texi: 
+  copyright: ''
+  hash: 624eda7840abf45802a77fc455c11da3a559654831f98db3d3f531ed87f2d5b8
+  license: ''
+  license_text: ''
+./doc/posix-functions/csin.texi: 
+  copyright: ''
+  hash: a3921e459decb8485fa5b129f122cef9545da177d143a848426285bbaadeb33c
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinf.texi: 
+  copyright: ''
+  hash: 7d43a6e3c333aea75c123600828d0b90aa74bbded515c37a4db2b85ee38c126f
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinh.texi: 
+  copyright: ''
+  hash: c1ec8076f91041ba9035541b53fa4ea34899663273fca8b5a1aa7bf0cb69a8a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinhf.texi: 
+  copyright: ''
+  hash: 0e63f7261e62673ea3b38947c2a39fd9db130b5f5f6a331868887d540e142eb4
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinhl.texi: 
+  copyright: ''
+  hash: 6fbfd0066984d87f0912c9ecdb72a51d186bc09e5c6ba6ae1e28384af1cf5d31
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinl.texi: 
+  copyright: ''
+  hash: b007c3e190ebac0645cd770b5c59156ce9fefdd69d6efe8c4c63fb31f755e647
+  license: ''
+  license_text: ''
+./doc/posix-functions/csqrt.texi: 
+  copyright: ''
+  hash: 674aaf134efc75885dbf3a74d1b636639cb36e0a4184887474a94ebf2c2117a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/csqrtf.texi: 
+  copyright: ''
+  hash: dee3f07a84edad6fe1c9fc858ddddbfde40e931e0eba9cd6ed4f129ddccb0c32
+  license: ''
+  license_text: ''
+./doc/posix-functions/csqrtl.texi: 
+  copyright: ''
+  hash: 6e5c675bdaa9c6de16b1437dee1a4578708ca2d94cad7ab22385916abcbf83e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctan.texi: 
+  copyright: ''
+  hash: b3788601cf4d71a0cd3e0f83b165f9556069a213808938b81f8762424ac4cde1
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanf.texi: 
+  copyright: ''
+  hash: c6ade3600b8cb0d385042d424923b9aea79b8679bd9eb4572f88dbb02c6f7a90
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanh.texi: 
+  copyright: ''
+  hash: bd520abfb5efe1fb710b0517325d5182e0545c9689b91778748c9412721b3620
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanhf.texi: 
+  copyright: ''
+  hash: 3720fbb944a55cd90c0a1f0d77340b8cad30d78fe539987b1c69bd7413f11f76
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanhl.texi: 
+  copyright: ''
+  hash: e113c1cf9ab21c84fa4c81d59985e973897534cc9e6665f558871d0cf03e73c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanl.texi: 
+  copyright: ''
+  hash: c74871a8ab6020712b65b9fd9c94c489711ef5a70448492128fa827232d23241
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctermid.texi: 
+  copyright: ''
+  hash: 998eb7b4802db4cd5694a08d47f1fa146468dabeb663940c9a4cee7ea3eaf42b
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctime.texi: 
+  copyright: ''
+  hash: 876f9405ee65afc513f57061e6dfec1fb9574bf891461ba945785c568bfcd824
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctime_r.texi: 
+  copyright: ''
+  hash: f61cab990b7729cbfa70832fec62258bdb1525389b98ce8812758d43f48f7209
+  license: ''
+  license_text: ''
+./doc/posix-functions/daylight.texi: 
+  copyright: ''
+  hash: 8d3098ea9ad8b8ef46605bc072c9331cbdea31642aadd1cba1c0b77dd2e26d05
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_clearerr.texi: 
+  copyright: ''
+  hash: 404719a3ea24ab08a483c2d52fbc4ce115c9f62356a612c8d5b37c6d2f88d935
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_close.texi: 
+  copyright: ''
+  hash: 6548f4878fe9cc6e0bc32b937fe1a6f124dc133cdccea8a9d5f35af09af63c2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_delete.texi: 
+  copyright: ''
+  hash: 6fdb38f85cb8686811b1f8d621bce24ae42e425900e214548bdefa3cc6580296
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_error.texi: 
+  copyright: ''
+  hash: ba9684e442829d2cd936d0401e6c75a9ae5c98c09272748d6d193d4e8bdbccd6
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_fetch.texi: 
+  copyright: ''
+  hash: 6d17b86b8c0819900bd8c5d9fe44d29e1107aae2add1a3e9439adaadab897c21
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_firstkey.texi: 
+  copyright: ''
+  hash: 7c66943240b0604d0884c80187d2009341aa20acb5992586bce538c60250e1c1
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_nextkey.texi: 
+  copyright: ''
+  hash: 907dd9d709bd00b11a2c1817ccf8cb6a99fa421dca171b04f45cb1fedebe38e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_open.texi: 
+  copyright: ''
+  hash: 1cc347d0c6a0be9a8e6d9dec70c02c6d3dedab0fb0d7fa81da905fc8acb78849
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_store.texi: 
+  copyright: ''
+  hash: 9efc0b89e379c522dda1685b5f77dc8fe675d5322d86a80b109e1192448946e9
+  license: ''
+  license_text: ''
+./doc/posix-functions/difftime.texi: 
+  copyright: ''
+  hash: 84a0956c4c5dcddc035048c947ef6629a6e66095464de78530e27871000c15bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/dirfd.texi: 
+  copyright: ''
+  hash: 2bd7841ff2afa0a70d616b84e1906017373f51418bdd86ca173a04dff6f34705
+  license: ''
+  license_text: ''
+./doc/posix-functions/dirname.texi: 
+  copyright: ''
+  hash: f40d32a5b09a2d3082bd21b2dbefb29e49487fff0e58e65aebf7684001a2cccc
+  license: ''
+  license_text: ''
+./doc/posix-functions/div.texi: 
+  copyright: ''
+  hash: 8abae0791655f93d6f27ab614e8aab52311af2f48ace39be233641eb023bbb54
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlclose.texi: 
+  copyright: ''
+  hash: b7ad68ff89c49b30e1120badaca083df7a0212c4cd958724d2ea503699839ec8
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlerror.texi: 
+  copyright: ''
+  hash: 18aa8e729144b1c85ed453e1836cfdcb36a51e27948f9be843a8fc5052273686
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlopen.texi: 
+  copyright: ''
+  hash: 4c4b9aafdfdb94ad9522183dcc6e15ea6612ec8878d2cddc263b0c8fd1e525b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlsym.texi: 
+  copyright: ''
+  hash: dd6299cfe6e25b4ebdd8c529c1830ec00c5aabce68fe16f83a0fad14d0266a6e
+  license: ''
+  license_text: ''
+./doc/posix-functions/dprintf.texi: 
+  copyright: ''
+  hash: 4751b081c02483b01d9b3b4340023c6f72f038c6686acaf54e22c02946547333
+  license: ''
+  license_text: ''
+./doc/posix-functions/drand48.texi: 
+  copyright: ''
+  hash: a1f797c389c3e5ec0aa1eb2c68a1c83aed789fe57d9bd614926f905fcd89e020
+  license: ''
+  license_text: ''
+./doc/posix-functions/dup.texi: 
+  copyright: ''
+  hash: b84bc5f93c7ef614338e0acaea061c144c4db4bef66e45640957a5f7d68ac292
+  license: ''
+  license_text: ''
+./doc/posix-functions/dup2.texi: 
+  copyright: ''
+  hash: 6828543830165fe771f033b863d748a69fe320dbeca8ddff166cb1cf61f4f12e
+  license: ''
+  license_text: ''
+./doc/posix-functions/duplocale.texi: 
+  copyright: ''
+  hash: 710286021da197a56a6ff757ea4b40eb32315d8cdd124b218fde41b477292cce
+  license: ''
+  license_text: ''
+./doc/posix-functions/encrypt.texi: 
+  copyright: ''
+  hash: ffff0c779c125a709762efbe2bbaf866da55f9ae8393e65bc5091fc7fa271658
+  license: ''
+  license_text: ''
+./doc/posix-functions/endgrent.texi: 
+  copyright: ''
+  hash: 4e04d52da59c5b86120124d10eaead06c5d849601c0086f6f9c834b8b2e49c62
+  license: ''
+  license_text: ''
+./doc/posix-functions/endhostent.texi: 
+  copyright: ''
+  hash: d4743bbdeecf932ce5f921a9697664b6e546fdc0ff5c1d0ce2bef461801ad3fe
+  license: ''
+  license_text: ''
+./doc/posix-functions/endnetent.texi: 
+  copyright: ''
+  hash: 35901299f3d5b96b44b5eb948d7487f22459c03c4727060ee906472a4e312adc
+  license: ''
+  license_text: ''
+./doc/posix-functions/endprotoent.texi: 
+  copyright: ''
+  hash: 9c3786c66c5d21c3c66fd8549c52c7e49d0d62e009874b2b7a793b928e1af183
+  license: ''
+  license_text: ''
+./doc/posix-functions/endpwent.texi: 
+  copyright: ''
+  hash: af0fe91d02a2753ca91f54afaf844c3707ced1d9be084ccac9e8cefb9ebe1b31
+  license: ''
+  license_text: ''
+./doc/posix-functions/endservent.texi: 
+  copyright: ''
+  hash: c85845c73056fb697ef3ae552c71cfdaccae39eb7773d0cc29e3bcd1e79c0ce2
+  license: ''
+  license_text: ''
+./doc/posix-functions/endutxent.texi: 
+  copyright: ''
+  hash: bb8a45f95293fa56ec75b28457798dd1b02c7b3182b15f58c4248cf7481d9e58
+  license: ''
+  license_text: ''
+./doc/posix-functions/environ.texi: 
+  copyright: ''
+  hash: e747cca924afc1250dbc590720b67ba9544e2a9cb2f94e82589b313e6a879de5
+  license: ''
+  license_text: ''
+./doc/posix-functions/erand48.texi: 
+  copyright: ''
+  hash: 9fc0f6ee76cd0df9c17bdfe1476a1988701d217815345d2e0c0b6c16a2f896ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/erf.texi: 
+  copyright: ''
+  hash: 6a0bddafde57341e89aedc7b0c94be4d959ef1d17041a2ad94edd14eee8dd3aa
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfc.texi: 
+  copyright: ''
+  hash: f7444fc988cc99e0fd5446db910fd6d7afcfa0c6d4af7f69a14279b5ab8764f7
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfcf.texi: 
+  copyright: ''
+  hash: c7f88297596ece737d50e1ad13f8c91e74a1b527820e1af073e08acf85db5ae0
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfcl.texi: 
+  copyright: ''
+  hash: 8ff05f100bfca3045397b764329527a06a324242fe3e7fb12e7ad7017e0a6415
+  license: ''
+  license_text: ''
+./doc/posix-functions/erff.texi: 
+  copyright: ''
+  hash: 94bddf50aa84764165cf1b5515a0d4822d31a78191c2fc058ad8dd11d6b87538
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfl.texi: 
+  copyright: ''
+  hash: b9cea5650518bc063a5f516d263389c127b354ee95a6a244f63c139ee4aff932
+  license: ''
+  license_text: ''
+./doc/posix-functions/errno.texi: 
+  copyright: ''
+  hash: c0bff9e535b487ea1482ae7839b2e0beb289bcec626771844faf76f21a3b2333
+  license: ''
+  license_text: ''
+./doc/posix-functions/execl.texi: 
+  copyright: ''
+  hash: c6c83a0078524e270da3abf8c26bcc630b35e6fb919dfe39752ea97d562d72f8
+  license: ''
+  license_text: ''
+./doc/posix-functions/execle.texi: 
+  copyright: ''
+  hash: 07664367ccaccf55659cf34f6b7129c7f3f581aa26ce635c1ab013412e05ae45
+  license: ''
+  license_text: ''
+./doc/posix-functions/execlp.texi: 
+  copyright: ''
+  hash: ab00274de528810efb9aceee886685a863f27112315256f0480c1a4d8843371d
+  license: ''
+  license_text: ''
+./doc/posix-functions/execv.texi: 
+  copyright: ''
+  hash: e883433082ab1ac2be9bdf46989b074da82660c56db5ea58500bc26598ac89f1
+  license: ''
+  license_text: ''
+./doc/posix-functions/execve.texi: 
+  copyright: ''
+  hash: 24209843e836bcdf1137fd665736c2818b4315e9b506a39bb714d91e998bafcd
+  license: ''
+  license_text: ''
+./doc/posix-functions/execvp.texi: 
+  copyright: ''
+  hash: 289494b8493d01c6d99eab7016f77c2ab1571db2ceee8a9b02c5c901d7a056fc
+  license: ''
+  license_text: ''
+./doc/posix-functions/exit.texi: 
+  copyright: ''
+  hash: bad61c12c0e3e5dfabfd90405e72e5dd828138ca2d2e5261ade25edfd7c97bc8
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp.texi: 
+  copyright: ''
+  hash: a1022846973af4a29037736d84104cc89ce1379a01df12b468890ef0474e0419
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp2.texi: 
+  copyright: ''
+  hash: 8c017fc45146c3df6aea1366497a258bc3a4db0644f0bef6bacda5f4e4833266
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp2f.texi: 
+  copyright: ''
+  hash: 6f2524530958b637f54013d885de946b49bc5b79b6d465436e1e03dcf1952f6c
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp2l.texi: 
+  copyright: ''
+  hash: 7ef33c7a723390ab01411dcd5c5441a11362046a9e8b31ef68bbe4a4dc06a7a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/expf.texi: 
+  copyright: ''
+  hash: 0b478085209dd93a9db5bbce385735bd59753036228a6dc21cdc955d74d5fcd7
+  license: ''
+  license_text: ''
+./doc/posix-functions/expl.texi: 
+  copyright: ''
+  hash: 72311a84d89f58e68fbec7f6fc2c9b9920c27de99832dc73a3424377bf28db52
+  license: ''
+  license_text: ''
+./doc/posix-functions/expm1.texi: 
+  copyright: ''
+  hash: 0a4624e622e7d4e617219004a6095aaa748dd6ec2dcaaf7133518448b81be4a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/expm1f.texi: 
+  copyright: ''
+  hash: 6602aa751036b237ea9fc139d16405892a01d4d4738974a93671e2b24ece70a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/expm1l.texi: 
+  copyright: ''
+  hash: 0107f0369e91579efd87610be8b2b738b16b1b95378d3588ec286cde144d0c42
+  license: ''
+  license_text: ''
+./doc/posix-functions/fabs.texi: 
+  copyright: ''
+  hash: c612c588a2cfffd96be4f47419e7ef786861c356100cc27616f21cbe5723eccb
+  license: ''
+  license_text: ''
+./doc/posix-functions/fabsf.texi: 
+  copyright: ''
+  hash: ea51158ca0b73c832f1bcbede534dabd7771f99529353e24ca24569a90965703
+  license: ''
+  license_text: ''
+./doc/posix-functions/fabsl.texi: 
+  copyright: ''
+  hash: d651616c3fb582db805e35c045e9bb8d0f0529f3aef35e96ff269fff414acae7
+  license: ''
+  license_text: ''
+./doc/posix-functions/faccessat.texi: 
+  copyright: ''
+  hash: 0a8c43215d15ff69db0e57a500af9439c420b21c2ee4cc491931e601edb3f308
+  license: ''
+  license_text: ''
+./doc/posix-functions/fattach.texi: 
+  copyright: ''
+  hash: 2335deee0d43aa46c1c3503f7feae75c7c142c535296827a8e6e183b18a7e756
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchdir.texi: 
+  copyright: ''
+  hash: 8f0f8b4111a6a4dc2945e10940df05e54955ad67de944cb7c9fc3fd965ddcb61
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchmod.texi: 
+  copyright: ''
+  hash: 9bfcb2e4f0142676a15392cad61a13121966364ba601e3e45ba4df6a4fddb283
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchmodat.texi: 
+  copyright: ''
+  hash: 791d16ea744eadb81ceffa282aeedc529ee1432f726b782ba507c62a330259d1
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchown.texi: 
+  copyright: ''
+  hash: 3f8e50fb78c4ca01b3c9d74c32d562d9309038b0aaf2a7ee22ddea159be69c5b
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchownat.texi: 
+  copyright: ''
+  hash: e17fc8eff75380638ff191900612065d2fc77e8926e59ca860c6faad743650ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/fclose.texi: 
+  copyright: ''
+  hash: b68bb8ad4e081e12205b3f7dcfa105c005cbe8fdb312880af5d87be355525e9f
+  license: ''
+  license_text: ''
+./doc/posix-functions/fcntl.texi: 
+  copyright: ''
+  hash: 17f3caf36d2c2f9a664acd0c737de34d5a64c6e6bdc186f325ca6867222adccf
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdatasync.texi: 
+  copyright: ''
+  hash: 57f7709061810bd5896998adeb9f3d2fe72380a7f2dc09bded617489700ef2f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdetach.texi: 
+  copyright: ''
+  hash: fd54a027b23acd7d79f8f796360b31949be6d6d99d77a21ee56cb0aefd2f4208
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdim.texi: 
+  copyright: ''
+  hash: 387bce6ebad92e5ef48ffe946c26a2a42310baa9c69a47d7ff020f61b698899a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdimf.texi: 
+  copyright: ''
+  hash: 04e0f917203a56effba8c34a4541f6bc2a107f6d09b70e51af95a6473320fa02
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdiml.texi: 
+  copyright: ''
+  hash: e4ab81e086d8a6b6633e26501eb964e8c5f9de428edd84b106ce690f7c8637c3
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdopen.texi: 
+  copyright: ''
+  hash: e763566373aec112a9e84b961c32faf690c517c3db12d6eb5a6f839f42b765d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdopendir.texi: 
+  copyright: ''
+  hash: 77c4e1f653c030b8389397c264b670095f530d9a4f131679c1db06dff8143cca
+  license: ''
+  license_text: ''
+./doc/posix-functions/feclearexcept.texi: 
+  copyright: ''
+  hash: b982ba6aeaedabf3354982f022c731c771f3cd82f055f6f59d666a8f1a57bcaf
+  license: ''
+  license_text: ''
+./doc/posix-functions/fegetenv.texi: 
+  copyright: ''
+  hash: 0899bacdfa0523a69893c4968ba4889363c79409c45e55c3ea8782351e3f9e16
+  license: ''
+  license_text: ''
+./doc/posix-functions/fegetexceptflag.texi: 
+  copyright: ''
+  hash: 34c0d1502982592c37c0e902a639dbc3ae01546f3c93ce70ca9f8c7d17e38156
+  license: ''
+  license_text: ''
+./doc/posix-functions/fegetround.texi: 
+  copyright: ''
+  hash: bcd175725d7173502ca62d3e7f40a23565add2e0d8a50f5e6b31d622a2f7c834
+  license: ''
+  license_text: ''
+./doc/posix-functions/feholdexcept.texi: 
+  copyright: ''
+  hash: 6a8976e6ff7285ec392afbd6d41c13756842fb99c799645ae85ce5c536aa1757
+  license: ''
+  license_text: ''
+./doc/posix-functions/feof.texi: 
+  copyright: ''
+  hash: 20663c1a2fa66678f13880eea8ab1c99980cdef004bdb5e2cb5f182a0654cbe1
+  license: ''
+  license_text: ''
+./doc/posix-functions/feraiseexcept.texi: 
+  copyright: ''
+  hash: 752c504ac8b81d058b11051349d0b2e4291fcc1c488ea6f29fdd111c97ce4ffb
+  license: ''
+  license_text: ''
+./doc/posix-functions/ferror.texi: 
+  copyright: ''
+  hash: 2cc317e89975e266a5d297a47d3cb2a9a147d5b82f9199535182f440b9008a81
+  license: ''
+  license_text: ''
+./doc/posix-functions/fesetenv.texi: 
+  copyright: ''
+  hash: 3d2f6a1d8b2e5939ba3ebdde32deb42cf59eb78c27ffbc6387f7c4e149d35097
+  license: ''
+  license_text: ''
+./doc/posix-functions/fesetexceptflag.texi: 
+  copyright: ''
+  hash: 97552023ee289a5ff8e84e60b3520a19fb0f9a4874de3c470657f10b0c6a8068
+  license: ''
+  license_text: ''
+./doc/posix-functions/fesetround.texi: 
+  copyright: ''
+  hash: 39499b13852e55ef8009ae3db5a7aebad2afc986a40f26b7c48c151b9e86fc24
+  license: ''
+  license_text: ''
+./doc/posix-functions/fetestexcept.texi: 
+  copyright: ''
+  hash: 4eac9c618c477726e112f8b26dbb7d2d4397be157969de91943c43742a390550
+  license: ''
+  license_text: ''
+./doc/posix-functions/feupdateenv.texi: 
+  copyright: ''
+  hash: 8b153cba36a94a6c2b66f6e421ecd4e2b9a46036392e2210785970e6ab34b8e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/fexecve.texi: 
+  copyright: ''
+  hash: df29f2ca7c01d154444462d530e082f939e3151a011ef347587deb8f25a3690d
+  license: ''
+  license_text: ''
+./doc/posix-functions/fflush.texi: 
+  copyright: ''
+  hash: 9bcd03018a5e64e321e5da36fc16b1ac1c3247e6e8ffda3d7339b1d1e9fe8294
+  license: ''
+  license_text: ''
+./doc/posix-functions/ffs.texi: 
+  copyright: ''
+  hash: 21aa35d4426a78734a84676cb0d454c75acee469c9ffd615a5fbb9de9daa1a42
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetc.texi: 
+  copyright: ''
+  hash: e7c425a41e66d08ffac2b8d0222bf45baf73e2f9459b8795691411c4b5357659
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetpos.texi: 
+  copyright: ''
+  hash: 275859ced43d62e5be3273f8c7c7fa9442de1b8d1287714892e23f0087f467f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgets.texi: 
+  copyright: ''
+  hash: 71414045cbbe67d9efb6b83bce606a8de25b97f9e08980d09d10444db31a02a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetwc.texi: 
+  copyright: ''
+  hash: a603a66a1e031dd3727b3b379a537e32014c54e932b01846b26200af8510ea94
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetws.texi: 
+  copyright: ''
+  hash: e396ca7cb9c9423e66bacf0c7e4aa69ff7b814a1bd5ebb0e6810220b55a68bb8
+  license: ''
+  license_text: ''
+./doc/posix-functions/fileno.texi: 
+  copyright: ''
+  hash: abc9e47b66277f9ba067894c61eef516a4cd6da18b0bd79671f5117ad7a9e37b
+  license: ''
+  license_text: ''
+./doc/posix-functions/flockfile.texi: 
+  copyright: ''
+  hash: ef8a277424e6a1aba4db3cfc8341fb0ce9acf254adb5691c66986e3462484cb4
+  license: ''
+  license_text: ''
+./doc/posix-functions/floor.texi: 
+  copyright: ''
+  hash: b07bf778811aac7f3e96a3af59c18dec2a8944c6a6b30082ff2eb0f6eebcd70d
+  license: ''
+  license_text: ''
+./doc/posix-functions/floorf.texi: 
+  copyright: ''
+  hash: ec2e982ab48eb54039f21f74d449bbd932bf6ce341f44ed67443841fafb99517
+  license: ''
+  license_text: ''
+./doc/posix-functions/floorl.texi: 
+  copyright: ''
+  hash: 4bd7c2e91d448d223f565886a273c53f07df96dce012d7afb8057de24dcbaf29
+  license: ''
+  license_text: ''
+./doc/posix-functions/fma.texi: 
+  copyright: ''
+  hash: e7afe0eb9016dee7ae95382952e183234e3d4e632950f62cde0cda8b3458feca
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmaf.texi: 
+  copyright: ''
+  hash: 92a275d7d2e32246725903039974adea241feae8587da17c6161230d307e4f8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmal.texi: 
+  copyright: ''
+  hash: d26907c96ceae9a7551c6a50ae32adddf5657735ec64d5ff3bc23301a1bc9440
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmax.texi: 
+  copyright: ''
+  hash: a45b7a4dd49c6ccb1d51374c51a37958f64f965be332e874b741671f00c6a2c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmaxf.texi: 
+  copyright: ''
+  hash: cc63ffb93e596bd2d86d82f3b3dd04626cc8683c8e919dc1f1868b6e8b549335
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmaxl.texi: 
+  copyright: ''
+  hash: f3a58f157499f078945af3bea4bdf315a104abb54df51e7b12dca522da70eba9
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmemopen.texi: 
+  copyright: ''
+  hash: 977725664c869f310611befaeafecddca0a4595deb9aa92b1e5edf38854a527d
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmin.texi: 
+  copyright: ''
+  hash: 00763f301200d7eac7d4ebc557feaf0901bc2efa0a1d7ed5b91dc3fa0edd8841
+  license: ''
+  license_text: ''
+./doc/posix-functions/fminf.texi: 
+  copyright: ''
+  hash: 3755886d1bb03aaec9755b2c34e4972ef0c8387c82b056d527b1afc61a5f0fb2
+  license: ''
+  license_text: ''
+./doc/posix-functions/fminl.texi: 
+  copyright: ''
+  hash: b5a0cc5a37fd46620b53cde5c2657ad4095f85f712ff3f0f414c4692a98489bf
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmod.texi: 
+  copyright: ''
+  hash: 5862ec5b61a832641dde66acb7eb859b7407994f7624cb83001e4e5411877b24
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmodf.texi: 
+  copyright: ''
+  hash: be9fb731e931317464eaadfa409ac9ba5fac8cf6f488f1dca04dfb25f4a87c9e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmodl.texi: 
+  copyright: ''
+  hash: da2bd3cfd9d33b8218d82300d5863a329002ab59ee62c591df043c7cbc3e2bf5
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmtmsg.texi: 
+  copyright: ''
+  hash: cda2c53b8e96e2e813629d5a07ee3ec6bae5dae9835cd30bfb79b5a6cd9809ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/fnmatch.texi: 
+  copyright: ''
+  hash: 4be762a04e97a3e099e16422bcdf9db17a4385c25e71916c2dc8620cce12c689
+  license: ''
+  license_text: ''
+./doc/posix-functions/fopen.texi: 
+  copyright: ''
+  hash: cb37df82cdfc62d799a6208a0cb896815c99a21aa72e61ee66add9794bc0caef
+  license: ''
+  license_text: ''
+./doc/posix-functions/fork.texi: 
+  copyright: ''
+  hash: 47e401050fdd39055e37b7942ecf9e6acc2dd1b0ba893ca9efce7fbe07512f26
+  license: ''
+  license_text: ''
+./doc/posix-functions/fpathconf.texi: 
+  copyright: ''
+  hash: dc753382cbb40d381330cae488511d20499ac593648fdea05451978ec6236e18
+  license: ''
+  license_text: ''
+./doc/posix-functions/fpclassify.texi: 
+  copyright: ''
+  hash: 4f9658ae83ffe86a91686e050b951b3a779cff3a3d113b99a8d567580a71ce2e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fprintf.texi: 
+  copyright: ''
+  hash: b9f426d7699941849d81c004ea41301049efff02e408a1dab1b04c5a33c2e1f5
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputc.texi: 
+  copyright: ''
+  hash: b13cd308b550d7216762f444ad5ff6437fab475480073a7c372b42c0414e9568
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputs.texi: 
+  copyright: ''
+  hash: f443e76ec0801cf0481eb89de8e604d424c93acc535cceb7a11050b2d602d617
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputwc.texi: 
+  copyright: ''
+  hash: c69261284cad8a715adc606ac68ce522bfd1a94849d795d8289febf07cdad00e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputws.texi: 
+  copyright: ''
+  hash: a0056c49a80a1aa877213437ddd4cb5955ac2c462fa78f053a4c3a6f3782d334
+  license: ''
+  license_text: ''
+./doc/posix-functions/fread.texi: 
+  copyright: ''
+  hash: 203ffb455bb4140455e841f5fae6f63fea6055043808d00adafcc88b630cb01f
+  license: ''
+  license_text: ''
+./doc/posix-functions/free.texi: 
+  copyright: ''
+  hash: 5d242e3032ca93238450312616b0835cee0d16bdd29424c0a5b8d9e265e306b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/freeaddrinfo.texi: 
+  copyright: ''
+  hash: 2a85ac5773ce37228a9b001b2f6102d2ccb5ee712dc6a104372a3caa7add64a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/freelocale.texi: 
+  copyright: ''
+  hash: 8776a23dd2eca0e57d0e59149570dc4afb924e23c11ae4ac4d8e9119ef78334a
+  license: ''
+  license_text: ''
+./doc/posix-functions/freopen.texi: 
+  copyright: ''
+  hash: c5b8bff1922535abcc1fec969516b476b349e17b5f65b47484da8bfe7f3f823c
+  license: ''
+  license_text: ''
+./doc/posix-functions/frexp.texi: 
+  copyright: ''
+  hash: 692f49020a87b80d1037790d020971803bc0afebe14c158150a4e52031487353
+  license: ''
+  license_text: ''
+./doc/posix-functions/frexpf.texi: 
+  copyright: ''
+  hash: 331ce16fc8e4dc1d4b90dd42bc5e7ccb13e6190ee4286fb3fe9e4b6e78dc5bd6
+  license: ''
+  license_text: ''
+./doc/posix-functions/frexpl.texi: 
+  copyright: ''
+  hash: 2b05d97865d15965f7eaaf726466ca7938f8aa8a4fb5c3074b88296c6175fd8e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fscanf.texi: 
+  copyright: ''
+  hash: c6cbb6eb2da370d053d700306d3f3d2fced6edb533846ce87c3eecd9f5b64d05
+  license: ''
+  license_text: ''
+./doc/posix-functions/fseek.texi: 
+  copyright: ''
+  hash: 44d940d7b3f70696e57564a133ec06b608f75eb80f823893cc8d791cf20858f4
+  license: ''
+  license_text: ''
+./doc/posix-functions/fseeko.texi: 
+  copyright: ''
+  hash: fce7c54e29aecbe63e018aa87b29db3cdc06947fed30a56dfdbb75ecffccfd68
+  license: ''
+  license_text: ''
+./doc/posix-functions/fsetpos.texi: 
+  copyright: ''
+  hash: 406badc26cb637f4a19da664e003024401fc353dff4fd1b141a6d824183d2d7a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fstat.texi: 
+  copyright: ''
+  hash: 029d0fe3f92d95173e6f28cccdbe2fe0ea1ab1e62cda2da6da2602071242e5c3
+  license: ''
+  license_text: ''
+./doc/posix-functions/fstatat.texi: 
+  copyright: ''
+  hash: b452283c1ad4c7f6620b47e705c065d8ec9f7d7311e26521d50d978dde098b0c
+  license: ''
+  license_text: ''
+./doc/posix-functions/fstatvfs.texi: 
+  copyright: ''
+  hash: ea42e0f03ea940ad7488f661925d44bc715e874caff49d8cf4c755fb3afb9a0a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fsync.texi: 
+  copyright: ''
+  hash: 8bf1bac4285f032b09e4f9c7087f3af31e559b5f52eca758141cbb391f5ac608
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftell.texi: 
+  copyright: ''
+  hash: 7a09c5de0c501bb7cdeb65cf20f5582009c8ff539b59a7c5fee036acd65c1a78
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftello.texi: 
+  copyright: ''
+  hash: 37cf02f3716a62b6bba4c06fcadb95b4edf7b6cc034cd29b5b4a9b90ae04ac54
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftok.texi: 
+  copyright: ''
+  hash: 9c0bb158262d297799d36d6d588c26e3e41b95226a77dd4cf11cd992e4a9a1e6
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftruncate.texi: 
+  copyright: ''
+  hash: f1e0566861d589db1bb60cda3d8b8317d1ff9520cc36f00549df03b3419b269e
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftrylockfile.texi: 
+  copyright: ''
+  hash: e43223544d05c58b1bead69da882754ab20a449b9b600200c4ea8709b16fa01f
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftw.texi: 
+  copyright: ''
+  hash: e978b2519b0f3806a7dab0e5e344fe47bca8fc2f523fde61b4dde209495588b1
+  license: ''
+  license_text: ''
+./doc/posix-functions/funlockfile.texi: 
+  copyright: ''
+  hash: 8b38246093f70a1e9599e3b040144aae94cf838305b81707500c579661d7f5ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/futimens.texi: 
+  copyright: ''
+  hash: d1320304b274deef5c2d65cf3e1ffd0c50367a79176ef371756373ca29705fcb
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwide.texi: 
+  copyright: ''
+  hash: ad8af32a87ba8df0b7982ed23d296cf78858b76463e35ad868d09fcc6cdd6653
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwprintf.texi: 
+  copyright: ''
+  hash: 40435c2105f61e2dfae56b633e183a81a1d955f0d0d5e0a3cbfce5865fbaa133
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwrite.texi: 
+  copyright: ''
+  hash: 0bc2efa6c28e32fe14ef25c64543ad9693dbb01be6f3fc8a5086a76ae6ed95e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwscanf.texi: 
+  copyright: ''
+  hash: 0350aa62241649e46ebcc0a699ed578f770f8d8c4ab946f80522abc793281936
+  license: ''
+  license_text: ''
+./doc/posix-functions/gai_strerror.texi: 
+  copyright: ''
+  hash: 9fa1d09a15180298f0966016d7c07be6488b7d90ae0fabfb8bd7e41bc43f22d2
+  license: ''
+  license_text: ''
+./doc/posix-functions/getaddrinfo.texi: 
+  copyright: ''
+  hash: 14a705c905635f12d64464c1acf0d56577117e53d94fcb0d641b12f4913a4dfd
+  license: ''
+  license_text: ''
+./doc/posix-functions/getc.texi: 
+  copyright: ''
+  hash: 58714462b4f4187bd08744681c000e72e90a9431f84add6e9360050466fbbf17
+  license: ''
+  license_text: ''
+./doc/posix-functions/getc_unlocked.texi: 
+  copyright: ''
+  hash: 719010c698afd2db8d1b61b7885706a8940c7fc71fbd2a10a01468665a3ee895
+  license: ''
+  license_text: ''
+./doc/posix-functions/getchar.texi: 
+  copyright: ''
+  hash: 38cf4d3f15b593d55ec4c5968a96c38a6fbe440c9060e0ad506473175e94e95b
+  license: ''
+  license_text: ''
+./doc/posix-functions/getchar_unlocked.texi: 
+  copyright: ''
+  hash: be20adfbc37a9b00e3ff1dc74c54d3358c9fd38ac388e4818d22abcaecbd4ec7
+  license: ''
+  license_text: ''
+./doc/posix-functions/getcwd.texi: 
+  copyright: ''
+  hash: 17c216e7edd5cd839916fe367c97d27dd035e38e34a93c49bde48ea868c5296f
+  license: ''
+  license_text: ''
+./doc/posix-functions/getdate.texi: 
+  copyright: ''
+  hash: 79d3612b99d1e09b631440139db05273fe95959c259b5127693a9cb0223b3cee
+  license: ''
+  license_text: ''
+./doc/posix-functions/getdate_err.texi: 
+  copyright: ''
+  hash: f92239cab29da0644d61d19629631685b6abcbc7b621f1aba5179029e5a28f84
+  license: ''
+  license_text: ''
+./doc/posix-functions/getdelim.texi: 
+  copyright: ''
+  hash: efafb82e4876cff26df193267dcbd2a3a2f1f2fd97431a4ec5c761663a3886e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/getegid.texi: 
+  copyright: ''
+  hash: b5b2f176703267d09132755529f870787751c23195ef12e2c9971d9a9c838a6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/getenv.texi: 
+  copyright: ''
+  hash: 274cd2f5b8925d63386ac9c50ef8831a97f390e3e58e5977bf9785aae707cd97
+  license: ''
+  license_text: ''
+./doc/posix-functions/geteuid.texi: 
+  copyright: ''
+  hash: 5839ba963ace9183575af71a0ede6093646d1924b7d9e2db4fdebd83dbed9a0e
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgid.texi: 
+  copyright: ''
+  hash: 39a7aed4f6ecf6142c9c4c9f46a2d8a17a802609c2b75dc92ec40c30e196196b
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrent.texi: 
+  copyright: ''
+  hash: 0596e2089898956df5fd5cae81e2c3a8891e10e1746e9f13a3c8357d7c9edcb5
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrgid.texi: 
+  copyright: ''
+  hash: e90d86643f77ea14655319e842600c5f9de7a54494abce14088dd53ea2931a25
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrgid_r.texi: 
+  copyright: ''
+  hash: ae21c2ca2f91e6e4083483a87b4dc644e670c029cd4cc1f1e1b14c0a0e0adedf
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrnam.texi: 
+  copyright: ''
+  hash: 7e47a3eaa33be90ec41d4856255adb5c1434663e691c7362ce1297d74ff858d2
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrnam_r.texi: 
+  copyright: ''
+  hash: 2e107e9b689d02131cfc4599989f420a227a95b4c35d4bca5774e73a2ff568e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgroups.texi: 
+  copyright: ''
+  hash: dc11c7f3733247e37a0bc53249ea948e76d259d158544b2a5a082a1d111129e0
+  license: ''
+  license_text: ''
+./doc/posix-functions/gethostent.texi: 
+  copyright: ''
+  hash: a1ddf37deaf3136d395c6e2fc6bc008837e691f6b6c615c6bfbac8c2316ceb5c
+  license: ''
+  license_text: ''
+./doc/posix-functions/gethostid.texi: 
+  copyright: ''
+  hash: 75b6790bd3fd3e7bb67cc34c87a613cc4bfa446ce4e2a43a11e9788c583ed63c
+  license: ''
+  license_text: ''
+./doc/posix-functions/gethostname.texi: 
+  copyright: ''
+  hash: 77e832d8786df64fef14857e4611bc7324c762142a78e5a347f789b35d563a1c
+  license: ''
+  license_text: ''
+./doc/posix-functions/getitimer.texi: 
+  copyright: ''
+  hash: 35af7f4dc16bc874c784085e9bed6ab3be4728a30937389be5aa1e3026ce4f47
+  license: ''
+  license_text: ''
+./doc/posix-functions/getline.texi: 
+  copyright: ''
+  hash: cc4e1cdd660ad29d4fdf61fef17a363fd2de9ca8f2f9864e8a11fb14978e6715
+  license: ''
+  license_text: ''
+./doc/posix-functions/getlogin.texi: 
+  copyright: ''
+  hash: 1dcdcd176e1153b391bee72702dd8c20b7e79e32970b1db82044598c636350f6
+  license: ''
+  license_text: ''
+./doc/posix-functions/getlogin_r.texi: 
+  copyright: ''
+  hash: 7ad532d82f0519617a84dc82bf028aa4181ba189dda51b3ac511ab5648042f8e
+  license: ''
+  license_text: ''
+./doc/posix-functions/getmsg.texi: 
+  copyright: ''
+  hash: e67c2c51ff394f18250f43089b89a0820105195fe338f2b68ca2448fde73a130
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnameinfo.texi: 
+  copyright: ''
+  hash: 7ce827533a3feb9e2f219bc867cb7dbf8f5d39dae596203b9425157ee79fa86c
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnetbyaddr.texi: 
+  copyright: ''
+  hash: 4e93c87df34262cc9fe05be16d01964a06924666bc4513614053d626ae6b5ff7
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnetbyname.texi: 
+  copyright: ''
+  hash: 52a931503da2c42cbd8f8be86549e2575e48ab5b65090fa85ec33f2910e00cb2
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnetent.texi: 
+  copyright: ''
+  hash: b32da6dbd572fe5c7c653c8c600ebebe87b0f794b2758f02c7c175587c1b63ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/getopt.texi: 
+  copyright: ''
+  hash: af7f8ffb87a9e53611a6c79fa27787cb8686d2fad31f999c12e345d89db483ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpeername.texi: 
+  copyright: ''
+  hash: 3da780655ab68f30fec710038214a4e109ad4247a561349954bb1b0cfde8d117
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpgid.texi: 
+  copyright: ''
+  hash: 0b7b188ca82fc0428055b148ff19fcb11abe7c13f97b23f913ec4afeed84e3e3
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpgrp.texi: 
+  copyright: ''
+  hash: db8b430ed2f111ddbd6fe64c6fed03b269ab342d0242b27ab145239c9281296c
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpid.texi: 
+  copyright: ''
+  hash: ac1bc30305416ea508f16362ec87cbe917851fdd1a598a828e711ede91b2d825
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpmsg.texi: 
+  copyright: ''
+  hash: aa2a70e33feb57d1e999ef4b424ecd3c44e308fc2b6446eae7418d25a30bb2c5
+  license: ''
+  license_text: ''
+./doc/posix-functions/getppid.texi: 
+  copyright: ''
+  hash: 6d2bf74d0a29e047baeb1ef37707f41406274cc3f248d75e8dc46781a6b68f69
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpriority.texi: 
+  copyright: ''
+  hash: e9c531e0f622d4d952957f619ff81ce3d19931316589b633ff0b611f43fd2843
+  license: ''
+  license_text: ''
+./doc/posix-functions/getprotobyname.texi: 
+  copyright: ''
+  hash: 963e8861ff62a9d05859487128caa20536bb577825ce96399658e741f7be3193
+  license: ''
+  license_text: ''
+./doc/posix-functions/getprotobynumber.texi: 
+  copyright: ''
+  hash: e805cea0486255ad0074dde515a503115e33ed43868aecacfb1a0ac558cf8b98
+  license: ''
+  license_text: ''
+./doc/posix-functions/getprotoent.texi: 
+  copyright: ''
+  hash: 551ad27d45a3a2173629a313fa52369ff33c06beaec3bbc2377baf67b8bd6a63
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwent.texi: 
+  copyright: ''
+  hash: 68e520992b1a0489112d7282fd41decd194ca4fd35a4d9b802cc3c4f7668109d
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwnam.texi: 
+  copyright: ''
+  hash: 998a0dbf244f755876f23b998c559ba89e13530dd2773a04938a04b5b4f4ea58
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwnam_r.texi: 
+  copyright: ''
+  hash: 70f8d6647f1e66692bd073a00720fdd78908c840c5d79bfdc49a0f125598a275
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwuid.texi: 
+  copyright: ''
+  hash: e8fe050b21b5adc384e3955d5ffd092c6a04e7f31d5a9f4812d4d928483a13b4
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwuid_r.texi: 
+  copyright: ''
+  hash: d44ef7b94c25b62423eedbe94c7a59721af5023d7f9798dcb6f9bca0b3188b84
+  license: ''
+  license_text: ''
+./doc/posix-functions/getrlimit.texi: 
+  copyright: ''
+  hash: 1741e65462f624b55fa08f6c137d5fef0491b29550153ff7b2298da4af716d35
+  license: ''
+  license_text: ''
+./doc/posix-functions/getrusage.texi: 
+  copyright: ''
+  hash: c9eeb4d92f5a2e7811c9223fd928527c6a5417e8594cbd9ea14eeefede635a25
+  license: ''
+  license_text: ''
+./doc/posix-functions/gets.texi: 
+  copyright: ''
+  hash: 9acd238c8a9d2d9c4330c312cafbdcd705e2429713392b36d2ce7c289b4e53ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/getservbyname.texi: 
+  copyright: ''
+  hash: 3ecea5dc3404e1e38010cd73a8404324b1f9d1b54340701156549b8d5bfd01be
+  license: ''
+  license_text: ''
+./doc/posix-functions/getservbyport.texi: 
+  copyright: ''
+  hash: bcdebeab2eff4908ac4d0c1c82b94bf2d68700c98b4cd97a78214034f96b2ed3
+  license: ''
+  license_text: ''
+./doc/posix-functions/getservent.texi: 
+  copyright: ''
+  hash: c838d8a89540e74f6101898ed07696b8825936baf417b8f2832655d311f571b9
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsid.texi: 
+  copyright: ''
+  hash: 431bb53ecff71e3d8b417174c16796f529609cd3acb88ebc10eb477a349185bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsockname.texi: 
+  copyright: ''
+  hash: 31f2b7be44434718f4efc1d7b1eeab9bf763e3e363342fb0650f7dd2febe12b3
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsockopt.texi: 
+  copyright: ''
+  hash: af2dad761ea7f44bcf81197c78bf3fcfb362822bad6f0ece6311338d86e3af08
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsubopt.texi: 
+  copyright: ''
+  hash: aa4a53d47e730a1f992d7f1aa922e1aa79be10c34bfb255f50c46bfcb2f31234
+  license: ''
+  license_text: ''
+./doc/posix-functions/gettimeofday.texi: 
+  copyright: ''
+  hash: 92a496410d954f2a49525954f98a8b06037522f580f6c0db5ade027332d23bde
+  license: ''
+  license_text: ''
+./doc/posix-functions/getuid.texi: 
+  copyright: ''
+  hash: 19539881b0771df459953a324b6b357f9054362136b7bf9e0dd8765b028602e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/getutxent.texi: 
+  copyright: ''
+  hash: 87341c2493c319192244895c4b3a8f0e235c13e0c6621010175a0c36db050f8b
+  license: ''
+  license_text: ''
+./doc/posix-functions/getutxid.texi: 
+  copyright: ''
+  hash: 0bbf1db488c0b8719e88a95cd605fa67768a93ef69ddd9169b67e61711ae1e9d
+  license: ''
+  license_text: ''
+./doc/posix-functions/getutxline.texi: 
+  copyright: ''
+  hash: d12b5dfe0bf0b375c1ca7848376ae825fc319ade3d15ad4eaef723461569e33a
+  license: ''
+  license_text: ''
+./doc/posix-functions/getwc.texi: 
+  copyright: ''
+  hash: 24a89fa271805bfe4e8cc573f5ca543254fe76dc9df6b5d9120d24be2e7e8409
+  license: ''
+  license_text: ''
+./doc/posix-functions/getwchar.texi: 
+  copyright: ''
+  hash: f75ad5d5c3cf53828966a82b52a7ef76b530dcdb646790e3e093dac8390a43f3
+  license: ''
+  license_text: ''
+./doc/posix-functions/glob.texi: 
+  copyright: ''
+  hash: 768db78c0332b8bc395ab0e47410eda2ecd7e7199d167bdda85c58ecc1aa45a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/globfree.texi: 
+  copyright: ''
+  hash: 377e052eed5cf3a7e869b6b866cfeac8cd5ee86bcbdb7a7e8917773dd9409ab8
+  license: ''
+  license_text: ''
+./doc/posix-functions/gmtime.texi: 
+  copyright: ''
+  hash: 9066a6d0b686e0fd9eaf52c3daccffe11d300f0093beec88c8dea2637d591a89
+  license: ''
+  license_text: ''
+./doc/posix-functions/gmtime_r.texi: 
+  copyright: ''
+  hash: d899d0d3944063104a3a87bec32233cf8c8c5c00340d8a31c276be78149609b2
+  license: ''
+  license_text: ''
+./doc/posix-functions/google-ranking.txt: 
+  copyright: ''
+  hash: 6669619e4c21ebf3f0f0cfa39caf63574d638db746cee3ab5241ae4e8ab02dff
+  license: ''
+  license_text: ''
+./doc/posix-functions/grantpt.texi: 
+  copyright: ''
+  hash: ebd0e873fe02818ecf4ed2990c273103a39ad0f2043ff06acc9e07254bcd44f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/hcreate.texi: 
+  copyright: ''
+  hash: 1f1de04c8b3137e208712afe58b67737a41e3c494046ea3632c2d6bebfdb5e08
+  license: ''
+  license_text: ''
+./doc/posix-functions/hdestroy.texi: 
+  copyright: ''
+  hash: 852046bda95f89dc1f65f887ebfcb271af87a79cfa85a2c30a2596dea55ffb6c
+  license: ''
+  license_text: ''
+./doc/posix-functions/hsearch.texi: 
+  copyright: ''
+  hash: 1c3dfdf5fd7c26d554eaa4394d12da4e71fb0ff8b6c6a7d956fbdf226e6db77c
+  license: ''
+  license_text: ''
+./doc/posix-functions/htonl.texi: 
+  copyright: ''
+  hash: 96da0ca2386362f2d4e4dd58a33905ddbd207738ec194c1f90078bb0176b923d
+  license: ''
+  license_text: ''
+./doc/posix-functions/htons.texi: 
+  copyright: ''
+  hash: 112e415883bc9b3912343a8c5535eab4ed1e5eb8e2a0cb6203b1b4c829c2ac10
+  license: ''
+  license_text: ''
+./doc/posix-functions/hypot.texi: 
+  copyright: ''
+  hash: 5916e7c5c00d00967198f74805aafa986ae5501cc50a0b6c535f859c4accae49
+  license: ''
+  license_text: ''
+./doc/posix-functions/hypotf.texi: 
+  copyright: ''
+  hash: dd7047f4fcc4c2890b72412ea78a97e134cb3d4b52b5eddb8523a2402c15fbd4
+  license: ''
+  license_text: ''
+./doc/posix-functions/hypotl.texi: 
+  copyright: ''
+  hash: f90a4791fa83d5bb2611a343ee4e76c4b640340bb22acf21f71a0d33ec9a80e0
+  license: ''
+  license_text: ''
+./doc/posix-functions/iconv.texi: 
+  copyright: ''
+  hash: f965f19658c91456314bbd0c675bd6052312f237295341335b35c38475791d91
+  license: ''
+  license_text: ''
+./doc/posix-functions/iconv_close.texi: 
+  copyright: ''
+  hash: 16082c1b0665d66075df97aca7dffc9193a3dd54469ce1e20fd61a7e65e01635
+  license: ''
+  license_text: ''
+./doc/posix-functions/iconv_open.texi: 
+  copyright: ''
+  hash: 49b9b82fed6c3b4bf87cd2443ef07037863a7832c4cb38eb16f75dd2c83a2826
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_freenameindex.texi: 
+  copyright: ''
+  hash: 3409250e6643d5a9d763dad8f6d778213c5262060d57245d9969168b5717c8ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_indextoname.texi: 
+  copyright: ''
+  hash: e0c658b26a0038f9e0d93a4e91f11249f2b4af91b6eea372a208a05cf161b2a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_nameindex.texi: 
+  copyright: ''
+  hash: efe0055691b143943238c3973ce7a34ab9e1512434fad06838d9cb1579027e7d
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_nametoindex.texi: 
+  copyright: ''
+  hash: ae69d6500c998134e95d763fd4d4d4b74f3b9a32ae8320f90da673dddd7082e7
+  license: ''
+  license_text: ''
+./doc/posix-functions/ilogb.texi: 
+  copyright: ''
+  hash: 18dbb833f6c37415f3c211e4872a95fea279a0c41a745edc0581e9ccfaea9bf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/ilogbf.texi: 
+  copyright: ''
+  hash: 1c1c7486eb6998de905eda978324bfc91f9c1b8ba52fcdc6ce6b1d26f3aa0a14
+  license: ''
+  license_text: ''
+./doc/posix-functions/ilogbl.texi: 
+  copyright: ''
+  hash: 3b010d3a7060a6064b0717b3c0cb764eaab983dde75fe55e71e7775e15e72ede
+  license: ''
+  license_text: ''
+./doc/posix-functions/imaxabs.texi: 
+  copyright: ''
+  hash: 666ba73e5b2cde72e1e5b6bc0d407b8d52982031343e5627f4c7986c9f8ab588
+  license: ''
+  license_text: ''
+./doc/posix-functions/imaxdiv.texi: 
+  copyright: ''
+  hash: 138d9df51523cec7035dcf949fb2b46186fdbfc8e3f5d93e07abef452fe90ec4
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_addr.texi: 
+  copyright: ''
+  hash: 74b2fccbbd9d74392aa7fcb6c422f554038225e221802537f85556e3622f5b7a
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_ntoa.texi: 
+  copyright: ''
+  hash: 17301bd2cf66ebdfb65182b0dade44f1dae8345b2125ff8d9356dcf108d83fa4
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_ntop.texi: 
+  copyright: ''
+  hash: 2bfb9c3c48534a0ef693f09aa78498cebe4f1efdd5dc1287daffe91e312d3b46
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_pton.texi: 
+  copyright: ''
+  hash: 179d6b99ccbdec429d7b7be478695dc0d41e2340f79f6d9c5b5a693cba0489ed
+  license: ''
+  license_text: ''
+./doc/posix-functions/initstate.texi: 
+  copyright: ''
+  hash: ef35a8ba1f7a2c80bbc096e54a5309a312b91cc5cf46e6da71a3af2e92b733d5
+  license: ''
+  license_text: ''
+./doc/posix-functions/insque.texi: 
+  copyright: ''
+  hash: bd5c85638f4a8abfa676097f05367cf4a7a5c6df9e4814c7956a55497fd70cdd
+  license: ''
+  license_text: ''
+./doc/posix-functions/ioctl.texi: 
+  copyright: ''
+  hash: 0e9992e44abd4da7febddb076d29b2cbcd8d088f04d6a99e46d65446440a621c
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalnum.texi: 
+  copyright: ''
+  hash: 7e8f6f0e1c5391eeeee418d3daba0ca9a8f1acc734524864a393b569cb4d9e7e
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalnum_l.texi: 
+  copyright: ''
+  hash: 184b40cbdba1ef6f81331ed1f0dbb4e7bad0df440e0c8a0d7069ac1908d68897
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalpha.texi: 
+  copyright: ''
+  hash: 21bde3d1e2fd36e6b70354be9db9d5b7bf8e1f1d4288c356e93cec01c117bca6
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalpha_l.texi: 
+  copyright: ''
+  hash: 891b0a65e8c759c81c621ba0197e0f95e55ca090eee63dcaccba5faa52ca9077
+  license: ''
+  license_text: ''
+./doc/posix-functions/isascii.texi: 
+  copyright: ''
+  hash: 556beb2df9bb209f85e402d40e0fe3811644560424c74fb2b3ef07a8dd6d705b
+  license: ''
+  license_text: ''
+./doc/posix-functions/isastream.texi: 
+  copyright: ''
+  hash: 9eeda95fb91e67be24bb2e4b8ebcb41758144638e315c9b8a38e5f24c9c464a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/isatty.texi: 
+  copyright: ''
+  hash: e2c2970db6e080721b6f59c180087535d30c7f0e6e49510851e8c56bbf62b571
+  license: ''
+  license_text: ''
+./doc/posix-functions/isblank.texi: 
+  copyright: ''
+  hash: 607aeac320bbcef0aff904e331fd9ba48021afb702586fadfb024e3c2399987a
+  license: ''
+  license_text: ''
+./doc/posix-functions/isblank_l.texi: 
+  copyright: ''
+  hash: 87c4aa73b132fb5e2406a64e6d5f4d9033fe4ccc616daf189d3d61ccaacaa732
+  license: ''
+  license_text: ''
+./doc/posix-functions/iscntrl.texi: 
+  copyright: ''
+  hash: 1bed23b3d80fa67f3d9c7863ae52969b33682335542e31bf5d3f1f2b64e25e09
+  license: ''
+  license_text: ''
+./doc/posix-functions/iscntrl_l.texi: 
+  copyright: ''
+  hash: b81253dfdbbc5302ec5dc376fb8351bff010960f66b6c07cf6c792dc6359808a
+  license: ''
+  license_text: ''
+./doc/posix-functions/isdigit.texi: 
+  copyright: ''
+  hash: a099acfd541a9eb34af0f26be1e535eb935149cd2a5947c165a62b70c9f185d4
+  license: ''
+  license_text: ''
+./doc/posix-functions/isdigit_l.texi: 
+  copyright: ''
+  hash: 1c50a0ff745432c67953ccf4c610ffac0bd4d4a3ee60e5dddb93be325738db84
+  license: ''
+  license_text: ''
+./doc/posix-functions/isfinite.texi: 
+  copyright: ''
+  hash: 8de73e1f76a93c11dd0144e087c5a5668d7a3356c4ad47b6a839386c6878abaa
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgraph.texi: 
+  copyright: ''
+  hash: c587baa5d3ff8f02b0d039fea812685da5bf8e75c7fcbc88f2814e62835758c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgraph_l.texi: 
+  copyright: ''
+  hash: 98888e1d5b988e61eaa41d7727524eaa67a1b20fc59aa4649d866b39630fb81a
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgreater.texi: 
+  copyright: ''
+  hash: d998c4e8134e688b0dbd93c7f31be3bee6fa1c6ac588447dbaf04296b983fb45
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgreaterequal.texi: 
+  copyright: ''
+  hash: ab4e53e9c3972f5aed62439cc18f494263bb0f880ef864045d24d0f02eb635cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/isinf.texi: 
+  copyright: ''
+  hash: eba9361c1691fec1805dbb0caeef08b27f06567a49e51e510a778c2f95decf10
+  license: ''
+  license_text: ''
+./doc/posix-functions/isless.texi: 
+  copyright: ''
+  hash: dd004ed16bf5f26451a45799145ea12ee1a016fa0966fe3eb6290da0386db8eb
+  license: ''
+  license_text: ''
+./doc/posix-functions/islessequal.texi: 
+  copyright: ''
+  hash: 28e0f408e7dfce3c4fad65911c4558d2b2aa8aef2be00cf46c2bdae6383a8b1c
+  license: ''
+  license_text: ''
+./doc/posix-functions/islessgreater.texi: 
+  copyright: ''
+  hash: cd242279d55f7ff21ca138eb552ad88514e3806094a2158a4df3eac316e2c0cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/islower.texi: 
+  copyright: ''
+  hash: 71c3f0e0c264095972634ce0074fd2083e8b2174467f9d894e5f4519dbed4cc3
+  license: ''
+  license_text: ''
+./doc/posix-functions/islower_l.texi: 
+  copyright: ''
+  hash: 96fcedded01879c7734672f03889e128a2f1dbc5f405b10d13627fc4b2523144
+  license: ''
+  license_text: ''
+./doc/posix-functions/isnan.texi: 
+  copyright: ''
+  hash: 5214ffd8e70b47877e52ef9490a41b22c7ed2e3a6bc37c7782a4ca5c3ac07f11
+  license: ''
+  license_text: ''
+./doc/posix-functions/isnormal.texi: 
+  copyright: ''
+  hash: 2dd1a3add6afd000b680d1c31a781dc539c9658de7d445da59004bfd50e0783b
+  license: ''
+  license_text: ''
+./doc/posix-functions/isprint.texi: 
+  copyright: ''
+  hash: bf8d5e33042f9cf87ecd8cc480294ad8a7646150ad9ef130c8358c3eae863a90
+  license: ''
+  license_text: ''
+./doc/posix-functions/isprint_l.texi: 
+  copyright: ''
+  hash: 5cff105ffadf19f833473bbadfaaa615774fe044e725fa630923a66b3e7f8707
+  license: ''
+  license_text: ''
+./doc/posix-functions/ispunct.texi: 
+  copyright: ''
+  hash: 4fb607609ae1049ee43f812ba62fbb60c3272f24017331383aed15bafd786cd1
+  license: ''
+  license_text: ''
+./doc/posix-functions/ispunct_l.texi: 
+  copyright: ''
+  hash: 18d2164678e563017b26a85fb23ec4d064c90da5a3e714113416b8c634505f4d
+  license: ''
+  license_text: ''
+./doc/posix-functions/isspace.texi: 
+  copyright: ''
+  hash: dfdacdcbfce11be693ae3ba8a9a7a3b61ca4817c0ebba178e618b4a6afa7110c
+  license: ''
+  license_text: ''
+./doc/posix-functions/isspace_l.texi: 
+  copyright: ''
+  hash: 9a9cbcf45014b1475014e6893b767c3bc3b8a2535e835a56cd748ae79bb7c131
+  license: ''
+  license_text: ''
+./doc/posix-functions/isunordered.texi: 
+  copyright: ''
+  hash: 627509cf98ac3516674b3f4b12aca1ab39c75bf3356a60c72c724751dbe27bd4
+  license: ''
+  license_text: ''
+./doc/posix-functions/isupper.texi: 
+  copyright: ''
+  hash: e5ecf479da300eaedb8c203077aa16f133a0d8b46870bf7575460ae23aa0eb86
+  license: ''
+  license_text: ''
+./doc/posix-functions/isupper_l.texi: 
+  copyright: ''
+  hash: 84dd39b30cb42e91a2527f26e9c643b49582f593536ff106a61f4827186690b6
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalnum.texi: 
+  copyright: ''
+  hash: c88cc6395532271af8c31a1c5919f67010036b8dec37195a5de9c9e6fc4fe99a
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalnum_l.texi: 
+  copyright: ''
+  hash: c7b749280c0d42ff34ec793f356734be117a43ede8aab61c3eac40296b8a8359
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalpha.texi: 
+  copyright: ''
+  hash: b8a1133f56ec62b284a4d3b3779f7faa3a3e71a0882041311a4875fa886799ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalpha_l.texi: 
+  copyright: ''
+  hash: e0a8c0ea63ecd10ff043c3b5bc68e731cb92ee02b8e1525a750ce6ca9b28712e
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswblank.texi: 
+  copyright: ''
+  hash: faf5a6047eaaa0b928dba0c8cfb5eb9a505c0e5bb25f687c7bf9a3563727d030
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswblank_l.texi: 
+  copyright: ''
+  hash: f8ab06e1ce64e0c1a05e484a4252a62ffe13629ac1abda44784530d4816cbdf7
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswcntrl.texi: 
+  copyright: ''
+  hash: e9ac01bd3a5328c6929e67d29991c8eabd27f30cefd73ba88b67f87383e0be83
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswcntrl_l.texi: 
+  copyright: ''
+  hash: 457ab57b3569fa9bd430130d48e2e2c8af2b63ba356bd0b53785e04957519624
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswctype.texi: 
+  copyright: ''
+  hash: ef1349d2e828e29feea41a7a9e7b876f1c93d47ec38be89d1529905da34176d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswctype_l.texi: 
+  copyright: ''
+  hash: c671724332e6cc92a3c3f170c366ec38aeefab3906b3e85e0d8f2b19e536dfac
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswdigit.texi: 
+  copyright: ''
+  hash: 0e822111a3da05620947869ae4f3b596526ba2375fc5f56696a7e7a1561ac12e
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswdigit_l.texi: 
+  copyright: ''
+  hash: 22f6b5c90a47f37efe4ba4db24bed97cae416e8e0c8f6933a1d288bcb1ca185d
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswgraph.texi: 
+  copyright: ''
+  hash: 896e84f517e4788236750a0615c2133f547aeba276f20c53c87c42d9c53dc4c8
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswgraph_l.texi: 
+  copyright: ''
+  hash: 10aee45c72cc14f9a99bec78b29aa44fe09e9c54a545008cc4b19baa4dec61a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswlower.texi: 
+  copyright: ''
+  hash: 1a9d7fa78a4d5d99b5fbff24e4e93ead4ecacf42a38182cdfd6fb45136f6e28d
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswlower_l.texi: 
+  copyright: ''
+  hash: 25b3f6605949010e6e24d0c2e1f7b3510e17cfd8745092c6def04ae7dc005143
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswprint.texi: 
+  copyright: ''
+  hash: 5e205ee334496a2f8d2c4d3aaf02ed2c1e8bc2afcf953ccfdc8615e0bb390b4a
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswprint_l.texi: 
+  copyright: ''
+  hash: 67681be4a107eb027c4062ff76d698c22b4ce822bd002dfa7a17b1493d54f45e
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswpunct.texi: 
+  copyright: ''
+  hash: d73020eb450cf8316c2be7df99c089c6fe0034ef0600f050d907760b2e6ff366
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswpunct_l.texi: 
+  copyright: ''
+  hash: 5e322758293c6c526a9eeb5a1b026d42b7faf671accd5638f9df410a04689eea
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswspace.texi: 
+  copyright: ''
+  hash: c67ec587b829ddefc9f19782b9e1029ecdc6ab6c00583aff4ccaf07e51564193
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswspace_l.texi: 
+  copyright: ''
+  hash: 0f4b7e4d958774500fae6e07482d9e57bd0da51d009cd74ccbd706e78ba58b08
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswupper.texi: 
+  copyright: ''
+  hash: 528d4efc9e63b92cc7d1d0c7e31b7c77e67763927eeb07b4788aecb640c11719
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswupper_l.texi: 
+  copyright: ''
+  hash: 6e31fe14738f6db822099564d598cf2f05446f077266420bf4d7422ef633ab38
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswxdigit.texi: 
+  copyright: ''
+  hash: 3526ec49ca1bd1d095e59320f1a32b5a218365abdedc5b43651cdb1be31176fe
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswxdigit_l.texi: 
+  copyright: ''
+  hash: 9936301340cebe26c7bcd05652078bb16be4607552be00033b001521ab9d41a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/isxdigit.texi: 
+  copyright: ''
+  hash: 52cb4c1aa9423d60ea39014291385b09505d50690e931fec03fdf135080b1bdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/isxdigit_l.texi: 
+  copyright: ''
+  hash: d2ad8a517fc760eb3955762719d2090c1f9c1decfdc2887089f7eb266851562a
+  license: ''
+  license_text: ''
+./doc/posix-functions/j0.texi: 
+  copyright: ''
+  hash: 92c5c4686c56a6222dc04a17a722b38fcb07bfadefa01ec42f495d70a4d704ce
+  license: ''
+  license_text: ''
+./doc/posix-functions/j1.texi: 
+  copyright: ''
+  hash: bca6d61fb0a24dad8de3b48af62434780af39426be5adfa93dc9957532493814
+  license: ''
+  license_text: ''
+./doc/posix-functions/jn.texi: 
+  copyright: ''
+  hash: 5b29066ceb64fe7ad17eb38d78939fc0e5f67fb7b89c71269a590db08bf9bd26
+  license: ''
+  license_text: ''
+./doc/posix-functions/jrand48.texi: 
+  copyright: ''
+  hash: 5eccfdaf1fb9d042601589acec674823d983cebc21a085b5c12bb7119ed3040d
+  license: ''
+  license_text: ''
+./doc/posix-functions/kill.texi: 
+  copyright: ''
+  hash: 11e385ab05f5ce42cb6247de6ee659925b11ecc4aae8abd33e1c2c674a40fdf4
+  license: ''
+  license_text: ''
+./doc/posix-functions/killpg.texi: 
+  copyright: ''
+  hash: 22626f2cc60de026029ba237c7c48240d598b37acbd580a1b71c3c5928b73aab
+  license: ''
+  license_text: ''
+./doc/posix-functions/l64a.texi: 
+  copyright: ''
+  hash: 3a5a8f79a5d9f35a37ef6d7a789b7b472f3216854a7fcb47020cf74971354cb3
+  license: ''
+  license_text: ''
+./doc/posix-functions/labs.texi: 
+  copyright: ''
+  hash: c5d6a703807a85238752dd8f84cbce03bcd5814315c8604e89065b8a9f29f77a
+  license: ''
+  license_text: ''
+./doc/posix-functions/lchown.texi: 
+  copyright: ''
+  hash: 2a095b0a88ad06a14515b1dbde6ec7043620d305fc7b453723867cdf5ed0cb1f
+  license: ''
+  license_text: ''
+./doc/posix-functions/lcong48.texi: 
+  copyright: ''
+  hash: 88459cb0ea9ae0af730dd212d7fc277aea0a7c769e94d2f6b79199ce12b2a512
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldexp.texi: 
+  copyright: ''
+  hash: d8b30651c56cc57e6184976bcd3f5cdc4337432a710df366e0f95f5859ba6449
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldexpf.texi: 
+  copyright: ''
+  hash: d00bcb96e34e28360e66b5c978e0f9c1bb5b3bdb899b81fe0b02631ba7e84d4d
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldexpl.texi: 
+  copyright: ''
+  hash: 829ada339592493a785909dc30d169fbeb9dc8ac27f6bf686b8ebe09d785dbba
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldiv.texi: 
+  copyright: ''
+  hash: d0888e9dfe273c20f6b12c927742f3d6638da50b661f54f0ecc3a1d496153711
+  license: ''
+  license_text: ''
+./doc/posix-functions/lfind.texi: 
+  copyright: ''
+  hash: a9ab017bcc9e5a9fcabf969e05e09ca84876c73534d89e870d8a1f3d903f3f98
+  license: ''
+  license_text: ''
+./doc/posix-functions/lgamma.texi: 
+  copyright: ''
+  hash: 470520a61a348188fbde1ddb355db3ec98317bbbd5a4bbef6235b7529dc8fa2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/lgammaf.texi: 
+  copyright: ''
+  hash: 3340ca1262b620b9ed75884a30a81db4835f22d9c860f0fdfbd49037ce37e709
+  license: ''
+  license_text: ''
+./doc/posix-functions/lgammal.texi: 
+  copyright: ''
+  hash: 5e5d8253d524d33f78063e3e074de5de4790d5287281de939f9ada54a6705852
+  license: ''
+  license_text: ''
+./doc/posix-functions/link.texi: 
+  copyright: ''
+  hash: 721fb6b25032be524f91ee20555d327e72ab7483675467a12a62292b15936298
+  license: ''
+  license_text: ''
+./doc/posix-functions/linkat.texi: 
+  copyright: ''
+  hash: ce3f61559a6101fa604cccc0a81fbe487ceb354cf4adb09a34aa00f85e7fc351
+  license: ''
+  license_text: ''
+./doc/posix-functions/lio_listio.texi: 
+  copyright: ''
+  hash: c1d08fd64ff293ccace2ccce4dfb34ec109f7090f89c52f2cb06db5c54a8cffa
+  license: ''
+  license_text: ''
+./doc/posix-functions/listen.texi: 
+  copyright: ''
+  hash: 03a2a6206b0bfcb7a04ed70467f6c79be8290cffa99530b8a9e039d33dbdd79f
+  license: ''
+  license_text: ''
+./doc/posix-functions/llabs.texi: 
+  copyright: ''
+  hash: 5704f5b51267973492147aeb77944c9ad0933fc1384a10a423b46df15b4901b5
+  license: ''
+  license_text: ''
+./doc/posix-functions/lldiv.texi: 
+  copyright: ''
+  hash: ee22224d40c7a02e5745932772fee532f233469cdfb89c246432ef992ebac66a
+  license: ''
+  license_text: ''
+./doc/posix-functions/llrint.texi: 
+  copyright: ''
+  hash: 3f862bfbf3caf84d717ca4155ee2f2ada393f410182a60fc56366f4925537dfd
+  license: ''
+  license_text: ''
+./doc/posix-functions/llrintf.texi: 
+  copyright: ''
+  hash: 83247aede57c3ef038725aecc9f342683fc1b1cfdb67b650ceace4bb856a26dd
+  license: ''
+  license_text: ''
+./doc/posix-functions/llrintl.texi: 
+  copyright: ''
+  hash: ab3eeef6cd1c1dc19abc2a4f396784418136ff2da2b0a6e6cd91e9d7b64d5b9f
+  license: ''
+  license_text: ''
+./doc/posix-functions/llround.texi: 
+  copyright: ''
+  hash: c748140ca47bdf7b93d2ddb245999ef7671f9e6329ae7386dd7aa9bdc0c0c61d
+  license: ''
+  license_text: ''
+./doc/posix-functions/llroundf.texi: 
+  copyright: ''
+  hash: a974d182d48cf3f4f1387914256124829fc72ced4b4f0e241a1d298a1e6ab17c
+  license: ''
+  license_text: ''
+./doc/posix-functions/llroundl.texi: 
+  copyright: ''
+  hash: 16c0786bf5b7bd64b25182d4c35925082061e14e27ab40c6203d0f5f7838d6cb
+  license: ''
+  license_text: ''
+./doc/posix-functions/localeconv.texi: 
+  copyright: ''
+  hash: d9b5bac65cb3629c70d7c2bbc8423d1181dd32c3fd8e7a9c3db48a7fc5f2e884
+  license: ''
+  license_text: ''
+./doc/posix-functions/localtime.texi: 
+  copyright: ''
+  hash: f55efabe8a9cc3efe0e97ec9cc7abd10fdd6b44ce79eabb8ba9494a170c44414
+  license: ''
+  license_text: ''
+./doc/posix-functions/localtime_r.texi: 
+  copyright: ''
+  hash: 18eff3ee8b506b64c19546e4585097687ef46c56cf3023f29bbb7c36549bc668
+  license: ''
+  license_text: ''
+./doc/posix-functions/lockf.texi: 
+  copyright: ''
+  hash: c7357159d3ec65d81d8ae3ae09048741deb17c3d24105341bb844ae4d6c68f75
+  license: ''
+  license_text: ''
+./doc/posix-functions/log.texi: 
+  copyright: ''
+  hash: be6326972647fb62ffadb5a669d7d58dde061bc0c584cdd502e09f1b939d4926
+  license: ''
+  license_text: ''
+./doc/posix-functions/log10.texi: 
+  copyright: ''
+  hash: 4bf234e16cce10eb06a07bc2c0c01211e19431dd14e99f073621a87a4c1fb68f
+  license: ''
+  license_text: ''
+./doc/posix-functions/log10f.texi: 
+  copyright: ''
+  hash: 811604f34b79d58d4d2b00f03dec4623e329696cae765555f7a016594f0310e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/log10l.texi: 
+  copyright: ''
+  hash: e985c831bb6f56ba639b385c95b36fbff47864717facca550c8cac55e5055b21
+  license: ''
+  license_text: ''
+./doc/posix-functions/log1p.texi: 
+  copyright: ''
+  hash: 499f997d56262cd2f6418e1ec7e697e73874bf8fa3bf66d94d569994cc040c7f
+  license: ''
+  license_text: ''
+./doc/posix-functions/log1pf.texi: 
+  copyright: ''
+  hash: 850d0d4573c9bf0ffb16b33e910d10c99a45e0cd8d0eac98494724760c777cd2
+  license: ''
+  license_text: ''
+./doc/posix-functions/log1pl.texi: 
+  copyright: ''
+  hash: 6920d505b2ccd43777218043d90d6c4410d8c87997dd73b2f249bc2360d67582
+  license: ''
+  license_text: ''
+./doc/posix-functions/log2.texi: 
+  copyright: ''
+  hash: 72c0f561bdbe81af893f8e873ebd4dbe806bad530db44f519b19409199082887
+  license: ''
+  license_text: ''
+./doc/posix-functions/log2f.texi: 
+  copyright: ''
+  hash: 109ae05a1b36fa1174a4d4407fa99b2c5eaae2e7b9e30f59e3faab1178d9e85f
+  license: ''
+  license_text: ''
+./doc/posix-functions/log2l.texi: 
+  copyright: ''
+  hash: 98e4205ef799d4c24375f28e935eff27ccd0d67d86bd6779b8405677d11f0523
+  license: ''
+  license_text: ''
+./doc/posix-functions/logb.texi: 
+  copyright: ''
+  hash: 6d395e4ef941920f778506ad202ac5dcb235ae030c9ccfe916329e49a63c7b71
+  license: ''
+  license_text: ''
+./doc/posix-functions/logbf.texi: 
+  copyright: ''
+  hash: c732075e88b1628ef63b9205c9def17bcaf758d1e0c35992a2fafc3d2528655f
+  license: ''
+  license_text: ''
+./doc/posix-functions/logbl.texi: 
+  copyright: ''
+  hash: fca1988f0cb72ad80a0962568a412de015cffb28a4cbbb9a1a81db50e29f47c2
+  license: ''
+  license_text: ''
+./doc/posix-functions/logf.texi: 
+  copyright: ''
+  hash: 599a740ebf9dc12b8baa17e0e18aa126df9b8bc2ac51aa7c7a556693ceb61af2
+  license: ''
+  license_text: ''
+./doc/posix-functions/logl.texi: 
+  copyright: ''
+  hash: 96139ba06494cf8c9fdb20a21e11fe8877bb1c22c528f5f8fafc57131b5be12b
+  license: ''
+  license_text: ''
+./doc/posix-functions/longjmp.texi: 
+  copyright: ''
+  hash: 8037266751fc7a136b74fc698dde403a0fa71c5aaf9c84d2f4e0ae27994fd458
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrand48.texi: 
+  copyright: ''
+  hash: 869c04b348c9b6123c213743a00e56a0f3c5b4140dd0c88b90af0677a594a7ac
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrint.texi: 
+  copyright: ''
+  hash: 5e8f49fd176642d39b75ce85fa4883dd177ae6365bb3f7bc01d1adfe57137f05
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrintf.texi: 
+  copyright: ''
+  hash: 08dafff5e7cdc373b185b07d2e59e50c6c21f34bba5297e4622267f3e5ba81bf
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrintl.texi: 
+  copyright: ''
+  hash: b6b93015a9cd70a2b2a2d7f4f6c4e03b259a83dfb0e4850be2dbc5125557a3a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/lround.texi: 
+  copyright: ''
+  hash: 7ce7fba4c411195fb1fd21ceab0c0087af9f72fa0c8582ecf336f7e485e1d50f
+  license: ''
+  license_text: ''
+./doc/posix-functions/lroundf.texi: 
+  copyright: ''
+  hash: d2fd89e04139885ec3fe722000f941fae649dc9a7e37e9e57651994f02c20e9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/lroundl.texi: 
+  copyright: ''
+  hash: 921cf7eb1bc71b4502501b3ce8d15cdf97000bd44378a8c58f624e8b89f6d528
+  license: ''
+  license_text: ''
+./doc/posix-functions/lsearch.texi: 
+  copyright: ''
+  hash: 37eec18ff286f167792759b48ba4225deeb6aa273436f0b3dbbe0bdd23c4f2c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/lseek.texi: 
+  copyright: ''
+  hash: 51e17228d34badd1144f78cdd1d398bd81f85ac3231f9ce3c1158f58e2cd98ad
+  license: ''
+  license_text: ''
+./doc/posix-functions/lstat.texi: 
+  copyright: ''
+  hash: ee413eccd9b78bf14988721a2eeb3e0ef1a0f352a9381743add4a0fde7d15484
+  license: ''
+  license_text: ''
+./doc/posix-functions/malloc.texi: 
+  copyright: ''
+  hash: e78d7433731db2f25215c9b85d86bab4074a9386c851e3e7652b3a773f9ffa4c
+  license: ''
+  license_text: ''
+./doc/posix-functions/mblen.texi: 
+  copyright: ''
+  hash: 6d48d1ed4b248c087c438895fc11497d19518e31fd66e3b62dfb31a82725fba4
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbrlen.texi: 
+  copyright: ''
+  hash: 0ad799fbab5e5ba27244d58a868783bef00fefc119f78dc1e60bbd4798d4f51e
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbrtowc.texi: 
+  copyright: ''
+  hash: 520568480543ec68eb430ac4973176f6b1b2d43c0e6e4d45ba73aef60a87eee5
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbsinit.texi: 
+  copyright: ''
+  hash: 5df56fe636ad7622c7d031432f90eb3e4538ae9741ef0dae2b26dce74bf28c6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbsnrtowcs.texi: 
+  copyright: ''
+  hash: 1e379a2b7e5692fee1cf2caa04b0f12222eb783c0aacffee63560278e24e6ecc
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbsrtowcs.texi: 
+  copyright: ''
+  hash: 45316856d475ec5e2b93376b87b78c48f7f8d80439cd569005b87b8ae1d7f903
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbstowcs.texi: 
+  copyright: ''
+  hash: 0ce649672c4e398cd8cf49a87e9b998673d368e3f9cccb224a05f172ce73e065
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbtowc.texi: 
+  copyright: ''
+  hash: 715f7f61b6dea73f4e6db5662d9eb0d7117bf43a6e82afd979f2992d992de84d
+  license: ''
+  license_text: ''
+./doc/posix-functions/memccpy.texi: 
+  copyright: ''
+  hash: a6d645adccd00addeee11377bd0d94a9a49c5abc74697957704ef86ef88d7ecb
+  license: ''
+  license_text: ''
+./doc/posix-functions/memchr.texi: 
+  copyright: ''
+  hash: 3548b31bdafed633760e3d40a863cfb4b7eb601216d255a29de29bb5f7088f9e
+  license: ''
+  license_text: ''
+./doc/posix-functions/memcmp.texi: 
+  copyright: ''
+  hash: fb3797a49dc2164707d9ba379894b5b1e34d43b30e554e4bc3782e4509001f2f
+  license: ''
+  license_text: ''
+./doc/posix-functions/memcpy.texi: 
+  copyright: ''
+  hash: 271f9b21c10b20785135079403e037a4f52ad844b7602913211ff63f94564bcb
+  license: ''
+  license_text: ''
+./doc/posix-functions/memmove.texi: 
+  copyright: ''
+  hash: 0f200deaacb14c33d323ffa83873f3b54922ae9f6c0306fe66c0516671387261
+  license: ''
+  license_text: ''
+./doc/posix-functions/memset.texi: 
+  copyright: ''
+  hash: 493093091c332e7fc5a23362e072380e883d206806a2326770839b8e60f0d3ca
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkdir.texi: 
+  copyright: ''
+  hash: 93475369c168cbc0c38f7b20835aee152d2ae281996e0d345aac4cbfa7abc331
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkdirat.texi: 
+  copyright: ''
+  hash: 55a0d02781ba86cb46e9723bea32885e1790894fa991dc3c01e6506e5fae2f81
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkdtemp.texi: 
+  copyright: ''
+  hash: 58eea11250f1276e5fd5c59cc33e1addcc62f6cd091dd15a83e428be08f7b252
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkfifo.texi: 
+  copyright: ''
+  hash: 39b9fab073e009e8b6a169b2190d5572e513385c694e327e70bcf1db6a159b35
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkfifoat.texi: 
+  copyright: ''
+  hash: 205800e3bc3436f4b16ce670afff063c55a0da3a798b107e364045fa4a967ed5
+  license: ''
+  license_text: ''
+./doc/posix-functions/mknod.texi: 
+  copyright: ''
+  hash: 3f6809f0a4fa73e85bc918802a632cd0192c1c5c2801cd7eaa1b2824469fd3a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/mknodat.texi: 
+  copyright: ''
+  hash: 8e780cc65b29f438053a6cb070c21ca28168dc988f47fb72e9f3810c721768d8
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkstemp.texi: 
+  copyright: ''
+  hash: 854e7e497a0388612e8d2d0c212c25f4fd94333ba825e1b9df90b94bbbff394a
+  license: ''
+  license_text: ''
+./doc/posix-functions/mktime.texi: 
+  copyright: ''
+  hash: 9948a151a3eb7c4b07a411a58f1bc5da74bdf24f291daae2f1262a0fdd044804
+  license: ''
+  license_text: ''
+./doc/posix-functions/mlock.texi: 
+  copyright: ''
+  hash: 3ddcd068484f0953b2b2583b4036fdd4d6ecb22893c51cacbb61a36f1493c6bc
+  license: ''
+  license_text: ''
+./doc/posix-functions/mlockall.texi: 
+  copyright: ''
+  hash: 2d15848617dd2c8c5b5d582ba37f8def1777193fefd8f521f1e8583682c62a21
+  license: ''
+  license_text: ''
+./doc/posix-functions/mmap.texi: 
+  copyright: ''
+  hash: bfee4ecb3ebec6d283db88b6cd390ef0301ce7a0937a80d25529c74f0b8f569e
+  license: ''
+  license_text: ''
+./doc/posix-functions/modf.texi: 
+  copyright: ''
+  hash: 36b354917e56d61e5900a08fab91604eaa9cc08e2d86e46267f8d898c818bf40
+  license: ''
+  license_text: ''
+./doc/posix-functions/modff.texi: 
+  copyright: ''
+  hash: f7b8c38291b91e6ad35e04c0ebfb9097945ce77ebda26a3c990bf2fe1aaea28a
+  license: ''
+  license_text: ''
+./doc/posix-functions/modfl.texi: 
+  copyright: ''
+  hash: 3b679719015e572d20de79124954057ab191f83370ed03edd791b794cfe6bc43
+  license: ''
+  license_text: ''
+./doc/posix-functions/mprotect.texi: 
+  copyright: ''
+  hash: 3d0e06eb9e85ed18105ac9c8f7ad12a98e74b8b3a67de5e954dc6154290cb58c
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_close.texi: 
+  copyright: ''
+  hash: a56bfb44d12f03e97f995b9a9c1633b24f89498f43ebbc542b4d352b1778cd08
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_getattr.texi: 
+  copyright: ''
+  hash: 8ac60fce24f63e597e3177997e50fb60bcc5fb27a291934c400a0648f9326552
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_notify.texi: 
+  copyright: ''
+  hash: e0ba4512bebe0e27c550f7b746e54cb1925f3b3db361afaa8f4ee31a7e528710
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_open.texi: 
+  copyright: ''
+  hash: 8849def00e0a469a4c36a935d2a9edacc7a8fca13afc8d0b189b1ab3a8c4a263
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_receive.texi: 
+  copyright: ''
+  hash: 41a216e485977c77bc0469b7caca4239d7b859ee983130f7cbb60df8b0c743e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_send.texi: 
+  copyright: ''
+  hash: 034db31411edca3bd8d9aa67b8dcebc8bda230d3dfe632da530c17bd4c4544d4
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_setattr.texi: 
+  copyright: ''
+  hash: e5a4f564cc977a25d0ee56ff5129950ab519621fa7e8161649ef772f72159396
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_timedreceive.texi: 
+  copyright: ''
+  hash: 8d49fce0e031fc61180b5352a420b1fe8ba491b8ecf4ccba972e3e9ebd6e7631
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_timedsend.texi: 
+  copyright: ''
+  hash: a79f94772aefae158a027486aea868c68d2fe9e08eaf409ec3540d187dc16f00
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_unlink.texi: 
+  copyright: ''
+  hash: 7b5dab50039e7c0b0f3170569e637158b1c1bf41c38e13d14986cea14f56c25d
+  license: ''
+  license_text: ''
+./doc/posix-functions/mrand48.texi: 
+  copyright: ''
+  hash: 77b10e37a5687d7495e536135140dd9e074b12afc20f2d3e3dd07073057b8972
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgctl.texi: 
+  copyright: ''
+  hash: 46d3ee99b2282ef2910c1b2592050c0cf79178bff7eae0c92ca2ac2f7336b2a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgget.texi: 
+  copyright: ''
+  hash: 58fc127eae240377ef7505629f2570cf4e3276d5d301994fcb171e5d6b367ffc
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgrcv.texi: 
+  copyright: ''
+  hash: 88bf2464eb8f30cbb7678eb5f8582cf8d2c4644bc486f30146d77d2064e10c7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgsnd.texi: 
+  copyright: ''
+  hash: 9f75f5e72c64235284ea705f9b5fe2e6f9aea288231af9bc5dfaf7f66a26fa7f
+  license: ''
+  license_text: ''
+./doc/posix-functions/msync.texi: 
+  copyright: ''
+  hash: ff9ca91d2e004f54a4b0ef17bb84d7b272507c512312101dae3bd3af1be33e90
+  license: ''
+  license_text: ''
+./doc/posix-functions/munlock.texi: 
+  copyright: ''
+  hash: f441bed9fcbcb0651991726777c715db07ca4847e81820ede03031a157d97c9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/munlockall.texi: 
+  copyright: ''
+  hash: 550be841155556e1b32abab434902c90652e6a481f0e539fa6ad9f0342967900
+  license: ''
+  license_text: ''
+./doc/posix-functions/munmap.texi: 
+  copyright: ''
+  hash: 47168b653c372c13df047fa6fdb676f3064d2f2a0968c7e9dcd0383d16134841
+  license: ''
+  license_text: ''
+./doc/posix-functions/nan.texi: 
+  copyright: ''
+  hash: 0a369ac906fcd75126107c5a2079e19d39ac77c16fff7959d1283f3692f2d6c9
+  license: ''
+  license_text: ''
+./doc/posix-functions/nanf.texi: 
+  copyright: ''
+  hash: ddff9bef8fbddbb5702b052b2591f73ae516edafe27040fe81d4abbdbc0d2dd8
+  license: ''
+  license_text: ''
+./doc/posix-functions/nanl.texi: 
+  copyright: ''
+  hash: 55f965fb9e233ea8afdd9b3ef17ce5d14877c6ac793e0c9e8b160ac423075509
+  license: ''
+  license_text: ''
+./doc/posix-functions/nanosleep.texi: 
+  copyright: ''
+  hash: 74dbeddd80b4214c4974b632dae914216068c850827943c4904342e11ef8a2a6
+  license: ''
+  license_text: ''
+./doc/posix-functions/nearbyint.texi: 
+  copyright: ''
+  hash: 13393f4950af6047d63e095573a302430f81f67dc0c50408609af16e34d6e142
+  license: ''
+  license_text: ''
+./doc/posix-functions/nearbyintf.texi: 
+  copyright: ''
+  hash: 658e59bc27cd904e0cc47775321320c8377162f26b6d18de60806a40b96e1352
+  license: ''
+  license_text: ''
+./doc/posix-functions/nearbyintl.texi: 
+  copyright: ''
+  hash: 661f4dab520ac6b7bb2b11af811a20f3f94e1316de51decb0473347458399b8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/newlocale.texi: 
+  copyright: ''
+  hash: c04df75e62461fd14ae6c3d3ebe84ee9df02879c42e5ec26e3badb347e8a822b
+  license: ''
+  license_text: ''
+./doc/posix-functions/nextafter.texi: 
+  copyright: ''
+  hash: 23887e9fbefc390b519abbea6463ab6aa11624d06486049a55f9027ab63e0297
+  license: ''
+  license_text: ''
+./doc/posix-functions/nextafterf.texi: 
+  copyright: ''
+  hash: a0739a1545689a8a038e7f98cb5da84b0c2e4c668767cc241f669e1704194921
+  license: ''
+  license_text: ''
+./doc/posix-functions/nextafterl.texi: 
+  copyright: ''
+  hash: d20c3001ccd5e5ce8d6ef61d92bfc6ecf9e9bca011df94ced795f48cf3dc789f
+  license: ''
+  license_text: ''
+./doc/posix-functions/nexttoward.texi: 
+  copyright: ''
+  hash: 837e8d7788c026deb3665bb845b6da33504cb7b33b457b86b2b8ec0916d1947a
+  license: ''
+  license_text: ''
+./doc/posix-functions/nexttowardf.texi: 
+  copyright: ''
+  hash: bb03bf44dad18e6e2a6f1c7a066871d7a89d2fbeb520bf1399522c9d7b35ba98
+  license: ''
+  license_text: ''
+./doc/posix-functions/nexttowardl.texi: 
+  copyright: ''
+  hash: 082ca469237887b3be9e6ddbe4ae66c7f5eed2f7fb7062b0459ab448bd830692
+  license: ''
+  license_text: ''
+./doc/posix-functions/nftw.texi: 
+  copyright: ''
+  hash: 7fc01f24b0225147ab2c52dc7481fb2663bb13253c9fc0a485991f3bc872b472
+  license: ''
+  license_text: ''
+./doc/posix-functions/nice.texi: 
+  copyright: ''
+  hash: 58412f950c076fdb2593a0a7f2cefa1a80d9d131fb4c3052ea7ef9dc859fecf5
+  license: ''
+  license_text: ''
+./doc/posix-functions/nl_langinfo.texi: 
+  copyright: ''
+  hash: 8cf67efe07150e73545ca1afa1ae02d47bff384e876aed78f1b75998dc918249
+  license: ''
+  license_text: ''
+./doc/posix-functions/nl_langinfo_l.texi: 
+  copyright: ''
+  hash: 46d1682b37126005dcf251b40c854bbc8203ebdd0e7574f91535b4bfa8be7ead
+  license: ''
+  license_text: ''
+./doc/posix-functions/nrand48.texi: 
+  copyright: ''
+  hash: e36c51acdcb113964729a4a2eeb0ac143221961015efa80b42f2cd34f7270f66
+  license: ''
+  license_text: ''
+./doc/posix-functions/ntohl.texi: 
+  copyright: ''
+  hash: 84d74eeaededb546d305d99930dcbdc1ec3918999eb3fb851e28a2e7e37774c2
+  license: ''
+  license_text: ''
+./doc/posix-functions/ntohs.texi: 
+  copyright: ''
+  hash: 346b0124f78840014b5262a674e22a0703994c64c3adb0382afd49fafd802917
+  license: ''
+  license_text: ''
+./doc/posix-functions/open.texi: 
+  copyright: ''
+  hash: 9e866007c32b3f629186f32bce84b0a2a3e8cc628147c7d200325bd60e5b530e
+  license: ''
+  license_text: ''
+./doc/posix-functions/open_memstream.texi: 
+  copyright: ''
+  hash: 4afd28eeda8db17ab5af1f4571340f1593a74742069e35c8cf025d3e3edabb55
+  license: ''
+  license_text: ''
+./doc/posix-functions/open_wmemstream.texi: 
+  copyright: ''
+  hash: ab0f60c7c0a5d80df458598941a4f36408ebce2fc18455086a89a587a8b6e310
+  license: ''
+  license_text: ''
+./doc/posix-functions/openat.texi: 
+  copyright: ''
+  hash: 80fc53551f0a774542028faa3cd7dd7f257f96517e5a3bbf7f15d60c3fcab7ec
+  license: ''
+  license_text: ''
+./doc/posix-functions/opendir.texi: 
+  copyright: ''
+  hash: 409c08736bec42c21409505d8b5549e441a5af2426e3bd68dfcc7c0b5880f4f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/openlog.texi: 
+  copyright: ''
+  hash: 40e398533022603918e1db1621467abcac006a911ad223ea5ea7b80d98a69100
+  license: ''
+  license_text: ''
+./doc/posix-functions/optarg.texi: 
+  copyright: ''
+  hash: e9113b3f78a586f104d7a7e3bdce30cec774d7049394ed1c71473825b52c869e
+  license: ''
+  license_text: ''
+./doc/posix-functions/opterr.texi: 
+  copyright: ''
+  hash: ddda71a2c3fda560885aaf6c435efd85469d21bcb910f55e513971e25fb01fd2
+  license: ''
+  license_text: ''
+./doc/posix-functions/optind.texi: 
+  copyright: ''
+  hash: 192b89c39131f5ac56cb1a3d9199545cfee9c6fe3a13676980cf647c873d9124
+  license: ''
+  license_text: ''
+./doc/posix-functions/optopt.texi: 
+  copyright: ''
+  hash: d9f81d4c490100d92492662b974e59f12d07be11c28dc993037a84dfb37fdc0b
+  license: ''
+  license_text: ''
+./doc/posix-functions/pathconf.texi: 
+  copyright: ''
+  hash: c0dbda6dd42136873beaddaea136fa8d5e46596bfdc335e578a88f1954718794
+  license: ''
+  license_text: ''
+./doc/posix-functions/pause.texi: 
+  copyright: ''
+  hash: 7be4007b12a3aa330139297e66ae074f67ed9e19f3efa28582619f8c071c874a
+  license: ''
+  license_text: ''
+./doc/posix-functions/pclose.texi: 
+  copyright: ''
+  hash: 4361d8543ae29315a5c5e958d4db37667ba5317d2a3b334cc611046b77e73a7c
+  license: ''
+  license_text: ''
+./doc/posix-functions/perror.texi: 
+  copyright: ''
+  hash: b652cbfe9d21d2bbd3ee7784a6a707d27fc1e60293c59183002538640dc279f3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pipe.texi: 
+  copyright: ''
+  hash: cb47c3d1e90c0d73c702255148b3c20889270387c041db34e9c41b29920f90dc
+  license: ''
+  license_text: ''
+./doc/posix-functions/poll.texi: 
+  copyright: ''
+  hash: f05ad8c422fac0e80c3ae47f256e275d4a2f386ad1a8c258b3a40f16337f8dbe
+  license: ''
+  license_text: ''
+./doc/posix-functions/popen.texi: 
+  copyright: ''
+  hash: 4c7662a6c9a1f5fec49e1ed88fe924f8ba389ced30dc44570469332009095c20
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_fadvise.texi: 
+  copyright: ''
+  hash: ea8c8e4c81a8ad7a313cb6d2071239f26e453d6034b32cad4214ea95e4536247
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_fallocate.texi: 
+  copyright: ''
+  hash: 96ba33b3301a1d3b05885d284a49dcbeb84b73adc39ac1b7752f694e0f2eeab2
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_madvise.texi: 
+  copyright: ''
+  hash: 98abbcde99ca724ebecd7393f0bdc2f4425d743cdd8680118aa3df87c6d3fe81
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_mem_offset.texi: 
+  copyright: ''
+  hash: d18ab511cf764975dd21a03e966791ffe4e4f7352616a030dcaeca77dde7fca9
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_memalign.texi: 
+  copyright: ''
+  hash: 02a09479dd9153ce72aaa2dedefd1dd8b5e57f2b88e5f8d303f49dc60e4b3246
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_openpt.texi: 
+  copyright: ''
+  hash: 0f0fb194f87d863cb37d2585c3b4f6bde4369d1319d5d306c27d39d61844d363
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn.texi: 
+  copyright: ''
+  hash: e8116c7284d0ec8e3dc77be2760763dd4af6ccb6994f2021dd212cdf8e8ada0f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_addclose.texi: 
+  copyright: ''
+  hash: 5828164a4deeee9c954a4136871b3177b6eecfce75506176eb6cf3a4a9a62b21
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_adddup2.texi: 
+  copyright: ''
+  hash: 23e93dc2b98cc5650771f750cd28d8a2c3cfa59af0b565de46c712cf0b06ecd8
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_addopen.texi: 
+  copyright: ''
+  hash: 522057f36d8f4a88c26630242bc87528fe3805438388b44c93d97243e5e86ee4
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_destroy.texi: 
+  copyright: ''
+  hash: 0320d879a8c7e3d36619bfb1f542513ab285a601fc716bcab9fdea8764842984
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_init.texi: 
+  copyright: ''
+  hash: 9c12cdbb6ac1e39ce5f80f8dacd02b40fdce55904a2e4d3273598a7f1bffe25b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_destroy.texi: 
+  copyright: ''
+  hash: 385601a0adb59e6a946cc5ae70ad2121a0fc1f9cf9bde84bbbf7067ec3c2cc3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getflags.texi: 
+  copyright: ''
+  hash: 695f28460ef4a0e41614dff4ca0af1d3a1198c9ef166951ba33c8c1c6b9b83fb
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getpgroup.texi: 
+  copyright: ''
+  hash: 26c66e902b05529bac72419304ce248d35a25c40c99998b6cd93e4ea45cf0df7
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getschedparam.texi: 
+  copyright: ''
+  hash: 3e2294ef0ab8ac17b6d863152ba655db225f70152c455f422c01d3f765dea9b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getschedpolicy.texi: 
+  copyright: ''
+  hash: dd9c3f74a80529c49eb3962334b976c600292f50854c2eac240b32cdc573d28d
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getsigdefault.texi: 
+  copyright: ''
+  hash: 3e7e418f2d92c3196aa025cc49aa12be6db364564c10b87d44627ef5fb4f2807
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getsigmask.texi: 
+  copyright: ''
+  hash: 26b824db4f09a65050f6350b6971cbf95f99ad40d1c7659764abde3e54fd3227
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_init.texi: 
+  copyright: ''
+  hash: 05f5786c234980a42a111d033f5130bc683e09bd9cd420dbb993e0db4223241f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setflags.texi: 
+  copyright: ''
+  hash: c3de08bb23b2e056a9d1fa457d78be2d64717b957d66d6f7705215017389224b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setpgroup.texi: 
+  copyright: ''
+  hash: 548430de694da18955230250c1034b6b515fcf30129079d539a13f426c9fe22c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setschedparam.texi: 
+  copyright: ''
+  hash: af7be1846ac7bd0fc6d107f8399458067710b5e221a3b728512b6a6204c21913
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setschedpolicy.texi: 
+  copyright: ''
+  hash: 3adfc655a7b0cf55cc89761c9d64309a2cbf0adc724701cd3e2b2bd9a51f09ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setsigdefault.texi: 
+  copyright: ''
+  hash: cb24fc7291758ad7f30bad7a96cdd26f0defa4f28fec0be8d02a1e2ed6bc20a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setsigmask.texi: 
+  copyright: ''
+  hash: 3661e1c23a65c97c9af7008e3af513555234a91aaaeffc6e801f0757067618d5
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnp.texi: 
+  copyright: ''
+  hash: 55d59c76213c7914c86b8a3fb623b4c073d49641d72949547638acb49c9019d7
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_destroy.texi: 
+  copyright: ''
+  hash: 26c37bafe4af14e0a6c567e810277b9b5847122cf0f87cac16ff94a8b8e214be
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getclockres.texi: 
+  copyright: ''
+  hash: c6df2399c6ebb47e6328cf303b80492f9748c8a4f167ef2f563cda59860e2cfd
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getcreatetime.texi: 
+  copyright: ''
+  hash: 0bba6eb668452771990a8c1dfff7134f74e136d9f8618c4228b9f56cdd51e442
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getgenversion.texi: 
+  copyright: ''
+  hash: 3494fd0e404cc8a99e72fc28c50d13b44d0438785ac74292e84c20347da5a40b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getinherited.texi: 
+  copyright: ''
+  hash: 9c3dc2682ee4f8efbe8238a459642164bd53c4a73c5054f8cdc73dcb152db424
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getlogfullpolicy.texi: 
+  copyright: ''
+  hash: c6e5f0d91562ec40cc54987dbb2c567e9c66d6c87ac0954dca87d52b5b9f8e60
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getlogsize.texi: 
+  copyright: ''
+  hash: 04803d6d78b225f53aa3c6147bba5367f18ba362fcb9b9b55fba0719c8d75776
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getmaxdatasize.texi: 
+  copyright: ''
+  hash: c25ba97d572d5ca4f69629f2a78822d6aff93b73f4da397cf43e16e3b61a6aac
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getmaxsystemeventsize.texi: 
+  copyright: ''
+  hash: b0a2f0041320b5b3ad358757b24ed4fa1e016672af6746d8933e84075d33360e
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getmaxusereventsize.texi: 
+  copyright: ''
+  hash: 52791fc875f1f82253f29df6b7455f7e038f106efc716777d0f6fa70436a9822
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getname.texi: 
+  copyright: ''
+  hash: 37e62b2df1671442499b27356f9b6d3b77eb20ee5016cd5b4b15952e434d472f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getstreamfullpolicy.texi: 
+  copyright: ''
+  hash: 08910c37877f7e37e6eb305bbefb233cdc16865ebbb89081846a042134cae954
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getstreamsize.texi: 
+  copyright: ''
+  hash: bcc8352edee634fdc1577f4039f78bd777f7964032fcd36127a7251536f3cd8c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_init.texi: 
+  copyright: ''
+  hash: a2e83a06a534390b4974622a6b4d2ac1c637e52b91cf34d49576569d44148323
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setinherited.texi: 
+  copyright: ''
+  hash: 15dd2776c5a4bae1ff25c0388da2c6fe92ff206b9cdbf3c29544d97f2ba7465c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setlogfullpolicy.texi: 
+  copyright: ''
+  hash: 6123eeb6328f6381169708420c2560630406f4964acc3c260c358ed4f9a68cda
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setlogsize.texi: 
+  copyright: ''
+  hash: b25853b00b814a81dd0c5814c1d42f14d70347723160104fcd5d43ddd8d42077
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setmaxdatasize.texi: 
+  copyright: ''
+  hash: 6bdf3f85571c822f319ac0ff9e310fa9bfcf584558103f79368e262095a9c6ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setname.texi: 
+  copyright: ''
+  hash: 64e32d78a18d51e8bfd3b23f91878fb761b87cff345ed77fed1d753114b50c10
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setstreamfullpolicy.texi: 
+  copyright: ''
+  hash: 7123836aad4e0fb02113ade7138723da2ba36370a18b5b0751b1efbceb8f444c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setstreamsize.texi: 
+  copyright: ''
+  hash: 5e25d2adbc668b88bbd5d7a0ed7d0aa2c96a97c05f31f042fb5da5d54131db92
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_clear.texi: 
+  copyright: ''
+  hash: 246ba5555dc290c8b1e1320450b1caf1e1557a92ffaa798ce663c95dfda7e0e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_close.texi: 
+  copyright: ''
+  hash: f8b48c02b26295e68c4219cd771eb0485349083c7fd45d6fa34e4dc34e5adba5
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_create.texi: 
+  copyright: ''
+  hash: 7fcab2cefac75343564f45dbea419a5e305edbbcdf582d145a6314dc15a79296
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_create_withlog.texi: 
+  copyright: ''
+  hash: 60662414b3106f8d3a4ca1c75fc0484fa0d8d79d90421b817b18d77f2b516f7a
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_event.texi: 
+  copyright: ''
+  hash: f60fcf4bc32cf69788ea0b35884a8fdacd82591cbd0161391ff5eb298baf6cee
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventid_equal.texi: 
+  copyright: ''
+  hash: e98ad15e6d288cda7cd84504ad757be753c58e981254126a7013557aea9fd9c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventid_get_name.texi: 
+  copyright: ''
+  hash: c7596250743fd190cad5213006d0b9666c3a936be1dcebe04bdbe171a6cd0749
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventid_open.texi: 
+  copyright: ''
+  hash: b0962f6ecae87f4770e047b7d06cbf279151b4e50c6379241b1313e47e552d0a
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_add.texi: 
+  copyright: ''
+  hash: 1a546240a8fc1faa3f949ef383a67908b8070463825c543c0a4279b1ca25f784
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_del.texi: 
+  copyright: ''
+  hash: 972884e849006cdfeb74f21d360284b7f8c194ecb4114409b8a0d6ce7784242e
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_empty.texi: 
+  copyright: ''
+  hash: a8873a5c14dd2b52a595ecdbad9fde48f9b8d1cd659a88e899e4b3806908eeed
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_fill.texi: 
+  copyright: ''
+  hash: 4aa69e4079390a52ce6a9d3e70c0b2e66e884db7cdb9dd8836333ec31ef6ca8b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_ismember.texi: 
+  copyright: ''
+  hash: b2bcb139cf0f406f68a7da6a050f50a20ce76053be2cf598d5ce01720859938f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventtypelist_getnext_id.texi: 
+  copyright: ''
+  hash: 8168eab83a8019726c73e5a3eafd53fb848cb20f17bfb391eecef7f726781423
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventtypelist_rewind.texi: 
+  copyright: ''
+  hash: a8b698cb04bae7452a1aa92c9af23fb6bb24d78a4de08d7f6e7b2b6774769be9
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_flush.texi: 
+  copyright: ''
+  hash: 6adfa76be6079e6353cd3606c896b41897072e16923d73b136f08cbadc2a571c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_get_attr.texi: 
+  copyright: ''
+  hash: cdb6cef8bf0e98eb4ed074289005960626c82293df0ab4a32ea5527680c8e6de
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_get_filter.texi: 
+  copyright: ''
+  hash: b4e182e8a9af7d9168dd35eb4290462fb40be47f09e99710f4b84431a626f2c4
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_get_status.texi: 
+  copyright: ''
+  hash: 71d6651b8f05644b9a642980d8e8b1a2923ae9dcfd58048c81e91f82c3356f7c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_getnext_event.texi: 
+  copyright: ''
+  hash: 49bead6bca4c38a5341f86b18485d77660b93f22e7b56d9f034ac4a8636f5b5d
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_open.texi: 
+  copyright: ''
+  hash: fc529d52215c5e0f770f104bdbea24af448b43f1e793ade2b64d70205443868b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_rewind.texi: 
+  copyright: ''
+  hash: b3eff434d8501389631044c23517d57d12b9a80e0bdb7cac5b15fe1fee7b3bb1
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_set_filter.texi: 
+  copyright: ''
+  hash: 4d7f6ea838ed6c51adbe31fa219a22b5df80e697e4814dbd9ecc8f269cf762ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_shutdown.texi: 
+  copyright: ''
+  hash: 9293a9916aeabb2c74c1bc62ccf37cbae78dc1276a9a7276ac61ca129a5843bd
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_start.texi: 
+  copyright: ''
+  hash: f96fc628919e2fb8d1f0b687a9bf7590eb610167571abd2fafa736c37cfe9570
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_stop.texi: 
+  copyright: ''
+  hash: bdea8f560c0aa039862bbcf7dd669b6e17cbf3df5ffab49eb84d322a646fa644
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_timedgetnext_event.texi: 
+  copyright: ''
+  hash: e02e2628db360e9552151ea3cfdbe0d7cb10d05f5084c82be6fceac00c12fffc
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_trid_eventid_open.texi: 
+  copyright: ''
+  hash: c90234d6928930eb571c09a335c80e685e6188844d6032c5cb4f08d1d346c4af
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_trygetnext_event.texi: 
+  copyright: ''
+  hash: d73011efa2346a98ca0b075ad9ca871f92a3a336c550aa614c44dabed4cbf0ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_typed_mem_get_info.texi: 
+  copyright: ''
+  hash: c1ffc2cdb081c341c855a6166079e907b5f30d2bbd089fcdf3d4a5efb4c3e8a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_typed_mem_open.texi: 
+  copyright: ''
+  hash: c0923dcacc2e10d19cde0116b916900ee58bee17184540c4fc0fca56cf27afa5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pow.texi: 
+  copyright: ''
+  hash: 3588200be9beae88172c588ed3166f06aeaa63d7f7708b709e51179849668047
+  license: ''
+  license_text: ''
+./doc/posix-functions/powf.texi: 
+  copyright: ''
+  hash: 2c20228be41c7ae06e16f334a350ecd67e67d780f15ab1ace0b981472ff76e5a
+  license: ''
+  license_text: ''
+./doc/posix-functions/powl.texi: 
+  copyright: ''
+  hash: ec73f774d4f9e2730678a99849d7e449fa33553a4e00aa301eb3c37dee018529
+  license: ''
+  license_text: ''
+./doc/posix-functions/pread.texi: 
+  copyright: ''
+  hash: 94344ff20d9188dff7bcce1466828d3d8e19d41207d8c20e5eda87fce1752780
+  license: ''
+  license_text: ''
+./doc/posix-functions/printf.texi: 
+  copyright: ''
+  hash: cc1b5932488eafd7041e224c3c5f101cd6d45de4c770de8eb00c90ce7f61f056
+  license: ''
+  license_text: ''
+./doc/posix-functions/pselect.texi: 
+  copyright: ''
+  hash: 2d26ab5240ac27a518b2e987ba8d79e7b2c2528bc6a94093db97760c1cd30f9a
+  license: ''
+  license_text: ''
+./doc/posix-functions/psiginfo.texi: 
+  copyright: ''
+  hash: 110101075e0eb4d997d3fcf1818bff6cd029be26a916d95148d0b02c9a3823a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/psignal.texi: 
+  copyright: ''
+  hash: 2c42cdb7d36d4524202363bbc6c21af4dcf480f7996acbb464831b3501bb2401
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_atfork.texi: 
+  copyright: ''
+  hash: bd6f0ab6ff93e450c2bc4ca3c2863c21a3fe0696083d275cb1a9d1605ed02eed
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_destroy.texi: 
+  copyright: ''
+  hash: d033d6af41be3237328cbc28811f8e729e3d295b2e92e0c7f5051a73cfffdbf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getdetachstate.texi: 
+  copyright: ''
+  hash: 6e2a3ef0f6207878bb09ad68185f8e07bc1b0d23b1c7551d5445d9439f63cadb
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getguardsize.texi: 
+  copyright: ''
+  hash: dcc2fc4b9fa5d43877dbdae216c9a782af6ddd21b4cc251c6f0884d6ead8ddcf
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getinheritsched.texi: 
+  copyright: ''
+  hash: a6a1f044119243f02220493504aea24e555e10d684d75f76be7703cdc7907117
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getschedparam.texi: 
+  copyright: ''
+  hash: acf2bc407210fd0a87ea5a8bc8aca6ba382914a2ad8788c13589d65f5efb4662
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getschedpolicy.texi: 
+  copyright: ''
+  hash: 6568aff8a62e24e659319143e01e108068eb82ecb1d73e9305ba8e3af43f1dbd
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getscope.texi: 
+  copyright: ''
+  hash: 53127e6a0846038a197f491f7d9d4486cbd9e0d92e23182eca4a23643b7c7987
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getstack.texi: 
+  copyright: ''
+  hash: d55b1da7b04008428ba631234be9cfb38b53312aa69c148e116b682139eaf108
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getstacksize.texi: 
+  copyright: ''
+  hash: 345f3ee43d1e0f2efa8d4fab2b196d824b44868ee55bf828d4135653b9cb64e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_init.texi: 
+  copyright: ''
+  hash: 5ac9b50be719d7ce090e57f14970fbaa0109b04968d270e9f52a9c3d9e8508ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setdetachstate.texi: 
+  copyright: ''
+  hash: d78b76b4ed5cfe55a6f5e4ed77d137e8f317ea2d8f6eb5b160a72f7c5567e411
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setguardsize.texi: 
+  copyright: ''
+  hash: e7fac577329d9a3b6446d353473c83fd01c59f7e8548ad31cd292354304ac6f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setinheritsched.texi: 
+  copyright: ''
+  hash: cf31a0c5775bfd82489898e7c3f8c5b1bcf03787ac97d313de504a9f1a640463
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setschedparam.texi: 
+  copyright: ''
+  hash: a01e60c15e39cbd05318117c6a353663a658cff4c0060c732552bc0735e1a0b5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setschedpolicy.texi: 
+  copyright: ''
+  hash: 28c89cdb4b18dfaab2c400b96220600365c448c666125d97cc54c888ee6d4623
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setscope.texi: 
+  copyright: ''
+  hash: 546a917a46a49835d47fb7f4b9be526e27c99339c85e86b332417f39456da902
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setstack.texi: 
+  copyright: ''
+  hash: 3218b205686cd35238646c3f6be7ce58a9283171a1a242eb6d7949da02576197
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setstacksize.texi: 
+  copyright: ''
+  hash: 15ec368b367a6144ee7d39b56b4a4e994ccc0fc231413484a5bc5596417964b3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrier_destroy.texi: 
+  copyright: ''
+  hash: 6431e7465c2f611d477e2e0bbed31e7cb6dfa1f57afed483e3de3d06fbabc55d
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrier_init.texi: 
+  copyright: ''
+  hash: 2ccf8776f1720db644b2e40f5e45b2accd8e3a5134f9f5446d6ac243729f7ad7
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrier_wait.texi: 
+  copyright: ''
+  hash: c1b386eae130fb603d2f6d476958efcf09387fb73ce297e459e6d81e0dd9b133
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_destroy.texi: 
+  copyright: ''
+  hash: 913c8f495efff25824dbd8dc5faf2526b5b0e5160b1faae28f67452b3aee6936
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_getpshared.texi: 
+  copyright: ''
+  hash: 8e4afc65315f8b2e25d2c5b9e859363fd9ee7371eb7247d6112773c642337f6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_init.texi: 
+  copyright: ''
+  hash: 45369e6ac6f2f62e775581d3694e1c9ab726b910790ef4b5da5efe94778e2e49
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_setpshared.texi: 
+  copyright: ''
+  hash: 34825fd8bf5a6ae16e5b7a0ceaa60428e8ead85b8e0ada77345f10600eeec249
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cancel.texi: 
+  copyright: ''
+  hash: e8ba2f30835e3adf32710558d20f30e1cede0f548e4cc612f0aa36cefd207619
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cleanup_pop.texi: 
+  copyright: ''
+  hash: 56219e3c4261a24f8ae5c345420375bfed930edd72fe9de1145ad9bb6c8981b4
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cleanup_push.texi: 
+  copyright: ''
+  hash: a198aceadab367b9b5ec5528e6d9eb7071b44e88ba80d7505b07e86ed47b3799
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_broadcast.texi: 
+  copyright: ''
+  hash: 027f86eba7dbadc497e225c26b709124f8d27d3720f641e9a16d6e244f2e9999
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_destroy.texi: 
+  copyright: ''
+  hash: 700b1a47bb870ae67a0829d45bbe702d4e2d5c068f21338fe743c5f781a79b41
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_init.texi: 
+  copyright: ''
+  hash: 1aac869c309f1e1259d594533ca99cbcb409ae20698e04313ecb76af8f586125
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_signal.texi: 
+  copyright: ''
+  hash: a3a421ae49ccf251516d0a9d806441c29c08782dec6a949f1b4132722924935e
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_timedwait.texi: 
+  copyright: ''
+  hash: b554412ccdd6610c8224a5828fc0cbed66e33dcf855b76bece44c72854f4b9fa
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_wait.texi: 
+  copyright: ''
+  hash: 69b9ed912a9a849f38ef59137cf08ef99807a0e560af5baa98a843186838f299
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_destroy.texi: 
+  copyright: ''
+  hash: dc71cdaf1bfce2c599af6d02608e23a7a1a36b35773b61a9352930193521ceb6
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_getclock.texi: 
+  copyright: ''
+  hash: 4f39462a8d0cccfa468c219ae84735d0e4959170660ddb5335d4d0e58a310952
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_getpshared.texi: 
+  copyright: ''
+  hash: fd9bb140a4bb9d1596e1a1db77d9fc3e265aa7cbfeae2d7b82c203a3933a4aa2
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_init.texi: 
+  copyright: ''
+  hash: 644aa43dccb6aaa12b07b5af03bbaa07a2ce79c14e11441ffcc89e2980b45fbf
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_setclock.texi: 
+  copyright: ''
+  hash: b5413f0e67888a8c5591631a2e7fc8f9d5940b4295d578bc47c5f6b392fe5775
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_setpshared.texi: 
+  copyright: ''
+  hash: 18c18d1442e96df08c95dff4c476f839a9bf33f67fc7cb2d318af1f7a5129452
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_create.texi: 
+  copyright: ''
+  hash: a7e377395df018ad7be35a051f5a0cd6cd2c76118befa1e9d53a2023bd751923
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_detach.texi: 
+  copyright: ''
+  hash: e80c073a363c91dbc7080f7a4e511f7b648bd28f030c4f98faa1490086d52a32
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_equal.texi: 
+  copyright: ''
+  hash: 6e2bd3ef9f0cae069ffd29ff4fba0879fbbcdd9cfbaf39327b389d27c0d21dc0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_exit.texi: 
+  copyright: ''
+  hash: 232c5cf778c2cfd1e637aee54d72705efcf3dbff8f7164240c1a171d0cdc7d8f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getconcurrency.texi: 
+  copyright: ''
+  hash: da08fbe0f6fd2e342e8e5de796f98166968f5292462c2b0bde472cc2cd27aebf
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getcpuclockid.texi: 
+  copyright: ''
+  hash: 5189825a695d0c00cc9f0275ad6f2d9c949771c1d65c1f33eefbf58f45da4e30
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getschedparam.texi: 
+  copyright: ''
+  hash: 6fb7f3364b7723dcfe69708e696f958421113a542fc16c23d6b437c61c3ebe69
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getspecific.texi: 
+  copyright: ''
+  hash: 24418f9959f93b40084233797e9374b3d70eca2260a775e1abdc744d43b0e72b
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_join.texi: 
+  copyright: ''
+  hash: 9039ce2feb029a58d9fbd965e0d2f4cee351059727f82a85c67059c0319bf525
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_key_create.texi: 
+  copyright: ''
+  hash: a1cb1a3db0f8853edb4e810872d4337be4fe45284107e1fb1fc3811fd3b4559c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_key_delete.texi: 
+  copyright: ''
+  hash: 7a66f0931de9d103c2dd8e413f396dae4cd106a88c96ad695cd60bd31febd79e
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_kill.texi: 
+  copyright: ''
+  hash: f08bf3510c8f593d3dd76d9a59eac31ac729ba9d94dc75958d0e904f5c9c98a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_consistent.texi: 
+  copyright: ''
+  hash: b6e43d57f04c939eeeedf83aceb7a105ca5067531ea8db38d44306ebe8e9fd4c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_destroy.texi: 
+  copyright: ''
+  hash: fd4bde78e9fa8b117ae2482b8597dddc097527885e32cacbf6730f38ca8e06ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_getprioceiling.texi: 
+  copyright: ''
+  hash: 2a9d8cf7cc4fc5e2fe50656bf10493668ed1c6a1a0e8cdebcb14f4a3fc762e88
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_init.texi: 
+  copyright: ''
+  hash: 0e842a0e38c78b48dff33e93b8092d7977b5e64e398a246dbcf508bd957d2d61
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_lock.texi: 
+  copyright: ''
+  hash: c6d6b927e067c0c74541aa777d5aca52d14f124a01c458da4e0c465d2a535fc5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_setprioceiling.texi: 
+  copyright: ''
+  hash: e3a36023a14d9b48e692ccf929e1848ccb1c04cb2570216858055dff256c6a62
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_timedlock.texi: 
+  copyright: ''
+  hash: 140fb1fb8fe999687fe6799e7169f0dd2973de5387296d1d31033f527570ee9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_trylock.texi: 
+  copyright: ''
+  hash: 20faf9cb662d153f4c93433660e024c693a1211a5181532029be3d28bce03e6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_unlock.texi: 
+  copyright: ''
+  hash: 7110cf9b01daabfcf76bd06905a56f819033d4d7a93c89b05800b79171d38e19
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_destroy.texi: 
+  copyright: ''
+  hash: 1290c79fa1c38da5e15fedcbf354d4a3a0e1481df5bd5433387c1d96f2baac32
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getprioceiling.texi: 
+  copyright: ''
+  hash: 449f95217262c8abc79143cb2459f618a5967e7af42b2ac3981a442ddb9a9c06
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getprotocol.texi: 
+  copyright: ''
+  hash: 9f9268d4333f759584749fd1605652f4186d5f0b5acc680b39bdb7061b54f48c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getpshared.texi: 
+  copyright: ''
+  hash: 295bd74fc073a734721873fa72a22a174e18783e9deeec13f06517f689eacd22
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getrobust.texi: 
+  copyright: ''
+  hash: e0610f724a55de771fe504907799acfe94fb6ba3c67d0ce579d759ab973d19e7
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_gettype.texi: 
+  copyright: ''
+  hash: d12236caf122faf894bb50228a5472f020d954e207cd9dfd0e577ee8c8383f71
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_init.texi: 
+  copyright: ''
+  hash: 3b3ecf6261d6da298805c4cc95962a3ad36890bb77ff6b7b6f3132086e051167
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setprioceiling.texi: 
+  copyright: ''
+  hash: 1ece8317019dd82c5e318b4d9b5882802ea01045a409297cf8dd440ad9d3103f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setprotocol.texi: 
+  copyright: ''
+  hash: 5e6a366266f46a0357684749782e6197e1809fba9a2d513688406e49ad31d2d3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setpshared.texi: 
+  copyright: ''
+  hash: 2fb993d88e4bbc911842803392deba53e3813c527c52d905c948b73bb4925286
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setrobust.texi: 
+  copyright: ''
+  hash: 6bcbd7ab232100484cccf5e34ae17399d7c916a5acc23f403e0a0a844cc3e4ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_settype.texi: 
+  copyright: ''
+  hash: fd9b09b6caf5b9d30b13ad9e48dc4603f3ed94da2f8183e721cddb1ccc436dcc
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_once.texi: 
+  copyright: ''
+  hash: 263f7917fd13b0a74ac2ac702382080845565de894f62c71a2ac5a00ade097a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_destroy.texi: 
+  copyright: ''
+  hash: e474fee400949358c98c0d2eb0e85c3467fc0ca4bdb4fcc639ed9f36abe8fd82
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_init.texi: 
+  copyright: ''
+  hash: db1cb2523554cd336286ed884dc68f8f79b1558822da6d7872998801edbde3cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_rdlock.texi: 
+  copyright: ''
+  hash: 0d60cb0bd577699f1938cb35e9d4d33c4fee07c9b066bcdb6827770477de24a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_timedrdlock.texi: 
+  copyright: ''
+  hash: 3599fc1e125134eddc84887d08f98a66259a161a2e20d3eb6aeaa56e388c0c49
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_timedwrlock.texi: 
+  copyright: ''
+  hash: 2b1fcd9f3b9fa43c87a6c4e253ab9f0d59c266668fa4f8bf951ba0c9ef16d66c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_tryrdlock.texi: 
+  copyright: ''
+  hash: 42205ebc500b32d14edfe041eda18f6ab7ca80e145b0b5f39ca6012f2cf1bab4
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_trywrlock.texi: 
+  copyright: ''
+  hash: 4a1dfb6ad7aeb5bb915ca30df282fd851dd2b7924ddced7c4855bfe9c520b2bd
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_unlock.texi: 
+  copyright: ''
+  hash: f87d3a230966b3d5b888d51b96f49074ee121a4c6f0b44cc339c281aac4fe6e3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_wrlock.texi: 
+  copyright: ''
+  hash: 615fd6fce3bfa2157552bbf3a06e7840653a17f0f5f5a23268553002b5871983
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_destroy.texi: 
+  copyright: ''
+  hash: d650c45f94e3f7cb29c19693d46694c3b1d965e41bf6db7f4490611eee0a1c89
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_getpshared.texi: 
+  copyright: ''
+  hash: 3b9cf0c4acb7572f4c5ae44b36365c60d1a3ef364d683ba6d741c60c30cda433
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_init.texi: 
+  copyright: ''
+  hash: 749ddd92db56e96ecaadb08122546a3cc441cbca68fd274de2de3c69514cc95a
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_setpshared.texi: 
+  copyright: ''
+  hash: b91d04b919f5d05dbda7c3530244929f89f83ebbdba05fffc494820d2a853842
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_self.texi: 
+  copyright: ''
+  hash: 13a7ed58caa8e8ed5afd05a4866c5a149f397fc180ae483191be4f2bbe1e873f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setcancelstate.texi: 
+  copyright: ''
+  hash: bf779426dbcb25c40780822d1af78c8c245730481c02b2f663b25c06032cc1ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setcanceltype.texi: 
+  copyright: ''
+  hash: 21d2905f71f6a29504e1e41139d61d4c2c30ebeb03d8315cdc5e4a92e4d2b80c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setconcurrency.texi: 
+  copyright: ''
+  hash: 3a0aabbee0c7c7de01d8e594d7585d2f80b108a9824299253f41979ab4dbfb82
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setschedparam.texi: 
+  copyright: ''
+  hash: 6420aa34f4afee0ebe566288a398a735322e438b631ce128637752bc8e8820be
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setschedprio.texi: 
+  copyright: ''
+  hash: 9354214523a1c7e37170ac1a21531f009477b6c148aaa0a251544066c31aa78f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setspecific.texi: 
+  copyright: ''
+  hash: 154fa05dbb23ec8136e52430b633c487de9c68431f8bdd889864189f88b4d946
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_sigmask.texi: 
+  copyright: ''
+  hash: 5f84be77ac9a94d39f9890e0d6fc55981fdce2afa262726750e4bb8b08d930fc
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_destroy.texi: 
+  copyright: ''
+  hash: 9b80cbaf20504167e3cee0833877632e1cb5cec0ec848e17e6e92911498e12ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_init.texi: 
+  copyright: ''
+  hash: a3726f0acaefef327cb10544fdff423af698b5f1cdabe0a26b27c4b5d8d80521
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_lock.texi: 
+  copyright: ''
+  hash: df22dcb8f68c58da23c21856c108590d8b7be072110595e1db0cc8f04a431ac0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_trylock.texi: 
+  copyright: ''
+  hash: 322d6baf08a723f11fa1176b4877d385268cf6390c885ef2cd4defda8e7767db
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_unlock.texi: 
+  copyright: ''
+  hash: 14e1ef4681b04777a2effa8cc09f6b9f54df272574e33f41a53c61fdce370242
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_testcancel.texi: 
+  copyright: ''
+  hash: ed23a37d1c2d0cd758558e27f966f24f80c536576d6fcdca1253c41b23f3edaf
+  license: ''
+  license_text: ''
+./doc/posix-functions/ptsname.texi: 
+  copyright: ''
+  hash: 1b5c93eea933da86b4d3af086ecdd2d1251250a5ea58a3a65f293562e0e8a336
+  license: ''
+  license_text: ''
+./doc/posix-functions/putc.texi: 
+  copyright: ''
+  hash: 5d141e589a84fd6b8317e39d3fc5aab79d8b46f53d544ff312902a7b91ab26ed
+  license: ''
+  license_text: ''
+./doc/posix-functions/putc_unlocked.texi: 
+  copyright: ''
+  hash: 37f5c73db32107b5c76b4cba44714c31abc9c138e1073d8c4925179e2cfd6c5e
+  license: ''
+  license_text: ''
+./doc/posix-functions/putchar.texi: 
+  copyright: ''
+  hash: d34911f284b53c744d1adaff6fd19a42a32617bcf3680978cc05a4eefe594d45
+  license: ''
+  license_text: ''
+./doc/posix-functions/putchar_unlocked.texi: 
+  copyright: ''
+  hash: fe7ef6645bdf1963d78a2b5127e040bde49dc0e5025aaa9b7dfbbb6260da429b
+  license: ''
+  license_text: ''
+./doc/posix-functions/putenv.texi: 
+  copyright: ''
+  hash: 1225f20a845f37cd71a9e0bced02458df4fb6c6f115771fbbe61fea3b4780848
+  license: ''
+  license_text: ''
+./doc/posix-functions/putmsg.texi: 
+  copyright: ''
+  hash: 75b6e41c21c6f36a1fdbc2b4c6e03a8c887088897174ec890231899889f30172
+  license: ''
+  license_text: ''
+./doc/posix-functions/putpmsg.texi: 
+  copyright: ''
+  hash: 3903ad394832d99822a9c28af39ea21eee403b16803d11d6480024d27d06bec2
+  license: ''
+  license_text: ''
+./doc/posix-functions/puts.texi: 
+  copyright: ''
+  hash: 0c3315db7f98e899502f5a99bd2659f35187abd17e2e6a8cee77f243ce622cce
+  license: ''
+  license_text: ''
+./doc/posix-functions/pututxline.texi: 
+  copyright: ''
+  hash: 66c8ffbb27d2df0fdd75e0c8c96790e18a16ed8b4f6bb78fc388232254be3a95
+  license: ''
+  license_text: ''
+./doc/posix-functions/putwc.texi: 
+  copyright: ''
+  hash: 6c60fa1822603d2c92c59f1e5e591e1af2b89112396c238d847a4b696eb5f93a
+  license: ''
+  license_text: ''
+./doc/posix-functions/putwchar.texi: 
+  copyright: ''
+  hash: b09cb7a268544b361a6518977d0cbb34f145881c66588f7a4834577e439bfe17
+  license: ''
+  license_text: ''
+./doc/posix-functions/pwrite.texi: 
+  copyright: ''
+  hash: c9bd2a13a91714d5752f09ef6f92b210e7e5e7df7f7ae6ad069e2705e8560aa4
+  license: ''
+  license_text: ''
+./doc/posix-functions/qsort.texi: 
+  copyright: ''
+  hash: eccfafd811e895dab2d612139558414963994ad85641a831a19ac92054427b1b
+  license: ''
+  license_text: ''
+./doc/posix-functions/raise.texi: 
+  copyright: ''
+  hash: 9168fc29b1d48f00797fd8aa7575ace765b3f20cb4ff6df9c81e2c5a7f75a505
+  license: ''
+  license_text: ''
+./doc/posix-functions/rand.texi: 
+  copyright: ''
+  hash: fbbf8b1aa9c9585a1951e87f039d4335f526c24c0e78e219db3192d1135cd0d8
+  license: ''
+  license_text: ''
+./doc/posix-functions/rand_r.texi: 
+  copyright: ''
+  hash: 59c958eb67399b934750dc9454b7bb7fb2fcdacdcd793765b49f2de183a98292
+  license: ''
+  license_text: ''
+./doc/posix-functions/random.texi: 
+  copyright: ''
+  hash: 1ac28c8bc3664266beda4e1a8bedddfe6e9a2b9d922712df684fce6a569d57c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/read.texi: 
+  copyright: ''
+  hash: c0772bc36f187c182877807725aef9e66db5d39de1fd4ba4fb0f3e1d1b104499
+  license: ''
+  license_text: ''
+./doc/posix-functions/readdir.texi: 
+  copyright: ''
+  hash: 8acd1c9966f71ead4b10ca70d897276aa12fbc5a41f1ad088cfe1e1849f09d32
+  license: ''
+  license_text: ''
+./doc/posix-functions/readdir_r.texi: 
+  copyright: ''
+  hash: 0b985cea57ac53aacdc262c142dc6836da7ea2f6805a75a52c6badba2a1edfb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/readlink.texi: 
+  copyright: ''
+  hash: 289041e8eac3117ecaa306f00b03008b7ed1f7f7e8e458edb64e3658d2a78df8
+  license: ''
+  license_text: ''
+./doc/posix-functions/readlinkat.texi: 
+  copyright: ''
+  hash: 8e82d14041b87e19c1298c597787ddb51fb2c6d4f3aba4087a064ff6db8445e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/readv.texi: 
+  copyright: ''
+  hash: 3a5a744fc3b388558d7a6ce32e3cd2409238e7c1de9877ef421916a0a0dc41ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/realloc.texi: 
+  copyright: ''
+  hash: f0e891898abaa0a80d3cda3e3bfd9d8ba9d886fe03eeac0524b958a62e9910cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/realpath.texi: 
+  copyright: ''
+  hash: 31d1d7d2fbb89b8b73a9f8c9233c47944c665081515957cdf622af70b157dee5
+  license: ''
+  license_text: ''
+./doc/posix-functions/recv.texi: 
+  copyright: ''
+  hash: 8a15266da832a4a27bba9fc686336216b9e0f53e3039ae3c90803932b0bd6dda
+  license: ''
+  license_text: ''
+./doc/posix-functions/recvfrom.texi: 
+  copyright: ''
+  hash: 5b8c576d3b7631a1252a36815ca4dbc99a02857999908fd47132065297ba5145
+  license: ''
+  license_text: ''
+./doc/posix-functions/recvmsg.texi: 
+  copyright: ''
+  hash: 6954352174e93bc859b4f4cb4d2f3108621106dc0eac7cce11fed1a3bf900d34
+  license: ''
+  license_text: ''
+./doc/posix-functions/regcomp.texi: 
+  copyright: ''
+  hash: 467aa5c6a5b8e8746e54af135c6a20a7db4192236b82e8aae0fea24c3bf6f04d
+  license: ''
+  license_text: ''
+./doc/posix-functions/regerror.texi: 
+  copyright: ''
+  hash: 851681f9c2f6d3b714a4821fa8b8221ccb948088c6a6a676321ede8ecb6e9985
+  license: ''
+  license_text: ''
+./doc/posix-functions/regexec.texi: 
+  copyright: ''
+  hash: 71275ebcea7b64e5b5a339139d33520241c8f6f2cc2ca66861b663729e14e128
+  license: ''
+  license_text: ''
+./doc/posix-functions/regfree.texi: 
+  copyright: ''
+  hash: 546e9045c4a3cd6c27e6d0587177908f4858d68ead5d3956c561ee5a6ae56a59
+  license: ''
+  license_text: ''
+./doc/posix-functions/remainder.texi: 
+  copyright: ''
+  hash: 9048696feeff04cd557d5d0dedca4a672700965097384662d135b754e54b7fbc
+  license: ''
+  license_text: ''
+./doc/posix-functions/remainderf.texi: 
+  copyright: ''
+  hash: eaf831bc14b2dcc900fa892a2e14ba7617b1e6ab61f619f0cd6f7e14d41acd88
+  license: ''
+  license_text: ''
+./doc/posix-functions/remainderl.texi: 
+  copyright: ''
+  hash: 14d1ff2d407b0012762b50554da703265c6294096c17d5ae4b14bdc14fc8596e
+  license: ''
+  license_text: ''
+./doc/posix-functions/remove.texi: 
+  copyright: ''
+  hash: 3ede2b0a88caf86dc972a636e28b9ba38caf6de6256e0e3bceba9beea59854d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/remque.texi: 
+  copyright: ''
+  hash: ba75b73c8d591b696fcd813c3ef76bf5c44770df9c6fbd9ae87c697481437522
+  license: ''
+  license_text: ''
+./doc/posix-functions/remquo.texi: 
+  copyright: ''
+  hash: ea3584c21d497ada4dae115741acd1194efd92211942117063c080ae68d3615a
+  license: ''
+  license_text: ''
+./doc/posix-functions/remquof.texi: 
+  copyright: ''
+  hash: 0f8f9fedc0e9bfe935f7ff6c31311da4900518eab1a3495c3adff52fdd073454
+  license: ''
+  license_text: ''
+./doc/posix-functions/remquol.texi: 
+  copyright: ''
+  hash: ee10dc1ef5a7800459907dc568a7acc6c3cf233713b3dbefffca813daf3a8576
+  license: ''
+  license_text: ''
+./doc/posix-functions/rename.texi: 
+  copyright: ''
+  hash: 12e0eb4b7f2d1ab2b06996c40987438ed9f8b4ca2e3bd0798e28a9bfd0aabbfe
+  license: ''
+  license_text: ''
+./doc/posix-functions/renameat.texi: 
+  copyright: ''
+  hash: c6dc7142536a2a805bcece8b9c0f15fcf548fed2410b817fad4b8d005496bed4
+  license: ''
+  license_text: ''
+./doc/posix-functions/rewind.texi: 
+  copyright: ''
+  hash: 7e31de0009419f05734b5d6a322389c5e103c5cd40a060f49efd1f68da2cabb0
+  license: ''
+  license_text: ''
+./doc/posix-functions/rewinddir.texi: 
+  copyright: ''
+  hash: 42b2c06301ed85a0dfdfd8ef098bdcd6f8cf4a5198eb5fa3f0231f63e14d3ee7
+  license: ''
+  license_text: ''
+./doc/posix-functions/rint.texi: 
+  copyright: ''
+  hash: 0bdbf8e00f3fb2386cfd9a6ef340864607e19f553ea1a84aadaf6f352b8eec33
+  license: ''
+  license_text: ''
+./doc/posix-functions/rintf.texi: 
+  copyright: ''
+  hash: 04b86653c1aebb521570910a97edd79efcfb3d9d4ce5ee36b0bc12caefc93feb
+  license: ''
+  license_text: ''
+./doc/posix-functions/rintl.texi: 
+  copyright: ''
+  hash: 3cdf8671de573e8aa145192d0e4b51bdb9813c54328232493738ee146c15f55c
+  license: ''
+  license_text: ''
+./doc/posix-functions/rmdir.texi: 
+  copyright: ''
+  hash: f46fa6bd3452720b41ce3c646a159d837c815958bdb713632742c746227a658e
+  license: ''
+  license_text: ''
+./doc/posix-functions/round.texi: 
+  copyright: ''
+  hash: ad1fac248f0027fffeb846b4bcbb10d65dbb8ee2814bf99ca320dc6b76d3591b
+  license: ''
+  license_text: ''
+./doc/posix-functions/roundf.texi: 
+  copyright: ''
+  hash: a93f03fd0a866d50dae90b7ed84de5e54ee93a776770d19334d918c68e937352
+  license: ''
+  license_text: ''
+./doc/posix-functions/roundl.texi: 
+  copyright: ''
+  hash: 34c9077c2dec24f5eac8f86ac817d972e19810b75227e4b638cff1c10952f098
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbln.texi: 
+  copyright: ''
+  hash: 20b33ecc23fc5311a3eb8423dfb90ed0acc8f5e0a27ce08b33548700dcfd087b
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalblnf.texi: 
+  copyright: ''
+  hash: 721d2584694f2c17e701b77dafb1a4a0fce1b4cf75e67286c1de9b3d2bc5fc4d
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalblnl.texi: 
+  copyright: ''
+  hash: e29e5eab4e9e4a6a341613b203cb7b6c05be7c3ad6119e0e5b069d8019bbb4e3
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbn.texi: 
+  copyright: ''
+  hash: b98ad8538407e08879d31e648dcf8eacc0c0c187ac2cba1dcec79b87a7d8afe0
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbnf.texi: 
+  copyright: ''
+  hash: 6c2dfea485571431562f1b51e5920eb4bbe8499512abd58d46fb3e842ea6af67
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbnl.texi: 
+  copyright: ''
+  hash: ad72f6be73a435b5d81d01a8b5849eb4531c88a21370bcb2ad87afb73047e436
+  license: ''
+  license_text: ''
+./doc/posix-functions/scandir.texi: 
+  copyright: ''
+  hash: 19a5e174895872d8102d75603b1f0491cc13b1da4c7c4e4dd0efb3c3c64887ce
+  license: ''
+  license_text: ''
+./doc/posix-functions/scanf.texi: 
+  copyright: ''
+  hash: 7dfd669e166d9e21af87270f3155e7f1df47d71fd39bcc8b13bccc6b14baace9
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_get_priority_max.texi: 
+  copyright: ''
+  hash: 11f5ff6c55fdb90459f2389d7c1a7818fdce76b58ad1f2b38daea990e1ef5038
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_get_priority_min.texi: 
+  copyright: ''
+  hash: edadeaea746bd2c08a9d041afbd07ec8efeae648a41e6360339affd3dd164930
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_getparam.texi: 
+  copyright: ''
+  hash: 84f8a1c27e8b95d02bcf6537325ba48127e03e6b84a85899c04754859e6bb9de
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_getscheduler.texi: 
+  copyright: ''
+  hash: effbc16e72658dd54d3a4dfda735c9a847b984cac1770d3a69e21b18e3295643
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_rr_get_interval.texi: 
+  copyright: ''
+  hash: 28dde9d502544175d3e577faf43edfc9cdebc23ad5698817f93739b89eaa30ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_setparam.texi: 
+  copyright: ''
+  hash: 72b52136de2d388c0b20b342359f6341550f2f169138066f6506aef13dc568a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_setscheduler.texi: 
+  copyright: ''
+  hash: 09602d1144a443906cd95a7abc7338702e87e3a31a3d97685a073899186cb3d3
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_yield.texi: 
+  copyright: ''
+  hash: d2d8c8ac69459f6402005138854b6d4056187e0de6abcf753e292102ea96d34c
+  license: ''
+  license_text: ''
+./doc/posix-functions/seed48.texi: 
+  copyright: ''
+  hash: 28bdf259829fb9387b78e51eab714e073170bbcea61949755e114d1604be8e25
+  license: ''
+  license_text: ''
+./doc/posix-functions/seekdir.texi: 
+  copyright: ''
+  hash: 4f3fdb7b17387addc89235b72cd26b1de5f0bad70b0e7b33bbd312857128967b
+  license: ''
+  license_text: ''
+./doc/posix-functions/select.texi: 
+  copyright: ''
+  hash: e9ce5f847344b7fb8a70e7c53420b8235ed385d3d43466db2d604a4b87e8c5f7
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_close.texi: 
+  copyright: ''
+  hash: ac874d36dada463ddff2c441e9b401348f525c81472a7913b9f056732453f98b
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_destroy.texi: 
+  copyright: ''
+  hash: 358f0ff417eb0b678c15aa7d2c4c5a230bf8442a78f36e8ec075e0d7c6d21037
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_getvalue.texi: 
+  copyright: ''
+  hash: 9bcf8c054cef77229c7f601724f90759b075f4360424fc988f0eb35527e37c5f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_init.texi: 
+  copyright: ''
+  hash: f8c33d28ce23da0f1f9468414b072f0cafd5a250a437f9e67217d0aa46d606f5
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_open.texi: 
+  copyright: ''
+  hash: 535b9d92fa34b5d3a942d1d0c71d5b1cb895b1b3d1a0e1a40976b1aa8369eeef
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_post.texi: 
+  copyright: ''
+  hash: 33572c6870717902841189ed2faa2f22e870317e232b8a0df96ca7f464d55a3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_timedwait.texi: 
+  copyright: ''
+  hash: a6440ffe149ca3730afe7d0809bc0df9069248efb58db6d2a78ef3a95cce44d4
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_trywait.texi: 
+  copyright: ''
+  hash: 4ceedb230b907d2689613064f8e6d5f7d1ef7d3d3671f98c73cc49e62ded6ebd
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_unlink.texi: 
+  copyright: ''
+  hash: 0ee14f8c63cb4f610209419ac2a952f0baa08190ba720bd498efa60cb4813ad2
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_wait.texi: 
+  copyright: ''
+  hash: ef6661da464b7311b32b8ecf0428d6ade99f613ecf710a160c964cf9da984909
+  license: ''
+  license_text: ''
+./doc/posix-functions/semctl.texi: 
+  copyright: ''
+  hash: a727b206d89f2f607838a05121a9ac9fb8bbbf2b261fec2b53405bade9fc0e8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/semget.texi: 
+  copyright: ''
+  hash: 3f7d131455914cf554feafcf7c52b429e71825175d3554a71018da6cbd964bfc
+  license: ''
+  license_text: ''
+./doc/posix-functions/semop.texi: 
+  copyright: ''
+  hash: 1174ca67c0eb6ca2cacbe0fbf7493c05e89c9479194549f198df5c92e8c6b935
+  license: ''
+  license_text: ''
+./doc/posix-functions/send.texi: 
+  copyright: ''
+  hash: 17bc1f1b9e840a2c9d5faeb78362adfb9876d3b22c19eed265a563b48712ba65
+  license: ''
+  license_text: ''
+./doc/posix-functions/sendmsg.texi: 
+  copyright: ''
+  hash: f483c1453c90cde160dee58c7e1cbbb5710ae07f304e0ebb96b04d68d1040e21
+  license: ''
+  license_text: ''
+./doc/posix-functions/sendto.texi: 
+  copyright: ''
+  hash: 9e49433726ffd274b30a586229b8e7b56b963711aa9363f3fde85e68eeaeabcf
+  license: ''
+  license_text: ''
+./doc/posix-functions/setbuf.texi: 
+  copyright: ''
+  hash: c1b80b2010ab858159853eb49c404f80e62c63fcf5efa4f8b361656ec17d8acb
+  license: ''
+  license_text: ''
+./doc/posix-functions/setegid.texi: 
+  copyright: ''
+  hash: 4eb55b5c084cfe20710d1e8373c22fa6391501c1f03ffb45c8a65a67cdce44a2
+  license: ''
+  license_text: ''
+./doc/posix-functions/setenv.texi: 
+  copyright: ''
+  hash: 9c4d89ace2b70d38c942c3f8944928cccef4db906dd979b8657e523b25e949d0
+  license: ''
+  license_text: ''
+./doc/posix-functions/seteuid.texi: 
+  copyright: ''
+  hash: 11065f33239479b6f7e52c623212e0e108290ba7a2f225b2fe71d52257a5054f
+  license: ''
+  license_text: ''
+./doc/posix-functions/setgid.texi: 
+  copyright: ''
+  hash: 780d6ade51dbdac0c12016d3fbf16bb2421e62eb4aa70a733b243488d132023c
+  license: ''
+  license_text: ''
+./doc/posix-functions/setgrent.texi: 
+  copyright: ''
+  hash: ac27d566a363f416471a065bb4b80dfbb1b3d72c6f44d262c47b9bebc5db0069
+  license: ''
+  license_text: ''
+./doc/posix-functions/sethostent.texi: 
+  copyright: ''
+  hash: 725baa41c0d9b152ca68a043ff588e0e6db3c11f5ef2b9a7b7628389905bb4d2
+  license: ''
+  license_text: ''
+./doc/posix-functions/setitimer.texi: 
+  copyright: ''
+  hash: 3852bfb85fac9dc66769defed010733ef020845a51b59b8d8ec679dd20aa2d81
+  license: ''
+  license_text: ''
+./doc/posix-functions/setjmp.texi: 
+  copyright: ''
+  hash: 22af0a92b03cbb7a563685898895441b261083b6684d0ee9a48f47ed26891ea4
+  license: ''
+  license_text: ''
+./doc/posix-functions/setkey.texi: 
+  copyright: ''
+  hash: 240a7ea97fba8b9ff6d9a47fa42c31b3e28640d0e8e5981f317b1d9b720e73bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/setlocale.texi: 
+  copyright: ''
+  hash: 817b6e7446ec7a47293c021378b27a59878f207483191864702dda72c8b57585
+  license: ''
+  license_text: ''
+./doc/posix-functions/setlogmask.texi: 
+  copyright: ''
+  hash: 765d03a247b4621b0d48e4590dedcc6a0d2ec29510e0404540bc61421ae9e253
+  license: ''
+  license_text: ''
+./doc/posix-functions/setnetent.texi: 
+  copyright: ''
+  hash: c2c9917076799c5935791b59d9d3ac025ed0ab177cd6b2dbfc31693ec9dd0ed6
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpgid.texi: 
+  copyright: ''
+  hash: 7c2356192fa6799002224dc1a24029063c4cc90586ebfc253e3559145369bb56
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpgrp.texi: 
+  copyright: ''
+  hash: e51777dacdd7dc22f04da87cbeee294893c758828e56420309995df635994374
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpriority.texi: 
+  copyright: ''
+  hash: c87be1e3b56994f1042308d42e8bdc660f03f0e69c82ee6783262e448151014f
+  license: ''
+  license_text: ''
+./doc/posix-functions/setprotoent.texi: 
+  copyright: ''
+  hash: 884e72272c0ebda015c9d69e01182a99e021068f7839b75d276086d994d0fbea
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpwent.texi: 
+  copyright: ''
+  hash: 9396b76d7feb617576732f7d10cbf77a866f72f161546b7662bad0b1a54081a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/setregid.texi: 
+  copyright: ''
+  hash: 6bcd6d07ac44360dc656876796a21f972bb05480d9bf57323e40fc5ca550dae3
+  license: ''
+  license_text: ''
+./doc/posix-functions/setreuid.texi: 
+  copyright: ''
+  hash: a2894c1abc3680e75c9c62fe31090120166f9edff985537da0b3b07621a7b130
+  license: ''
+  license_text: ''
+./doc/posix-functions/setrlimit.texi: 
+  copyright: ''
+  hash: 5958d803819871762a9194cd467efc0bf2d71ad529a8dbc42aeb3e56d18ef353
+  license: ''
+  license_text: ''
+./doc/posix-functions/setservent.texi: 
+  copyright: ''
+  hash: 4140e3b3d42a1e14ceb0d81d7204b6f59b76655866b6693950bfecdae9605d99
+  license: ''
+  license_text: ''
+./doc/posix-functions/setsid.texi: 
+  copyright: ''
+  hash: 5420e9cae04273dfc040f5832b9174b5564f4b38e482b274ecc0e0a8b17bc2c5
+  license: ''
+  license_text: ''
+./doc/posix-functions/setsockopt.texi: 
+  copyright: ''
+  hash: bd5dd31491d9fba4a723fbc708f0f984a77f61bacefaf2fc2ca396fcafc0fe34
+  license: ''
+  license_text: ''
+./doc/posix-functions/setstate.texi: 
+  copyright: ''
+  hash: 7b70df59e5d17161587200bda69c41606bc0d74689c8ebe00a6fe3d6b89e534e
+  license: ''
+  license_text: ''
+./doc/posix-functions/setuid.texi: 
+  copyright: ''
+  hash: 6d8ea2173f4dd28ad1e91fef87b91f4b37f312d94ecde8c2ea7a1def4b20af2c
+  license: ''
+  license_text: ''
+./doc/posix-functions/setutxent.texi: 
+  copyright: ''
+  hash: c888acebdd69ac6f546bde407b3b5ca347fce9a4abc3738e52bf16116e4782ac
+  license: ''
+  license_text: ''
+./doc/posix-functions/setvbuf.texi: 
+  copyright: ''
+  hash: fbfcee6cf17813046c5d7770e3e28de66747fae03b99febcc83a7afd709adb1a
+  license: ''
+  license_text: ''
+./doc/posix-functions/shm_open.texi: 
+  copyright: ''
+  hash: 711cb8029e21657fbc064d404ae7c2ef07e04ac28a7d26aa81a85561f93282bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/shm_unlink.texi: 
+  copyright: ''
+  hash: 35c8021da60f69c9ebcff71354f190dd9ee08ceb621dfcf03648e74f82ff0abd
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmat.texi: 
+  copyright: ''
+  hash: af47252558f36f307c6ce55289a619bde06542814c0df5fe5c6eee825741498c
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmctl.texi: 
+  copyright: ''
+  hash: bbdc41b3831e90eb39d93d9959b3a97aebd44e0ad7838445371d377f11831af0
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmdt.texi: 
+  copyright: ''
+  hash: b232456ce946eab53cb5c9dd93b637d707efd563a3002b96feae52b49bf35788
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmget.texi: 
+  copyright: ''
+  hash: 1d43d652e94e8910fa095f710d53122c2eb95d2f07f9b0d0dcba635a7c51ec84
+  license: ''
+  license_text: ''
+./doc/posix-functions/shutdown.texi: 
+  copyright: ''
+  hash: 29fd2d2990cf30cf14c302f76697e11d96f31a9d4e14073f070bd38a84a0bdda
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigaction.texi: 
+  copyright: ''
+  hash: 3cdd81c159f9d0dba0a772d6ee39c302d310b9bc0c05293ff05fc4a08daadf1d
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigaddset.texi: 
+  copyright: ''
+  hash: 87d0a09d5c3d0fa0a9ad87967175e1c39afbf2d4bb335cdae4e557454163fd5f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigaltstack.texi: 
+  copyright: ''
+  hash: e8985e3e771fbc1c26d97574a451d0a10395aceb70a1d365d4144ca3045b4de4
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigdelset.texi: 
+  copyright: ''
+  hash: 6ab4bcad934cc4107635ba22f4edbec51c53bd010e628837c8a794db9106befb
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigemptyset.texi: 
+  copyright: ''
+  hash: 14e1a070f0a75d6ed8d5d0c03a87fb88c716371c984180c7bff89e802c58c46b
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigfillset.texi: 
+  copyright: ''
+  hash: 3b2a1a255cefe69a417f80a0edf260888c0db54bfdd3d12424bb30b31df0c59d
+  license: ''
+  license_text: ''
+./doc/posix-functions/sighold.texi: 
+  copyright: ''
+  hash: c28922c54cf2987fd419a7e53c1c070521cdcf17e4c18b7cd7dcb213e7f6006c
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigignore.texi: 
+  copyright: ''
+  hash: 3ccf3776aadb2d683f46c2e2259b1059bf8f109cbf6322bd4534dbfb315a472c
+  license: ''
+  license_text: ''
+./doc/posix-functions/siginterrupt.texi: 
+  copyright: ''
+  hash: 3349e08d5be99e38c5a03fe7b7d459078dcd284fd0149a41c075402bbfb7c405
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigismember.texi: 
+  copyright: ''
+  hash: 49eccb6e25f6f97abb2511bd20e9d3e01769d0bd25e1401230b3a252e95c213f
+  license: ''
+  license_text: ''
+./doc/posix-functions/siglongjmp.texi: 
+  copyright: ''
+  hash: 24a32bca7cf45f9d1b12aeeda5dcb11dd4fd66f53d74c27d12bd42e474c9d1d0
+  license: ''
+  license_text: ''
+./doc/posix-functions/signal.texi: 
+  copyright: ''
+  hash: c518a9f0387ab90d8b170e72d3583f762ac4a05461790508d01beab9ab3d8558
+  license: ''
+  license_text: ''
+./doc/posix-functions/signbit.texi: 
+  copyright: ''
+  hash: 9e6a47f6d9259e813d6797c19a71415f8e4647438247ff24e8e2424a0a565702
+  license: ''
+  license_text: ''
+./doc/posix-functions/signgam.texi: 
+  copyright: ''
+  hash: 3ef7a55a9465be68ba43768332914144bd6c2c173b9a7a9a2e4b07f33121c7ed
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigpause.texi: 
+  copyright: ''
+  hash: 90fce48a0d49ab718dd652a5a5a87668ce9617dad7ff70874f4b1f7460432841
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigpending.texi: 
+  copyright: ''
+  hash: 2de6219e44b909caad92df6778f831f8b2a15b1ccf7e05f729d33dd54c5fc27a
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigprocmask.texi: 
+  copyright: ''
+  hash: 7811aa27382f44d47c7d149b3806ae14f1198c12a3dd63ebcf6f243a6558b74f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigqueue.texi: 
+  copyright: ''
+  hash: 9c5d6f633c6f30e8fc0156ab80d63f803626e6f8bb5643e76ab141df5110c706
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigrelse.texi: 
+  copyright: ''
+  hash: 65be3cf6a9cbb69df7b4747865bd7efa29653d3e971d39e3aa1419deb39a80ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigset.texi: 
+  copyright: ''
+  hash: 817f69cc205c41f70b80ea90ab05062b190f96036502febe7c854c33b17a253a
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigsetjmp.texi: 
+  copyright: ''
+  hash: cc4ca79a3fb359807d0b9b990ec85be94f2c178350a771f908b5256c556a8817
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigsuspend.texi: 
+  copyright: ''
+  hash: 9f9cff8e739048a9f60008555c57b52b49ef7d90ca097e08f8988d24a4c1a8a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigtimedwait.texi: 
+  copyright: ''
+  hash: 0d47c3fdba144dd0c0aa13adc6924d3275b3cfec99c840ed982482cc8d729c12
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigwait.texi: 
+  copyright: ''
+  hash: 6dddd4ba0f84a96575d582a6ff6afe6edf8ed9f95b14fa5a75a0e30525066682
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigwaitinfo.texi: 
+  copyright: ''
+  hash: 8519df8c6af7a55c5e9a477e0ea273270f47ecec2e180025c7e26a2992b94378
+  license: ''
+  license_text: ''
+./doc/posix-functions/sin.texi: 
+  copyright: ''
+  hash: f676105dffa7de8f92a0b6f8f57abef62d5cd3185cfbbb94f4dcc80a1d2a0170
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinf.texi: 
+  copyright: ''
+  hash: 6b533d6508b0c237bc96b621b1f7e8f506f848ceff578dc4c25a0739ff026e70
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinh.texi: 
+  copyright: ''
+  hash: eee78b2f05fd0d6a7ca4c90460bb0440ce78fa090a075e3ec74f104b18b887f1
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinhf.texi: 
+  copyright: ''
+  hash: 15948ac5234b4e3f9763f212e52c490c8d917e214e3314f63e42d48a96c66721
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinhl.texi: 
+  copyright: ''
+  hash: 4ee1ad6e044636412b8f958d57116513ef7412caaa45b936796b888f154f96e9
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinl.texi: 
+  copyright: ''
+  hash: 10f6d3e1420c92efabdee4ff2ec16a1c2a547530c24cd0a0fd564d70e751838e
+  license: ''
+  license_text: ''
+./doc/posix-functions/sleep.texi: 
+  copyright: ''
+  hash: 4cee9d14a9da82cb86de0e74f1bf4ba2a685783e472474fcef506b8a3a209ff6
+  license: ''
+  license_text: ''
+./doc/posix-functions/snprintf.texi: 
+  copyright: ''
+  hash: 6c65c8fb2c2be3898412015204e121e2d318c68b72bb30da42e1e97638cfc92f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sockatmark.texi: 
+  copyright: ''
+  hash: 920043e499988efb4a6ecd649dee0e51423706cdf1b627d287ee498e733a5e9d
+  license: ''
+  license_text: ''
+./doc/posix-functions/socket.texi: 
+  copyright: ''
+  hash: bb5c8946b1533c378b8b51008463815ff926bf3edc8d434945008788336605e6
+  license: ''
+  license_text: ''
+./doc/posix-functions/socketpair.texi: 
+  copyright: ''
+  hash: 770e250df219be1c39ad0bc54906007f1364594d855db008855fd5027ed6fd17
+  license: ''
+  license_text: ''
+./doc/posix-functions/sprintf.texi: 
+  copyright: ''
+  hash: adef99bf429ec5dc65bbb09f6b18391699c7c0b404cf95ba34bb4db35c474dc9
+  license: ''
+  license_text: ''
+./doc/posix-functions/sqrt.texi: 
+  copyright: ''
+  hash: 7bd904a48d9461c5ab7ec22f185475d3849dd2b798f72cb54986fec482103eec
+  license: ''
+  license_text: ''
+./doc/posix-functions/sqrtf.texi: 
+  copyright: ''
+  hash: 440a2d8390eee454a3f25219d743c8e847045e11fc366fcf2ab6272bff843532
+  license: ''
+  license_text: ''
+./doc/posix-functions/sqrtl.texi: 
+  copyright: ''
+  hash: 527035958e9ce2e375b8e03b8d1d37300c3da351d34b8c0eff9e1aba9b15ff54
+  license: ''
+  license_text: ''
+./doc/posix-functions/srand.texi: 
+  copyright: ''
+  hash: b21bd4917b432b6818ebe2f3cbadd1ecb2903b11d0158f2a2af18294b9026cc8
+  license: ''
+  license_text: ''
+./doc/posix-functions/srand48.texi: 
+  copyright: ''
+  hash: d80029584212c15658a5fd5e7e068068dfdf634b4f7e0411b2ef09a698ee7b3c
+  license: ''
+  license_text: ''
+./doc/posix-functions/srandom.texi: 
+  copyright: ''
+  hash: a10bfc704c425ab26485a296899f84e820bede1c112a19af796ee0bdce64d078
+  license: ''
+  license_text: ''
+./doc/posix-functions/sscanf.texi: 
+  copyright: ''
+  hash: 639cf4a9a282985958da828fe209b80969230cb51e066f6f4fdaf79063d373cc
+  license: ''
+  license_text: ''
+./doc/posix-functions/stat.texi: 
+  copyright: ''
+  hash: 8d8fe8d3a054025b09c15989283e7d4754db8266583f7eb712f079efc1893db4
+  license: ''
+  license_text: ''
+./doc/posix-functions/statvfs.texi: 
+  copyright: ''
+  hash: c157e04fe064fb845027f0118a7978e9efb42c003ebd892582269ef5f45d64e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/stderr.texi: 
+  copyright: ''
+  hash: 7632aaef92a1ca4ce28394d00756b3e8919b15817cbf548d8402404408cce9e7
+  license: ''
+  license_text: ''
+./doc/posix-functions/stdin.texi: 
+  copyright: ''
+  hash: a2f171d9774add6803c2df2f4d78912d32460e395041035c75c15c3216501ae2
+  license: ''
+  license_text: ''
+./doc/posix-functions/stdout.texi: 
+  copyright: ''
+  hash: 1820d40f78e54bd1362377e4b2d5f8f9a9da71a37a5e7cb5888e97a455e2b8f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/stpcpy.texi: 
+  copyright: ''
+  hash: ec7fba60db1ae08ec7e335c879369c5952909faa0b097d50f883bf4067adc92b
+  license: ''
+  license_text: ''
+./doc/posix-functions/stpncpy.texi: 
+  copyright: ''
+  hash: 594dc6a1a62217496f0a4a517ccb4d256911977cf21ad5649ae9ae2c5cb260ec
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcasecmp.texi: 
+  copyright: ''
+  hash: 7f49d3eceda3f51eb6ede418807164200915a15c26aabee9e3c678f79455ccfc
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcasecmp_l.texi: 
+  copyright: ''
+  hash: 2d4cf5c896e1982e35fb0a9e338fe2e67c0c87e9eac900de5045c1af7035bbb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcat.texi: 
+  copyright: ''
+  hash: a0407da6c606d87607b8e64140519deb5030ee90004ac26fb72a067c9c0cfbd8
+  license: ''
+  license_text: ''
+./doc/posix-functions/strchr.texi: 
+  copyright: ''
+  hash: 91fade2e19fa83ad5590281a8e15b2056505d2812d8c5741760a5ad0dbea0bff
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcmp.texi: 
+  copyright: ''
+  hash: 7fbbcf029f56138b09c72dda4b9ef0fecc39fbed9deff9b401c58a58d9a0666d
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcoll.texi: 
+  copyright: ''
+  hash: ee188da4f400e65ed26ff9866ff2b8bc30f430eb0512b332087ea2c2cd7a5a7f
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcoll_l.texi: 
+  copyright: ''
+  hash: edfafaa4cc6ba9b3a175802811fc246df5f91d0e63ab0790111490fde6c12719
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcpy.texi: 
+  copyright: ''
+  hash: 2b0a1e8d63a747c6e10fdbdea6ebb0c24d6c6ca2a7c397a53b918eeb2ef6ff3d
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcspn.texi: 
+  copyright: ''
+  hash: 94cc29735d1e83beac880fb97a531b0c6f2a2783f478fa86e97ed03beb2b9920
+  license: ''
+  license_text: ''
+./doc/posix-functions/strdup.texi: 
+  copyright: ''
+  hash: 045dfd18a8b270e77e36277809c55abff0128a0b9029d4decc6afaeed460a08b
+  license: ''
+  license_text: ''
+./doc/posix-functions/strerror.texi: 
+  copyright: ''
+  hash: b8b53ff22e7edfdd1ffa1e448407b39e80470f5bce87c775e406765a97263fe7
+  license: ''
+  license_text: ''
+./doc/posix-functions/strerror_l.texi: 
+  copyright: ''
+  hash: a02032d1af6e599476219e5ff404c30bede78cee58da6ccb0197d0c5e7d9c5a6
+  license: ''
+  license_text: ''
+./doc/posix-functions/strerror_r.texi: 
+  copyright: ''
+  hash: 62874d18f06f58af8ef7a84e900cbf6a0912c558dfd0a20144dc6cc45bfb2c48
+  license: ''
+  license_text: ''
+./doc/posix-functions/strfmon.texi: 
+  copyright: ''
+  hash: 9ee64b73d67aa190bec10ff662e522af5c95efa58b091cf0b6b95ab6dea7f54c
+  license: ''
+  license_text: ''
+./doc/posix-functions/strfmon_l.texi: 
+  copyright: ''
+  hash: 951fbe0fd04da1ac6ec3e5d5e9e25a1ffff8cfbe2af8461f983b46a8b8087809
+  license: ''
+  license_text: ''
+./doc/posix-functions/strftime.texi: 
+  copyright: ''
+  hash: 2179be9ea7f8728eb9666e1eaf244afabb1776e0aa5cfa301eb494dda908f72c
+  license: ''
+  license_text: ''
+./doc/posix-functions/strftime_l.texi: 
+  copyright: ''
+  hash: 2b951eeeafdb7d06f61bd455bfbe223cb6aa0dd8c6bbe1f207dd5d52d07b13a4
+  license: ''
+  license_text: ''
+./doc/posix-functions/strlen.texi: 
+  copyright: ''
+  hash: 9d334c502f628671c63c034801c7e852a2e7800124aa68628543bdb69ecc5684
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncasecmp.texi: 
+  copyright: ''
+  hash: e5148eae134f9d79ab3966b17c5120ad16132967ed193205abdc9f704ab59d6c
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncasecmp_l.texi: 
+  copyright: ''
+  hash: 3b874f7e054f2f3d2998d2cce8ffd7973b63dab2a40949e464bfd1d728459114
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncat.texi: 
+  copyright: ''
+  hash: 654e14224e9e3ed7ebad2de0510dbed9efce12256abd7259258bec7ae5c780b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncmp.texi: 
+  copyright: ''
+  hash: 2c3a13c7830cccc3f0be728c0540ddb7ff29f8351df316dfb24b4f1f921aea7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncpy.texi: 
+  copyright: ''
+  hash: 4c05ddf672725788270b9d16711cdbddf4f81bbd16e806664314c222a0a8ecc0
+  license: ''
+  license_text: ''
+./doc/posix-functions/strndup.texi: 
+  copyright: ''
+  hash: ec1c126888ea4ef0b27a3f98df47b67a5ec5102a51b9885ba7336ee6784fc6b2
+  license: ''
+  license_text: ''
+./doc/posix-functions/strnlen.texi: 
+  copyright: ''
+  hash: 354bc895a0b87fd89bdd8ee323c4d2ec021252f194ef630ec03cc4d8a1fb7554
+  license: ''
+  license_text: ''
+./doc/posix-functions/strpbrk.texi: 
+  copyright: ''
+  hash: 9557cbb965eb68e1a8e3a75904d406cdac427d63f8d312e48f06b63112641189
+  license: ''
+  license_text: ''
+./doc/posix-functions/strptime.texi: 
+  copyright: ''
+  hash: ef3417cc5487eadb9fc54afbab9f4462fdae78770f52efe81eb8c9362b1a8e11
+  license: ''
+  license_text: ''
+./doc/posix-functions/strrchr.texi: 
+  copyright: ''
+  hash: a4a53fda2b5af669b4617b1bdbcafe0fe580a8fb9d5d8d9d5de32baedcd16e80
+  license: ''
+  license_text: ''
+./doc/posix-functions/strsignal.texi: 
+  copyright: ''
+  hash: 58c763d79113d00d2daf87b0ea1ca853653533082ecf927ef77d737ebb214c96
+  license: ''
+  license_text: ''
+./doc/posix-functions/strspn.texi: 
+  copyright: ''
+  hash: 47c5ad5b37dcc46737f8b28f1398366d4240315e8f53ece412d032dc9bc7b440
+  license: ''
+  license_text: ''
+./doc/posix-functions/strstr.texi: 
+  copyright: ''
+  hash: 51205fda2f8406dc3daf66d5ea624d5963fe65610dfab99e46a1785fca95ec46
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtod.texi: 
+  copyright: ''
+  hash: adba58dc750ac05f63ccdc0320c3ea4c0880205e3336a5666aa8cbdbc5fb5cf1
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtof.texi: 
+  copyright: ''
+  hash: f83812681f499b58973a270204a0b5d82f5efe872f0ddc2ffe61902c91845a14
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoimax.texi: 
+  copyright: ''
+  hash: b479a9a1a65dddbcd340e536ac8bf12ab8474dec475b665594875c836c7b0c7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtok.texi: 
+  copyright: ''
+  hash: 76ae3da669ccced4bbe8c116203fe16def6351c6762a852bbf1a5f130e1b71aa
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtok_r.texi: 
+  copyright: ''
+  hash: 5532819e105838ee4483b268600ad0ab59dbff5a536f814ad80c711e8f0fdaac
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtol.texi: 
+  copyright: ''
+  hash: 478cd81757360e8ff9c6d66c0d859402961adac17a3166c02d8291432b546cc3
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtold.texi: 
+  copyright: ''
+  hash: cc0d00fe20a006116f837e389883fd2c3bedef7c16b2e55d8f379052aa8f33af
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoll.texi: 
+  copyright: ''
+  hash: 3aa3df77f158c0f7cc3a99994f2281a6a5ba800aa43fcdbdbd265c4fb4bab884
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoul.texi: 
+  copyright: ''
+  hash: fa2e866b9953be91e9970e632d9eb90cf63d61c43c2f431084379e169bd72bb1
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoull.texi: 
+  copyright: ''
+  hash: 7672cc8ef139fb96545da9219cbb7e967b8365abd92d12f235ead6afddfdea98
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoumax.texi: 
+  copyright: ''
+  hash: 5d686d899707d3f7ed00e8545527d6cb3334bddbf769f422c9077c9c908c59f7
+  license: ''
+  license_text: ''
+./doc/posix-functions/strxfrm.texi: 
+  copyright: ''
+  hash: 38eb4167ca28913e09d1aa3cebce875f918b4004b3def72276795b854da15103
+  license: ''
+  license_text: ''
+./doc/posix-functions/strxfrm_l.texi: 
+  copyright: ''
+  hash: 5877b7bc3ae18925e11da5490d2bf91124f91afffa86d7adbc9daee59b9ce3b8
+  license: ''
+  license_text: ''
+./doc/posix-functions/swab.texi: 
+  copyright: ''
+  hash: 5f1b9e4cd038dfa4ba9b6cced84f7ca4a093bcc874734b7308a6c9f908e2a979
+  license: ''
+  license_text: ''
+./doc/posix-functions/swprintf.texi: 
+  copyright: ''
+  hash: 05d43b5965871120633aaa8e07db8b65e0b5c76f32a79209886f5cd9808d9574
+  license: ''
+  license_text: ''
+./doc/posix-functions/swscanf.texi: 
+  copyright: ''
+  hash: bdb33f918f65de4079d17d12db4ce89974b98874586b5239708ca87ea604bf47
+  license: ''
+  license_text: ''
+./doc/posix-functions/symlink.texi: 
+  copyright: ''
+  hash: 8ab46669c8aa3f1a94011e96ead35ad94b6b860acfdf93045e2f5fcb4abe68a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/symlinkat.texi: 
+  copyright: ''
+  hash: 74823e16d2e2127a2cea8f8012bde6f13eb46e16b92b95378e44ff1ccdfbe489
+  license: ''
+  license_text: ''
+./doc/posix-functions/sync.texi: 
+  copyright: ''
+  hash: f3254dc3fe6e69ccec6ed1fabcc4a937b762d47399b42417b4602600f7a74e02
+  license: ''
+  license_text: ''
+./doc/posix-functions/sysconf.texi: 
+  copyright: ''
+  hash: 7fa91e5905cb666480886ed1fbfcc8bd6143aa15ad991c50e185713932e3954d
+  license: ''
+  license_text: ''
+./doc/posix-functions/syslog.texi: 
+  copyright: ''
+  hash: 3fa7a8bce58b4fc35d8de2b7f83302751a10774cd9c47317a649594a412d85a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/system.texi: 
+  copyright: ''
+  hash: f2f18381b4fc011d3e3ff57014455b7ad72095ab5dfcd5110c38ad243b1a574a
+  license: ''
+  license_text: ''
+./doc/posix-functions/tan.texi: 
+  copyright: ''
+  hash: 2548baf13b89054a685577793dcb420503cb01784088d0b67f0b8d4ebef7619e
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanf.texi: 
+  copyright: ''
+  hash: a1ccbad3ea8fc17a79b7965bd07071f3f7a644b3ac32045136f0e3d23ec6da47
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanh.texi: 
+  copyright: ''
+  hash: 323d1753b2bff97aa6a4d046eb95e878347cfbcce6759c4063bcb2a2700fcac6
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanhf.texi: 
+  copyright: ''
+  hash: 585f42d0c0f485ddd0481ca748825a4c1120748889c8bf8cfb92d8e2896045d0
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanhl.texi: 
+  copyright: ''
+  hash: 78a63792dc3fb91f708b6fee2002e2f3cbfd37e4de31be1eb5788e483f6db288
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanl.texi: 
+  copyright: ''
+  hash: 506a2a087c69a32413365c5cc59a894210da81f58ffa38d9342524d45ac84243
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcdrain.texi: 
+  copyright: ''
+  hash: db2ff21ff51f9c0ea21890eafa4e14d4cdcae60837f9aad0aac6d5ef96f769f5
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcflow.texi: 
+  copyright: ''
+  hash: 2cf29c5dda1ad174414674a2cf89d10e0da61f1bde45d97c7b529e04fcbc41bd
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcflush.texi: 
+  copyright: ''
+  hash: e8023b50addee8b28e96ff5b5fa800c3d112d7fe5954fd200142697499fe9a31
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcgetattr.texi: 
+  copyright: ''
+  hash: 4df9e953232c6815dc79daf79e34deec796ff7d1a571df03a7286e75ac5bf9f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcgetpgrp.texi: 
+  copyright: ''
+  hash: 929a9e3c434cd83961f1091fd879ec9319832d9a1dcc32cee93a0a2e113a1fd2
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcgetsid.texi: 
+  copyright: ''
+  hash: 51246de9b6b65dcd29ae45a202226470a5c414dd3d410f555ddd4843cd7f4300
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcsendbreak.texi: 
+  copyright: ''
+  hash: 75192304ee0383d9d9794c92e1a21890b0f0b483a5728e8c855fd8465e3e405f
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcsetattr.texi: 
+  copyright: ''
+  hash: 6cb8777002ba2e5fa4ee6b5b5b24bb8f26d030711132e546d4024dca56f3143c
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcsetpgrp.texi: 
+  copyright: ''
+  hash: 5f5d907f551275116726385beb40b9a93cc627d3ec22cc80438ab198ef99b131
+  license: ''
+  license_text: ''
+./doc/posix-functions/tdelete.texi: 
+  copyright: ''
+  hash: 743411155abe9d4d6ea3db338cb01d5793ca8941833126cf12c40c7a1a62fba6
+  license: ''
+  license_text: ''
+./doc/posix-functions/telldir.texi: 
+  copyright: ''
+  hash: 11cc06c4ebed4b75dd250b1e0d7f6c484c5efd024f99cc72605dee3dd4e37289
+  license: ''
+  license_text: ''
+./doc/posix-functions/tempnam.texi: 
+  copyright: ''
+  hash: 5374a2d9bda620f20d7b0e7ff1338996187c94b68069775c6843bec9cbd83307
+  license: ''
+  license_text: ''
+./doc/posix-functions/tfind.texi: 
+  copyright: ''
+  hash: ae8afd2eeb59398111a80bc961cca20e8d133a9bb048511d1f4306337d1c6cb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/tgamma.texi: 
+  copyright: ''
+  hash: 5ca38955dab4ce6bfd9f61431c2c951e0a15408d7badaeb3a6f04de57a479c8e
+  license: ''
+  license_text: ''
+./doc/posix-functions/tgammaf.texi: 
+  copyright: ''
+  hash: 99ee30fd4ccc81ec31d37b8c92e5f73f72aa25df0ecc6a890e333694d95aa450
+  license: ''
+  license_text: ''
+./doc/posix-functions/tgammal.texi: 
+  copyright: ''
+  hash: a34594b5d992fbd9d2ee3d630e41c30a2933670fc3c919693b58fe75eb281688
+  license: ''
+  license_text: ''
+./doc/posix-functions/time.texi: 
+  copyright: ''
+  hash: 16c2fb4377781ee1d83d384004670abaaa5b4340f5a5d3fa90b3a5e75a552f88
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_create.texi: 
+  copyright: ''
+  hash: a78b5d9fddb3b0e38eb12f1ad442e64b16db90732893875b4d6bae5341152518
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_delete.texi: 
+  copyright: ''
+  hash: 2c2e487fad74e481ec0ef80f805bc04993d69f6b50c2f97c3757b2b29573dc61
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_getoverrun.texi: 
+  copyright: ''
+  hash: 23232ec05fbd7834bad0c5dad506c88ebe2c884fd8c303b913f79ba31c76fc6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_gettime.texi: 
+  copyright: ''
+  hash: 7e92301a5ff64562c7cd009453b91b9be29abf75c1ef65daefc14ff865249300
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_settime.texi: 
+  copyright: ''
+  hash: 8bfaf4e88066cc93846df1a23d788fabf61c3be89fdd3195f934c2479e16123c
+  license: ''
+  license_text: ''
+./doc/posix-functions/times.texi: 
+  copyright: ''
+  hash: 4b480d61e6dcfe3f0b24cb82dc5d20be0bb6d167ec66c561c37255751821f969
+  license: ''
+  license_text: ''
+./doc/posix-functions/timezone.texi: 
+  copyright: ''
+  hash: b83ab677215817b1528836ef12de7773c8adbdbb48e495ef2c7a1ab5dd616c7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/tmpfile.texi: 
+  copyright: ''
+  hash: edbab21902041e8d278c6745d0290e1659e7d0a29f3f0b6583bc7b860136e14a
+  license: ''
+  license_text: ''
+./doc/posix-functions/tmpnam.texi: 
+  copyright: ''
+  hash: 9f8cf065941f401bc1e26df99d907d69353ab52d98c46fc54127b405a144a3a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/toascii.texi: 
+  copyright: ''
+  hash: a97da9d9fd148dad24bcad63d57d69efb5d18fb115eab3e85e04f1a5c4d51e4e
+  license: ''
+  license_text: ''
+./doc/posix-functions/tolower.texi: 
+  copyright: ''
+  hash: 196548b9522eb8b3c56f209a99d1e13daf87f5f7f2dcd8a1b88eaa49180bbce9
+  license: ''
+  license_text: ''
+./doc/posix-functions/tolower_l.texi: 
+  copyright: ''
+  hash: ea6dc968b7beb65776cd2184cf2b9b1504f25b58bbcb22ba1c8ae30e387cfe08
+  license: ''
+  license_text: ''
+./doc/posix-functions/toupper.texi: 
+  copyright: ''
+  hash: e2defa72d3095d58b3ba26fce4a0aa35b98f40a3f1e08be65e7490c9ed2dc142
+  license: ''
+  license_text: ''
+./doc/posix-functions/toupper_l.texi: 
+  copyright: ''
+  hash: 20eedfcf323d2479bb4dbbd241cc190f8ff601fe0516815011c12011b4574cbd
+  license: ''
+  license_text: ''
+./doc/posix-functions/towctrans.texi: 
+  copyright: ''
+  hash: 8a1e03793aab23ee1d7076c4d9319a4f1b361362e121fa37248bd3503d4a4665
+  license: ''
+  license_text: ''
+./doc/posix-functions/towctrans_l.texi: 
+  copyright: ''
+  hash: ce31c960b403299b70c3a391016c626884a941aa1cbfcce216840436bf7b7b37
+  license: ''
+  license_text: ''
+./doc/posix-functions/towlower.texi: 
+  copyright: ''
+  hash: edd5f5eb25dfcebf7dc296ba43b616d3b4002387d649c2abaa1a044b20643a8d
+  license: ''
+  license_text: ''
+./doc/posix-functions/towlower_l.texi: 
+  copyright: ''
+  hash: 0ba70fedd9ed1733360ed322e14367f432080bf314f87bc6e83649fc9f7e2326
+  license: ''
+  license_text: ''
+./doc/posix-functions/towupper.texi: 
+  copyright: ''
+  hash: f46446812e0e4d98a8fbf546a8bf40e189b7fab597162b8ada7ec247311c4fe3
+  license: ''
+  license_text: ''
+./doc/posix-functions/towupper_l.texi: 
+  copyright: ''
+  hash: 3a01be213186f9daf15f189b511d432b1929134741e4e08800b2394700cfe591
+  license: ''
+  license_text: ''
+./doc/posix-functions/trunc.texi: 
+  copyright: ''
+  hash: 2c7faf7f86690c2de6fef3d76f0688aad0b11e1eadce8e1ee31e3963ae357601
+  license: ''
+  license_text: ''
+./doc/posix-functions/truncate.texi: 
+  copyright: ''
+  hash: ad6988f2a3cf922df9d441be49aceaf0213a6ef329c5e192db4736ae321057a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/truncf.texi: 
+  copyright: ''
+  hash: de12f43f978664b351f577e9a5daef41a3fc84222f4f5fc9262f8db26b0f3f25
+  license: ''
+  license_text: ''
+./doc/posix-functions/truncl.texi: 
+  copyright: ''
+  hash: d6a3a1679bb8e28f9a3a76b46add1afd31d4ca16e9ba4f3f695ae8d4e2393119
+  license: ''
+  license_text: ''
+./doc/posix-functions/tsearch.texi: 
+  copyright: ''
+  hash: f6916106a56867ee562714e2d11a56ee7e62ba2a5b044f890f5950fc751ff1ac
+  license: ''
+  license_text: ''
+./doc/posix-functions/ttyname.texi: 
+  copyright: ''
+  hash: 3a53e9dbfb459ef95a6ffd1bd907d0bcd515b0307761cacb5721be060046a0e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/ttyname_r.texi: 
+  copyright: ''
+  hash: f6cbfb6ecafbe6dfdb5f40882b617419be277fa894414db40639a726aec47b7e
+  license: ''
+  license_text: ''
+./doc/posix-functions/twalk.texi: 
+  copyright: ''
+  hash: 90a77428e374001fd58a522352dbfa4286280c931b9524ea5a2723f8899129ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/tzname.texi: 
+  copyright: ''
+  hash: 0441a989ad0b47a309a27221970489ae177f7356e8eb7363d67c878656b54452
+  license: ''
+  license_text: ''
+./doc/posix-functions/tzset.texi: 
+  copyright: ''
+  hash: 7231d68420d2e952b405f8b492d785b0bf45c997a872cf32b108435420f627ba
+  license: ''
+  license_text: ''
+./doc/posix-functions/ulimit.texi: 
+  copyright: ''
+  hash: 328ce2059c0079cf2abc56052da27d917f58ab3422f811cf714d9e423fd04c2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/umask.texi: 
+  copyright: ''
+  hash: 8a2f402496200e1fc0c0fd2e0bccccf52b3dcaa6eddfbc48ae47d087deeeb0cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/uname.texi: 
+  copyright: ''
+  hash: 6755bde328f8c8a2e26f8eab4760f1a7d572c5339449f2882fdad83f7ff92001
+  license: ''
+  license_text: ''
+./doc/posix-functions/ungetc.texi: 
+  copyright: ''
+  hash: 1c34639f7f967f2a66214ca4d0cecc7ff95302248f83b9a70f7e3c06e141669d
+  license: ''
+  license_text: ''
+./doc/posix-functions/ungetwc.texi: 
+  copyright: ''
+  hash: 0d06c6a96b420d7b9dccd98aabbd9baac8521acd967cae84e6022cdb8a31c2e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/unlink.texi: 
+  copyright: ''
+  hash: 1958802de215f64594d391a7f9879329562d8ee7e6321902fc20d289e90a113a
+  license: ''
+  license_text: ''
+./doc/posix-functions/unlinkat.texi: 
+  copyright: ''
+  hash: 098fa59dd086b58401a4710af7fb3c3171a08c95cf2395f5307f02161cd88f5e
+  license: ''
+  license_text: ''
+./doc/posix-functions/unlockpt.texi: 
+  copyright: ''
+  hash: e50e8903ad77ab19f79c13a319ed068480f63ddd947f8dc15a13e534280ff990
+  license: ''
+  license_text: ''
+./doc/posix-functions/unsetenv.texi: 
+  copyright: ''
+  hash: 1541d212606cd33eb1679bcda974df45e99a82dfd665f7d33aac243662a838d7
+  license: ''
+  license_text: ''
+./doc/posix-functions/uselocale.texi: 
+  copyright: ''
+  hash: a1209e949b8c92d82a51dae8e2148b275f81c13b3dd348f543a0b62d47e94db2
+  license: ''
+  license_text: ''
+./doc/posix-functions/utime.texi: 
+  copyright: ''
+  hash: a24aa88412826d7b02bfe1f02fb6795c7b9a8a59b60ff0a975ec583740290792
+  license: ''
+  license_text: ''
+./doc/posix-functions/utimensat.texi: 
+  copyright: ''
+  hash: 173c9ec29703395497e840d32a3fa8155bc291e23d2efa0a7a54e4b42d86a219
+  license: ''
+  license_text: ''
+./doc/posix-functions/utimes.texi: 
+  copyright: ''
+  hash: 8d51beec714b4e3c4ad595e9be1b118696c5a12977fa12a42a629ad03f4669b1
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_arg.texi: 
+  copyright: ''
+  hash: 2da6d5e606404f38325aec110f29032d73d826516de59cd65a1b0cc3e5ef1e9b
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_copy.texi: 
+  copyright: ''
+  hash: 89c374aa138c4359ac2b7e0059a6884cc316ed6c9742a1889fcc910d71cfba01
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_end.texi: 
+  copyright: ''
+  hash: 71e8d133b425de3bb999821a3f0e5b9939a9b340de8f85f096f86886c9d05d1b
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_start.texi: 
+  copyright: ''
+  hash: 13ed783939fb33555b552e86b00411ec0032076a9d909a99b9812c75e0080654
+  license: ''
+  license_text: ''
+./doc/posix-functions/vdprintf.texi: 
+  copyright: ''
+  hash: 855f46947553e9d6e745ed76dd9fc96252202d5a7670d1f7edb31f897d59c866
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfprintf.texi: 
+  copyright: ''
+  hash: ea7d201cdc68907be08bab243835a24441895b202d77e63b48559ddc9086c069
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfscanf.texi: 
+  copyright: ''
+  hash: f0b4648d4126271ca14486c4fece1894aca7086f8db26508927cd4d246a2f77f
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfwprintf.texi: 
+  copyright: ''
+  hash: 200c520c974f536a06bfb5ce702add69f502c35b3b57c25eac925fcde5db8f86
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfwscanf.texi: 
+  copyright: ''
+  hash: 1468115a6058c2641c7ae1ca0a62944642b5841ba17513ad35c6c43fde79142e
+  license: ''
+  license_text: ''
+./doc/posix-functions/vprintf.texi: 
+  copyright: ''
+  hash: ee2fa0a176a8b7c847e9ec8b4a3bc56c77937cb49dc176fa078e41637967586d
+  license: ''
+  license_text: ''
+./doc/posix-functions/vscanf.texi: 
+  copyright: ''
+  hash: eca0bed937adee2b64abc9215eb27744f667f0d4eda4a232a7dad80995a36c1c
+  license: ''
+  license_text: ''
+./doc/posix-functions/vsnprintf.texi: 
+  copyright: ''
+  hash: 3e468e6f97b3571aee0963c7fc2871601b0e518e07a1df85fb873f8c25d6bcc2
+  license: ''
+  license_text: ''
+./doc/posix-functions/vsprintf.texi: 
+  copyright: ''
+  hash: 8a9b9edf7d98f987517cb3b7650a739a7d959ba37dfc9ead9527dc4f9257c2a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/vsscanf.texi: 
+  copyright: ''
+  hash: a962e8a48ae62bf84f0ca9e7a5c3f1a5e9f96e855b3f79cff91032624d693a88
+  license: ''
+  license_text: ''
+./doc/posix-functions/vswprintf.texi: 
+  copyright: ''
+  hash: 705139250cb9f7e443a4dc17c4728cd63e8fd6e2c9414bca636536cda23fd758
+  license: ''
+  license_text: ''
+./doc/posix-functions/vswscanf.texi: 
+  copyright: ''
+  hash: e7a04f078ac79b1890e517f87e8d4694a6e45679b0fb48f236580d197a4e46ca
+  license: ''
+  license_text: ''
+./doc/posix-functions/vwprintf.texi: 
+  copyright: ''
+  hash: b72b770973a6ef5051e9ff66aa22bcbc8b58a2c6431543512147c1f22ff9c9a6
+  license: ''
+  license_text: ''
+./doc/posix-functions/vwscanf.texi: 
+  copyright: ''
+  hash: 923b5d92b22daf9ad2ccba87d91bfa15e157309420f4db651b8629ca43207c6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/wait.texi: 
+  copyright: ''
+  hash: 7b072a3b82336d00ed25a885cbda48782e1b863c4c027836b77ce61763f3bcc5
+  license: ''
+  license_text: ''
+./doc/posix-functions/waitid.texi: 
+  copyright: ''
+  hash: f1062ba46c44cfd335b13fa64595732f330100537d8e9339af1abdd7571845d7
+  license: ''
+  license_text: ''
+./doc/posix-functions/waitpid.texi: 
+  copyright: ''
+  hash: 5676832d45eb43ebf1c1aea887bc4c019db4810fbbb16cce5cdc283748655ac9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcpcpy.texi: 
+  copyright: ''
+  hash: adbf37b23fbedfbd3bef3f5c4c0088880a853cfbad97f9a7c943fef6cb366636
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcpncpy.texi: 
+  copyright: ''
+  hash: 89c94c9fc1d0bd17f9cdd12a4dc7fc1d510297fd642acbb2ea6f35e3e97c1572
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcrtomb.texi: 
+  copyright: ''
+  hash: 20040edab7d3f5b765282992f971d3c8adc2532ca47ffba40dbb3791f4a66dc0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscasecmp.texi: 
+  copyright: ''
+  hash: 66134fa29f6569f7caaa554bd0513520f1e5319669215d2b3edb1b5732391db9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscasecmp_l.texi: 
+  copyright: ''
+  hash: 92ad8bd9e265fce46bc834d14274050bb01214d2391ccdc3caf5d1961f54f444
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscat.texi: 
+  copyright: ''
+  hash: fdccf8e9cbeccb400ec7d5a4539b3af4454602490af20dea7751c2dab2555a34
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcschr.texi: 
+  copyright: ''
+  hash: 23b351cedf83b8a8765000a2d21512ec922f12e2240a530bc21f41813933e27b
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscmp.texi: 
+  copyright: ''
+  hash: 71ddccea8ca18d3fd9f2ae85027f8b97cf654fa0316334a151d284aeb63f2666
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscoll.texi: 
+  copyright: ''
+  hash: aad7c92bbfe1458195cba400ceeedc2f972b53cc82943bb8d33389ebac5806cb
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscoll_l.texi: 
+  copyright: ''
+  hash: 5586b954da59befd5f0ebe05d67197dae1dba49e676f9ce27dd5fbc99ca1ad34
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscpy.texi: 
+  copyright: ''
+  hash: 8304e8f34e5dfb5355ee75b71b3d43120a60e068eb1ec43897ceb9a0256740a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscspn.texi: 
+  copyright: ''
+  hash: 5ffbf9e0f0e2c1fc7d927eb8fd22d924e8d80327a3f0eb7fc61b3ab2d49b0cb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsdup.texi: 
+  copyright: ''
+  hash: 1e78bf9c90542816d00bba60747a68e20620b86c752a95623727f40ab7a51668
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsftime.texi: 
+  copyright: ''
+  hash: 0fd19a9a4993f2b17716c4eac56ccb29a09cdb415a4a84ca0923b41c94d020fc
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcslen.texi: 
+  copyright: ''
+  hash: e16a5c07a3374522e6426a1cc7e2905cb38bd08c629f2bc0d8edcda65b931dc2
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncasecmp.texi: 
+  copyright: ''
+  hash: 5e9069b6210dd425da54820a9ac0d1e48fc54777a9053a5fbdf09a0ae91c47b9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncasecmp_l.texi: 
+  copyright: ''
+  hash: 623af56af0d98ff81b22a7026dc47dfb9c7c956abcfcf65b79de181098eb5cd9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncat.texi: 
+  copyright: ''
+  hash: 025d8c6060e4cf49fbb4d9773fea8a45f0cb32c6ac60d7cd5cf5c593de8a3098
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncmp.texi: 
+  copyright: ''
+  hash: b2a701a27ef1cd29151fdd7695d90734d9c3263f9c90979e8139694b42f3cca0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncpy.texi: 
+  copyright: ''
+  hash: 680c88556c2891e79ba30e5426925cdf6237497b1db6cd6928f9db38175a4a73
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsnlen.texi: 
+  copyright: ''
+  hash: c88fc97c86b35cbaaafc72677673750e51c18d4839a2282280f51f3a7c94f29f
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsnrtombs.texi: 
+  copyright: ''
+  hash: 38e32313de6075fb014a419f95846e08fe3b6ef0232e974dda96524b9a58ce95
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcspbrk.texi: 
+  copyright: ''
+  hash: b7e3aae920e207a4ffa9c2d58154db777dab5c03956c90676b7f830dd32b1b9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsrchr.texi: 
+  copyright: ''
+  hash: 4827a5725f798d8548c1dc931b4c9ba1cdf0c28742d7023b2fd5648db4f166af
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsrtombs.texi: 
+  copyright: ''
+  hash: 20549abaf5995e8fc9e206506df36fa821bd6111c06f81f5643fbb9556b833e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsspn.texi: 
+  copyright: ''
+  hash: 9830a44067be9bad8959677dbe641b591b2b3af00a0615925af0d6d559879a34
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsstr.texi: 
+  copyright: ''
+  hash: d40e47110c8a0582ea5f8a83b11a33c806f3aa455de094b23a17e91b3363ebf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstod.texi: 
+  copyright: ''
+  hash: 842e8b42f92fd1208caa5feafd8ba211e1f8f809df69858f908c70071e535a8f
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstof.texi: 
+  copyright: ''
+  hash: 26784e4f1151882911d064b9fb4dd362386ae570fcba9ad669e3db39b5b8f189
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoimax.texi: 
+  copyright: ''
+  hash: 6eea93e73c4f3194727b65b2224f65b4f2877fa01a29c2944b8199698cdfea74
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstok.texi: 
+  copyright: ''
+  hash: 557d0180fe43d4074b887b380e8dfe206bb8618788157779751fd3c3771a371e
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstol.texi: 
+  copyright: ''
+  hash: c5b9451a8dbe0bc8c7a11b2ca01b2900c65ca297d593f90d7c575237b9da6093
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstold.texi: 
+  copyright: ''
+  hash: 2c506830e10b71cbd323b5fbe08af43575e2d3f4551b080a61a87b6db385f690
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoll.texi: 
+  copyright: ''
+  hash: a7464fcc6fe1de31cdd9f9ce1603fcc1f573603ea086e0eba7d70e59d86a77e0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstombs.texi: 
+  copyright: ''
+  hash: 60461f3cad84dd817af8c419fd7b6bbd16d55c9f50e1e9d5736ed893fa558782
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoul.texi: 
+  copyright: ''
+  hash: ea33073e6a7d43480d7024db4c22205b35d28c07f51b5b7bd7ae008c264ea608
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoull.texi: 
+  copyright: ''
+  hash: 9cb3f44e0ecec8fcea7543b5267aa6e0c308d6cfad5d40e00fbb9e2bde0282cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoumax.texi: 
+  copyright: ''
+  hash: b565c0f20f9d2fb4e4cfb2fd9d0287cf65ea32a8914754d89b1b1084952f6dd1
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcswidth.texi: 
+  copyright: ''
+  hash: 896decdcde4828a47aa820a0fcb87b34d2c259ff5f12bfbbd366dc21f062ca2d
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsxfrm.texi: 
+  copyright: ''
+  hash: a225016ded36398af868e7a7eec2100ec87aa24295fe1b89569cef92ece2b497
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsxfrm_l.texi: 
+  copyright: ''
+  hash: 79db8278300b2e6d0cd705e56a80b189b6cd6fefd07141570ad020c6b58ade06
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctob.texi: 
+  copyright: ''
+  hash: a328a016c849d39aecc034af1289545c879261dd4d1c0397c13bc897fc1ba248
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctomb.texi: 
+  copyright: ''
+  hash: 271fa327aba8172c6ff974324015b11eb97e362d59a82b5f708cf40f31a0ad77
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctrans.texi: 
+  copyright: ''
+  hash: 777b5cc1977d214324ba2a17afb9e29ac1f236adb3d8d8d17105305d0b8d7428
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctrans_l.texi: 
+  copyright: ''
+  hash: 542a8806218cda3159f88863801a4c1411528a8d93987683fcdbf4feccc4f334
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctype.texi: 
+  copyright: ''
+  hash: 2774f59844136310c38578106f1ae858d399cea66f4120c2d61347d88187bea9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctype_l.texi: 
+  copyright: ''
+  hash: 33c31ade64fdf052f408f9cf8d3fe1537a19181f94ba7c7664bb3e3950f3258b
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcwidth.texi: 
+  copyright: ''
+  hash: d006f3954b9dbe5f0f62725919a8f69247ee7b5d59027c6100ccdaa54b067c28
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemchr.texi: 
+  copyright: ''
+  hash: 0e16deaafb7a56b294ef7beac0845e67c88466e988628403b6ae76191929896f
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemcmp.texi: 
+  copyright: ''
+  hash: 7ef06384b1bd437f31fc61be3c8ca6f2cd44db4665392435161774ecebfe8cc2
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemcpy.texi: 
+  copyright: ''
+  hash: 371919a935508d67b755bcafdd62402723141e2fc181b84d0af55c3283d70566
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemmove.texi: 
+  copyright: ''
+  hash: c60c122626faea9445a6d85c423bd3943f18d9290dd31f23fb364dcb4a152a37
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemset.texi: 
+  copyright: ''
+  hash: 5926f9711c9be1d1a12776c1d5450ba89a635c7e8b333ba5ad91b9f3bc8cd935
+  license: ''
+  license_text: ''
+./doc/posix-functions/wordexp.texi: 
+  copyright: ''
+  hash: d8cf559a0d704061199c24c113cba50f0548d1daaff98b347fae58eeb7c4ad93
+  license: ''
+  license_text: ''
+./doc/posix-functions/wordfree.texi: 
+  copyright: ''
+  hash: f880186c7147a2fa91a929968c6a8d244d03f025699248b285ee838869ae12c4
+  license: ''
+  license_text: ''
+./doc/posix-functions/wprintf.texi: 
+  copyright: ''
+  hash: ee3d50061cb4af26c4e9465ec1754b86d3e04370f066ba326a62dd3010bd2d98
+  license: ''
+  license_text: ''
+./doc/posix-functions/write.texi: 
+  copyright: ''
+  hash: fd88455aac642a64b0861cd64659fe85a1ebd5e22959b03c07e1f66d655d2924
+  license: ''
+  license_text: ''
+./doc/posix-functions/writev.texi: 
+  copyright: ''
+  hash: f1a345feaf1b45dfce39b4541f67387416d39596695dfbe3591fb464ea2a7730
+  license: ''
+  license_text: ''
+./doc/posix-functions/wscanf.texi: 
+  copyright: ''
+  hash: ae71fd02dddd945d442c5db2676638828bfa5cbbab67e09eb6db357b58bd121f
+  license: ''
+  license_text: ''
+./doc/posix-functions/y0.texi: 
+  copyright: ''
+  hash: 101d5a5de97702c6a595b520995e10c8a5d87321309e9754faf260dc9b0dfe76
+  license: ''
+  license_text: ''
+./doc/posix-functions/y1.texi: 
+  copyright: ''
+  hash: de9c81ff2036effeba44607d218f61f4d1de6705ea1d44518df8f9a059045317
+  license: ''
+  license_text: ''
+./doc/posix-functions/yn.texi: 
+  copyright: ''
+  hash: ae6fd587065d1cfd4705b711d50b84951ad55d885acebe2da13ec077928f4c38
+  license: ''
+  license_text: ''
+./doc/posix-headers/aio.texi: 
+  copyright: ''
+  hash: b5feffffede6b90b47f211b2664652c4c6c256ce00066d8a019328535a217723
+  license: ''
+  license_text: ''
+./doc/posix-headers/arpa_inet.texi: 
+  copyright: ''
+  hash: ff625ebdd28615e9101d9db60bb98cc044314373a15ccd3f277781dcd9e47d6b
+  license: ''
+  license_text: ''
+./doc/posix-headers/assert.texi: 
+  copyright: ''
+  hash: f5dd70d9b33819f71ef223c8e8178c1f74c0844199442db3f1dc94fca17fd0c7
+  license: ''
+  license_text: ''
+./doc/posix-headers/complex.texi: 
+  copyright: ''
+  hash: 52bf5734bb5d06958672f56209d843d575a9159d0a403da67ea90323dc6e7a80
+  license: ''
+  license_text: ''
+./doc/posix-headers/cpio.texi: 
+  copyright: ''
+  hash: 4f3f64a0fee70498e119df8ea2b685d226a566fea46235d4f7ed474d78762abb
+  license: ''
+  license_text: ''
+./doc/posix-headers/ctype.texi: 
+  copyright: ''
+  hash: 2261b16ead35a385ba1290e174b81a5cdb6f21a6c43ca0d746830f02b6e75c8a
+  license: ''
+  license_text: ''
+./doc/posix-headers/dirent.texi: 
+  copyright: ''
+  hash: ae0c082fd86691f88441a0e699f09ecd8d56497a9d00c095f604702f69dd38b1
+  license: ''
+  license_text: ''
+./doc/posix-headers/dlfcn.texi: 
+  copyright: ''
+  hash: 7773db810790b9370b355e02d7fe355e0ff29986c349754aeae818578a77ca53
+  license: ''
+  license_text: ''
+./doc/posix-headers/errno.texi: 
+  copyright: ''
+  hash: e845a33891fb534504b0b538e7d614b4ba914cd3172289569843740bd7875ef8
+  license: ''
+  license_text: ''
+./doc/posix-headers/fcntl.texi: 
+  copyright: ''
+  hash: 9e1afcf5976af7bcc27cfa70afb8b20678e579392a2da17a15d5438d320af442
+  license: ''
+  license_text: ''
+./doc/posix-headers/fenv.texi: 
+  copyright: ''
+  hash: b84959cdb9de245d1918278e4308945ba58a8b530782338c4051c473614d81ef
+  license: ''
+  license_text: ''
+./doc/posix-headers/float.texi: 
+  copyright: ''
+  hash: bb06dd01d519ce57e4003bee2a6144e940f92705ccb07ddc48bac06e65e10d46
+  license: ''
+  license_text: ''
+./doc/posix-headers/fmtmsg.texi: 
+  copyright: ''
+  hash: c8d59077dd6ed5e479e80e667a322a69acdbe1d2c1bfa3477d800bc8f0dd83de
+  license: ''
+  license_text: ''
+./doc/posix-headers/fnmatch.texi: 
+  copyright: ''
+  hash: 8327e6d21c05ab578dc51d533e5fc009683e8ed5a66573d6e0c02c7daf46d516
+  license: ''
+  license_text: ''
+./doc/posix-headers/ftw.texi: 
+  copyright: ''
+  hash: b57fdf7c8aed07040361be0defb098f165954dbb516d650fe90cf30f503b9a25
+  license: ''
+  license_text: ''
+./doc/posix-headers/glob.texi: 
+  copyright: ''
+  hash: 93a0a84bb15d874aa8d300eff27f3b095d0865ce4ddbfb6da8df24b0fd884e82
+  license: ''
+  license_text: ''
+./doc/posix-headers/google-ranking.txt: 
+  copyright: ''
+  hash: 36d854034f1dcae0198af5e680acf7f643d6d4b9147571c430f0c755d007f46f
+  license: ''
+  license_text: ''
+./doc/posix-headers/grp.texi: 
+  copyright: ''
+  hash: e6a25df21268de19163d73313b9939f6da2173ed7200c4bbaf09ae3dc0c6b235
+  license: ''
+  license_text: ''
+./doc/posix-headers/iconv.texi: 
+  copyright: ''
+  hash: c55452ea875d46c50e54baea90b4886d24d2dd6a082a16ea14aa6d54f0e95f0f
+  license: ''
+  license_text: ''
+./doc/posix-headers/inttypes.texi: 
+  copyright: ''
+  hash: 4da04e950bd05c7c376371e68dd6cf709ebb220a80eaa28707cf8893d276f780
+  license: ''
+  license_text: ''
+./doc/posix-headers/iso646.texi: 
+  copyright: ''
+  hash: 9e67ac3c5beac4ffd5e496de5a3637d5ee7e8200a5a79afbf069e97151e1af29
+  license: ''
+  license_text: ''
+./doc/posix-headers/langinfo.texi: 
+  copyright: ''
+  hash: 779a37fb6afdfe4894daba2a8d910718aec86f46348d6dec2614db4cd0ca7476
+  license: ''
+  license_text: ''
+./doc/posix-headers/libgen.texi: 
+  copyright: ''
+  hash: 85d49c38bf9a2370252f10d007ff8458b6f69b38de05edfb0e12dc7d45de2487
+  license: ''
+  license_text: ''
+./doc/posix-headers/limits.texi: 
+  copyright: ''
+  hash: e634ce8670c851c54ad83b550cdb854c9d08bcbc9777c01c61e521974df770e8
+  license: ''
+  license_text: ''
+./doc/posix-headers/locale.texi: 
+  copyright: ''
+  hash: baee6e53c2544b87f7bfcabea0e3afc907ae0354856fc3ccda8776ec61ce2580
+  license: ''
+  license_text: ''
+./doc/posix-headers/math.texi: 
+  copyright: ''
+  hash: 3ea2c31002adb9a489426663a739c78120fbc5bf8c853b45679fe7d336a12977
+  license: ''
+  license_text: ''
+./doc/posix-headers/monetary.texi: 
+  copyright: ''
+  hash: a34c02edb7baef72752df520a8004292a877a4149eea0e6714305c5d497ea42a
+  license: ''
+  license_text: ''
+./doc/posix-headers/mqueue.texi: 
+  copyright: ''
+  hash: 9e26ec683c374aedfac424770de10bffb88d1fc1e35343906dd4971c3745b380
+  license: ''
+  license_text: ''
+./doc/posix-headers/ndbm.texi: 
+  copyright: ''
+  hash: 7c094880e953813e313ccc986d896808eec19926093dde5b77d0543593225871
+  license: ''
+  license_text: ''
+./doc/posix-headers/net_if.texi: 
+  copyright: ''
+  hash: 9d3f40aa662eebd30b64649ee11e1312f03d64ca3f113074154344985421b22f
+  license: ''
+  license_text: ''
+./doc/posix-headers/netdb.texi: 
+  copyright: ''
+  hash: 81efac0cde64e7933c49ca6ba20888bcc1e4d14e39943f3e514dfa6d33bbd1e0
+  license: ''
+  license_text: ''
+./doc/posix-headers/netinet_in.texi: 
+  copyright: ''
+  hash: e542809271aa2cd707d4719a1f8f8d7cbf8226bb1dfb72838ce89a452f2245ac
+  license: ''
+  license_text: ''
+./doc/posix-headers/netinet_tcp.texi: 
+  copyright: ''
+  hash: 23509502b23ef5cd9c39b8b860bfcbb7f18954a73524fcbe1e2f042b359a4d59
+  license: ''
+  license_text: ''
+./doc/posix-headers/nl_types.texi: 
+  copyright: ''
+  hash: eb08f2ce3f333f7bff7d2153a728b0acf4c4b28b52cef6ca33a13e76f65b5590
+  license: ''
+  license_text: ''
+./doc/posix-headers/poll.texi: 
+  copyright: ''
+  hash: ec7ca96e1a5c5ef8c863895984b85ecc85f6746c9c36a183628c9caa38b7cfd4
+  license: ''
+  license_text: ''
+./doc/posix-headers/pthread.texi: 
+  copyright: ''
+  hash: a5be7cd565626355b119c3b1e61b4f6ed8f98e31dda19ee0b4b93dc62385f1f5
+  license: ''
+  license_text: ''
+./doc/posix-headers/pwd.texi: 
+  copyright: ''
+  hash: d470a92661247c63368bbd26dc5049ffd6e0c107b2a613ac524295009eef284d
+  license: ''
+  license_text: ''
+./doc/posix-headers/regex.texi: 
+  copyright: ''
+  hash: b016c9a3b15736ba0b5699d0161a0f323aacab56bb4360ee7a9991d6a9f8f29c
+  license: ''
+  license_text: ''
+./doc/posix-headers/sched.texi: 
+  copyright: ''
+  hash: 8d21cf78b24cdf8383d5c5e1abde4f12e080f061aaa86706189afdb9471b492a
+  license: ''
+  license_text: ''
+./doc/posix-headers/search.texi: 
+  copyright: ''
+  hash: 4964471e3637333930dc8a6852075de64051c2a5d24d0c36cc52b0af772e0968
+  license: ''
+  license_text: ''
+./doc/posix-headers/semaphore.texi: 
+  copyright: ''
+  hash: 46f4edae0baf6b13b4db3f0de34e44d78f0580050e9053080262852035d475e4
+  license: ''
+  license_text: ''
+./doc/posix-headers/setjmp.texi: 
+  copyright: ''
+  hash: 57c43ae545a375c5a52a670a2bfd301f686d1c93025d59c6ac73c93e3e940fa4
+  license: ''
+  license_text: ''
+./doc/posix-headers/signal.texi: 
+  copyright: ''
+  hash: 62595715b74ae647915d4afa4fb949307b061f6c95b3ed52ee4522b67a94d7be
+  license: ''
+  license_text: ''
+./doc/posix-headers/spawn.texi: 
+  copyright: ''
+  hash: 035868e3075dfb31415e3611932d366e4cd17c744caf3973f3c2ce700041c92d
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdarg.texi: 
+  copyright: ''
+  hash: 76bfda1aa2271dc3a394ffa60a359ab70eaee46995d95df2e459724a4f77b800
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdbool.texi: 
+  copyright: ''
+  hash: 125bb0ccd0983b885486dcaebf4ddce35dad39e11a1a60c943646ae6a9361866
+  license: ''
+  license_text: ''
+./doc/posix-headers/stddef.texi: 
+  copyright: ''
+  hash: 997124bfc90ae125326493c1a5c47f183bb74423ce01fcf55f1601f534dd4617
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdint.texi: 
+  copyright: ''
+  hash: cceffcda2dd894a5e695d4e67857815bade971288c965c84717203bef3c950cd
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdio.texi: 
+  copyright: ''
+  hash: 0a4463d4d6a612e66896c384608312ebda0d44e646b2a9130cd7e17fc222c313
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdlib.texi: 
+  copyright: ''
+  hash: 8ec58fc5ab8a7dab2c799d972b003a16eaa9ce993ade7447eb799b5495c106cd
+  license: ''
+  license_text: ''
+./doc/posix-headers/string.texi: 
+  copyright: ''
+  hash: 1e05fd8054a02aa18813a2afaedb80d990ab2762b21331032d6643a5d2bbc6ea
+  license: ''
+  license_text: ''
+./doc/posix-headers/strings.texi: 
+  copyright: ''
+  hash: c36bb3c4fd013835f3f170695cb65bdf9d9941a6a7c8a1ea473deb6c6304c3ea
+  license: ''
+  license_text: ''
+./doc/posix-headers/stropts.texi: 
+  copyright: ''
+  hash: 10ce7f6bd56eb5c087bfc1445d5d7d6c1a3a3ab49a46f6f5536f9abf99d0ea5f
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_ipc.texi: 
+  copyright: ''
+  hash: 987709fd9b281e1c72ecddc44b2260deaf8643078f674f0b8184e910c3ca940a
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_mman.texi: 
+  copyright: ''
+  hash: 19b6d15cb1e745b8e5b181dfb3cc8d33c73ef5963de3d9edce93f850082ade3e
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_msg.texi: 
+  copyright: ''
+  hash: 3cf9367fe2756d8bbf6a523719715cc088118e49d2c040a4ea03dffe9a7f05e1
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_resource.texi: 
+  copyright: ''
+  hash: 53065ace2cd2231da57a4083773882092b6706781e9d6613dc3f139612645100
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_select.texi: 
+  copyright: ''
+  hash: f1a346ce9d9da46a8ac1f06b73c709f9d438ecb6dbf91d537d3628cf1d1ffdea
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_sem.texi: 
+  copyright: ''
+  hash: 8c8f9fe68b61ca3c2d0075ac577c1541e33cc7e42e088659651cc7aa5a43f384
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_shm.texi: 
+  copyright: ''
+  hash: 7bcaeeb0859bf5db9953896a7dafdfb71b7dd1c278eab4da77097f2f1eba2850
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_socket.texi: 
+  copyright: ''
+  hash: ad3994d837d6fbde926d68dbd51a4ee1e670df6a7ce683df8f1afcd8f26b9b4b
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_stat.texi: 
+  copyright: ''
+  hash: 60dae061a3c75ef68ebb90a832c8d4fa057e5819930adbb7aaec240da84acb59
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_statvfs.texi: 
+  copyright: ''
+  hash: 384c0ac41e3f35d7e1ef9ebe2102866be29bb1d1881ee4f95226d7fd225365ef
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_time.texi: 
+  copyright: ''
+  hash: 195cc421036aa90abc0bc0c8e8c5727e61ecf1865acb542bdc289c5010dae9c6
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_timeb.texi: 
+  copyright: ''
+  hash: f6dbc92a61228daf56911be1d37146ecacd4df82501bead2009dd5f34f9e7488
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_times.texi: 
+  copyright: ''
+  hash: facec7ecb6acfc5ee08859c13f611d7009bf66d95b8f460cff2b71e52d315b77
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_types.texi: 
+  copyright: ''
+  hash: 2d7a9db00a00c36d5e166bbf043eb9069b477d61a170213f082f756088c8e4c2
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_uio.texi: 
+  copyright: ''
+  hash: a3f6385a4227f285dc37fb9ff1db96aa384fbff8a392a2d640bf005f152df908
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_un.texi: 
+  copyright: ''
+  hash: a27feb6784f4c51abd27d5667f986f4110373fe629966424d405c5a840342cee
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_utsname.texi: 
+  copyright: ''
+  hash: efbe687e091876e6c676db5a9533062a85adf3009dbf550c52a4d71a69989fb0
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_wait.texi: 
+  copyright: ''
+  hash: 44aee91fd4c85b72a8c966954ba061b965aaac1482f69a98aa61089579ff1bc5
+  license: ''
+  license_text: ''
+./doc/posix-headers/syslog.texi: 
+  copyright: ''
+  hash: 28ddc4c29384e0d9f34b7aa9cd25745fcaa0985a112d645b84a4f450cc484775
+  license: ''
+  license_text: ''
+./doc/posix-headers/tar.texi: 
+  copyright: ''
+  hash: cd109697e8a666ccea3d2f6b9996b60c898cf4c21568a8ef35a2cb8142f026bc
+  license: ''
+  license_text: ''
+./doc/posix-headers/termios.texi: 
+  copyright: ''
+  hash: 54b678c554704bf0a1177cbcf6d2db98edbe298e1bcfb6d7d820d268620cc09a
+  license: ''
+  license_text: ''
+./doc/posix-headers/tgmath.texi: 
+  copyright: ''
+  hash: 4eb1d7fef4d580e91df7a35edfa926ffd821f8636083b87b8a99413caecbaf13
+  license: ''
+  license_text: ''
+./doc/posix-headers/time.texi: 
+  copyright: ''
+  hash: 83887ff1ac780b4b176ca9e9a2836a3d28f0793b67904c221acf46cfc4252de3
+  license: ''
+  license_text: ''
+./doc/posix-headers/trace.texi: 
+  copyright: ''
+  hash: d7736e6e0e1a98fcc3b9870300fc691ed4c2fbfaf424f08eda8a19fab101bf66
+  license: ''
+  license_text: ''
+./doc/posix-headers/ucontext.texi: 
+  copyright: ''
+  hash: 2975ec1d3f351969dcc37b7d72d6c691a3136116a08ba38bb94723f101f3b069
+  license: ''
+  license_text: ''
+./doc/posix-headers/ulimit.texi: 
+  copyright: ''
+  hash: 641e0cae8c99f664100b54a41e03e453846ecc8fc889f91a93239c355e8c1ed2
+  license: ''
+  license_text: ''
+./doc/posix-headers/unistd.texi: 
+  copyright: ''
+  hash: 1e47066520002dbb14539e81acb50184d273f51d047815d246ba2e0a284d8ce5
+  license: ''
+  license_text: ''
+./doc/posix-headers/utime.texi: 
+  copyright: ''
+  hash: 0a7e8d03567fb3f77e998cf10c309e06154b4cf560909dfe3640b3ccc20f94ee
+  license: ''
+  license_text: ''
+./doc/posix-headers/utmpx.texi: 
+  copyright: ''
+  hash: 58a3f69e19d495d7189394ede301568c15bc5ee82908884671156bc5c4f1b052
+  license: ''
+  license_text: ''
+./doc/posix-headers/wchar.texi: 
+  copyright: ''
+  hash: c9e0acf5b953cdbb5d2a816fb831f55f3e2ab2b85b3793c61f6114b530134e7e
+  license: ''
+  license_text: ''
+./doc/posix-headers/wctype.texi: 
+  copyright: ''
+  hash: c5994d40b69ca8ae0d1bc6c2251fb7cb3b7ec5f64f7bef24fd40ee364b7cab9e
+  license: ''
+  license_text: ''
+./doc/posix-headers/wordexp.texi: 
+  copyright: ''
+  hash: 7027331cb789ce356e7d3e2b2313dd9b791f9b96444503905a2657230522a331
+  license: ''
+  license_text: ''
+./doc/quote.texi: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 9cc2b24f70ec69e8dbc53ef7d8100f87dbcf6e4f207d834ce82c872fbeed98bf
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/regexprops-generic.texi: 
+  copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 953ea60aeff18a45851d07c4fd84c6d47156d1cb6056d2808293b45b3663d4c4
+  license: GFDL-1.3+-NIV
+  license_override: PD
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/relocatable-maint.texi: 
+  copyright: ''
+  hash: 1c95896b667fba221783ec193abf89b00a652dec4c76b849a14b605ed0c5abc3
+  license: ''
+  license_text: ''
+./doc/relocatable.texi: 
+  copyright: ''
+  hash: cb899ceab0383cc484f3b15b049b8386a304eb4b3680a196f042fcc2bea03139
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./doc/safe-alloc.texi: 
+  copyright: ''
+  hash: 3902a00303495772ce656b944dfff81237d6a421ad80d871254c12d04cc341ae
+  license: ''
+  license_text: ''
+./doc/solaris-versions: 
+  copyright: 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: bc33ea4cd4eb6126d5633cd3fa7e2adf36078fe37bd648e41612bea8614d2d12
+  license: ''
+  license_text: "Copying and distribution of this file, with or without modification,\nare permitted in any medium without royalty provided the copyright\nnotice and this notice are preserved.\n"
+./doc/standards.texi: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 758abab5b6cc5d66a433405b865acfbe95b4ea85d3de8e4f7810aa21cc026056
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/verify.texi: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: d43e9fbb06bf63392263ab1163c57627f0091d17c88ef1ea645d7d77e2054335
+  license: GFDL-1.3+-NIV
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3\nor any later version published by the Free Software Foundation;\nwith no Invariant Sections, no Front-Cover Texts, and no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
+./doc/warnings.texi: 
+  copyright: ''
+  hash: 7d0b8720b49dad5ab65dc973fbdc274a1bece799f17f45b51ebdfbd71ea094a7
+  license: ''
+  license_text: ''
+./gnulib-tool: 
+  copyright: 2002-2009 Free Software Foundation, Inc.
+  hash: 506eacbbefeba098819ee35b897a3ac4805d5f1f583b31e03a7513f912d9d7c5
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/.cppi-disable: 
+  copyright: ''
+  hash: ed4ff8357c74f26ce7298059529040adbec140e2aff3512d6f0218a9df753e79
+  license: ''
+  license_text: ''
+./lib/Makefile: 
+  copyright: ''
+  hash: 2cd78169faa2196a45036c205f87158a07795f2333fdf1355032503b7c578f5a
+  license: ''
+  license_text: ''
+./lib/README: 
+  copyright: ''
+  hash: b8e700743605335681712b4fc41327c0e5ec1304558ae837865d0ef791afcf65
+  license: ''
+  license_text: ''
+./lib/accept.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 81e7c1c7a740ff4f41971972abd0fce7d0177c859d16af4f191136397a1d820b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/accept4.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 51542463f5bad636c373ba51c3b2ab426e33b3f939bcbabfcaf2d97af6165104
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/acl-internal.h: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: eb885f58854359d77e7d3ecfc31a71a4df2476ec860d7e1a51aa30411c71e39e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/acl.h: 
+  copyright: 2002, 2008 Free Software Foundation, Inc.
+  hash: 51d61a70672664344e91e265051c9409abd29da6e53bfaa37b774cad919a1b19
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/acl_entries.c: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 9f85cc40b290acec6fd2d1429421749158816b59818b6542d1058873b08fe6db
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/acosl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+  license: ''
+  license_override: GPL
+  license_text: "Developed at SunPro, a Sun Microsystems, Inc. business.\nPermission to use, copy, modify, and distribute this\nsoftware is freely granted, provided that this notice\nis preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/alignof.h: 
+  copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 3462758dafa0cfd9ac5dbecc7fdd45d21f7b7f2a8e87ee35a5b37b251a4b1dca
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/alloca.c: 
+  copyright: ''
+  hash: 431aec7ca1324fce73e1038b2634ad070f21bb7fee11867cc153c883cbc9e178
+  license: ''
+  license_override: PD
+  license_text: "(Mostly) portable public-domain implementation -- D A Gwyn\n"
+./lib/alloca.in.h: 
+  copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: b7dcd93bf4979e9478ae25207f011254c3ac6fa5173505035f727801905dc65d
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/alphasort.c: 
+  copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
+  hash: d9acf3be813a3d6e39e7814ed4bf572e796559daad249c11b26c649d7e4cb68d
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/arcfour.c: 
+  copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: c8fed8d528f531f03939034fac2a66aa2101940d2e1a25ae81ecd33397aefd41
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/arcfour.h: 
+  copyright: 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+  hash: 9ac0e9cf9af5561f523190d722544db4ddbbb9e2bb40f47b34daf7cc45ac6f7f
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/arctwo.c: 
+  copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: 2ddafebd0cc6dd4d8ad0fefad69ae2c676755062511550843b130b44e6af00e1
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/arctwo.h: 
+  copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+  hash: 8ebc8bf993f2598e4a531b9c879ea30686307379e18170bb774a34814fab8ad4
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/areadlink-with-size.c: 
+  copyright: 2001, 2003-2007 Free Software Foundation, Inc.
+  hash: 93cb0c93eeecd42ebcb6f5d41b313d8e54d6e85c97d872159053aadb4412cf8b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/areadlink.c: 
+  copyright: 2001, 2003-2007 Free Software Foundation, Inc.
+  hash: 3358ac448b45959a1e867e7f73e753dc1a9c0c493a68e0ef9d43d26f412ec68c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/areadlink.h: 
+  copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+  hash: 2bd213824c6fa8c5380a7addae975805c2f1550a27120bef5cc9faeae3f6cbe7
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/argmatch.c: 
+  copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 76a31c441174aa08a151b841cc9b489075b3e0a4cd0edd4d36279854bdd463ea
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/argmatch.h: 
+  copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
+  hash: 384958e174b369516cfd605f99dc3cbd78763d5df9ecd5a023704eb1009335a6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/argp-ba.c: 
+  copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
+  hash: 9661f51641633441a54245954be390ca3d303e3389349b0ff3a221abaa4b080e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-eexst.c: 
+  copyright: 1997 Free Software Foundation, Inc.
+  hash: b9ad8bc0fa9a452f44ebb0fa9e15e43aba269cc76119db3a0ab3014d0ffaf8b4
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-fmtstream.c: 
+  copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
+  hash: 78c93c6002f45ab98bfcf9487cc421139dc415033d221d8f900454feeb878fab
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-fmtstream.h: 
+  copyright: 1997, 2006-2008 Free Software Foundation, Inc.
+  hash: a9f5474e0d954582819cb3aec9d04b3ed039a5bcae81d5aff11a632693cf5949
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-fs-xinl.c: 
+  copyright: 1997, 2003, 2004 Free Software Foundation, Inc.
+  hash: f42be327cb0f817cef2cf6b3f54ca487960053ff7e4f66a7b9179304f03270bd
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-help.c: 
+  copyright: 1995-2005, 2007 Free Software Foundation, Inc.
+  hash: 5ca3499ee19a2ab145823797673107b2eb288d217a9a1f500e6d77b1eb29bbe2
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-namefrob.h: 
+  copyright: 1997, 2003, 2007 Free Software Foundation, Inc.
+  hash: 3aba78e59efd19a0514f4d27c434803bbc7b7b67ce6a9a26e257ea726b0f88a8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-parse.c: 
+  copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
+  hash: 09167da5bae9280333ff29c12986e2e0ef0d0c761efc54d26ae78f4393d0b24f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-pin.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 136b821e9b1fcec0809ccd1714aba2e4e7d17cc22ec9f7fda27b53c926aff858
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-pv.c: 
+  copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
+  hash: 3a9ac90d20dda74af5afcc874cbb8f69eb81cd80c21009d94815d6ac64ff79c1
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-pvh.c: 
+  copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
+  hash: 9bf839864fb8929972b914067dca6bcceb4f05776fc9ecd4d4225356e01042bc
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp-version-etc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/argp-version-etc.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/argp-xinl.c: 
+  copyright: 1997, 1998, 2004 Free Software Foundation, Inc.
+  hash: 55403221c704ff78de0f4fedde5c49143077592a946456cd1dc707caab2ccc94
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argp.h: 
+  copyright: 1995-1999,2003-2008 Free Software Foundation, Inc.
+  hash: a47d0da1b66595eecbf61c738d5cbcb2c66cb38f2ff958466b5bdaad40e8ce79
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argv-iter.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/argv-iter.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/argz.c: 
+  copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
+  hash: 1c24aecbfd5cd788fc849e7d534c75f86f4e42acb16bc7a18d23e00ba251da74
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/argz.in.h: 
+  copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
+  hash: b5f8d15d436b04bc7e91bc0a133e8ef45b4a70906bd0a4aba412c9ba1bf1a924
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/arpa_inet.in.h: 
+  copyright: 2005-2006, 2008 Free Software Foundation, Inc.
+  hash: d921498b43bfc8b6c8bd8bc3af58f20194194561344fb042169b9aa720c2dd7f
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/array-mergesort.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0b6a5a731180bd7f2271e98ae120c9b01c751899c685fe91ed94efdc215557b0
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/asinl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+  license: ''
+  license_override: GPL
+  license_text: "Developed at SunPro, a Sun Microsystems, Inc. business.\nPermission to use, copy, modify, and distribute this\nsoftware is freely granted, provided that this notice\nis preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/asnprintf.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 8e81f2c3c535f505added072b5281fa5c590144c3aa3e083dad0c3ed52b45aa0
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/asprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 2045ea0ccc9c1e33818278aae4f856ccbec17f95c16ed6b1264dbc5f98df421c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/at-func.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 6123fbee08097fe452caf222c168f32e36f7b9a10d815c8679e22fd0c1fea90f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/atanl.c: 
+  copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+  hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/atexit.c: 
+  copyright: ''
+  hash: 9dfd71e9081a0d0955d144016b832253b840f16f0bfe5144f72ad0ce5a13525c
+  license: ''
+  license_override: PD
+  license_text: "This function is in the public domain.  --Mike Stump.\n"
+./lib/atoll.c: 
+  copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
+  hash: 43af4461379692b1d5e3db98d3b75cf38757d5cd3b2e0c26efb0287da4ef034f
+  license: LGPL-2.1+
+  license_override: LGPL
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/backupfile.c: 
+  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: de3f6f972c0d97e43fda93581b76623a6314b9e5cab5c0559f0b6622d0425874
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/backupfile.h: 
+  copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free Software Foundation, Inc.
+  hash: 08b55cc0243fe8a455eda4a2ce69f879623f6fadfaf004386062e4c15e9a24dc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/base64.c: 
+  copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: a4fedb1d6d2bee5c7d6100ab2f73c5a24e0cd932921577dd9bca74b57e97c0ff
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/base64.h: 
+  copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 92f71847fff2b46fe5623f1da8199c223944384bfe92cf9d66710d17b2969583
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/basename.c: 
+  copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: ca4490814d70e42aa42de5259bc7f9535664c76469f4ad8a5b741bd738171b78
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/bcopy.c: 
+  copyright: ''
+  hash: 141099f203ec7aabf4aefe89031c9d7194ecbcdb85a1f49f18068aaae4da74f5
+  license: ''
+  license_override: GPL
+  license_text: "In the public domain.\nBy David MacKenzie <djm@gnu.ai.mit.edu>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/binary-io.h: 
+  copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
+  hash: ea71f7a3ab4b4dbfdbe578a2bedc51341a632fae63edc9687ddb301a8e88db6b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/bind.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 345fb14e8ab45ff32e86d497f729743b9085d3924d0dcd8dcc4f9b5d28cb843b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/bitrotate.h: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: bf4e90d06ff8a7eb32a59c54394204b84741046fa15f0ee9dfd0cec19cc2cf25
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/btowc.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 4c263e1c7b7add699324c83acf27490eae484d98e3ec75ec8abfe89e50e4c3e2
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/byteswap.in.h: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: bd089dcccc601992343eadc9ac5d1173fe47adaa6be9f554de9b56e0ada6ef30
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-ctype.c: 
+  copyright: 2000-2003, 2006 Free Software Foundation, Inc.
+  hash: 3247e6ae86bda58108f0933bb516ac7092c6b972c747ebbe1ea530edf06c0793
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/c-ctype.h: 
+  copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: 221f512fb0a226a9fe28608c4f065c4f1aea37664edc45787cf2b677d3347988
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/c-stack.c: 
+  copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 0fe02d3bbf8b73c2f3eea5841027b52860666ee94e2795b444dcc98ef79dc503
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/c-stack.h: 
+  copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
+  hash: a21e1759d3e498e26d93665fe500f7ac93027b38ee4c9413df473f6bbe8d0b22
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/c-strcase.h: 
+  copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
+  hash: 700123f142dd7be6a02cb443ec2ec16c5e55412c9b767cb6fb5f41972f2986be
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strcasecmp.c: 
+  copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
+  hash: 5813026dcc5c543c5f539fe753092ea0f0419c3a0e5cd28271a66403efd66608
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strcaseeq.h: 
+  copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+  hash: 41a44de05c8794489a85f495714c9ebe9b7e86bf93882e1157c7c29ef7e87654
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strcasestr.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: a3ef7838539fb370edb6d04a09043224c3852cfa0eb88252705569d7194b217a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strcasestr.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: fb9f0ccc3a0843600f8f3c546536dd03d882a1cce67ed06d95299307810a67c7
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strncasecmp.c: 
+  copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
+  hash: 0f5960e9963b050aa381c57b2fb6d08ad32e86d833e906014b9f965a4f233b7e
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strstr.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: c435d0a89670ee2ac73fad0445f0d15de13e09ddf466ebf15dc872d62b3b5f4c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strstr.h: 
+  copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+  hash: a562f768d2d1e2f44652b98dca2e7ae58e2880eada876116a6d3bf342a312cc0
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/c-strtod.c: 
+  copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 40bcd0ae43e731e785caaf327c327c32e95074019aa23a02fd58c1af79beebaa
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/c-strtod.h: 
+  copyright: 2003-2004, 2009 Free Software Foundation, Inc.
+  hash: d1d38e765e9bb24e6331acb59798291a42525d3d52b5945a06e04131fda2622c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/c-strtold.c: 
+  copyright: ''
+  hash: f2f3327044df634e0b933cb776f209274b8ebea5df3c977a51422befbd6db63a
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/calloc.c: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 813b2807d1779eccdc16e52eaa6272c8d2cad79b90dcd1a121c59fccbd7db54c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/canon-host.c: 
+  copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 6e769abcb94fe823344005341e9d566650fc3f05e22afeb853cd498391890071
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/canon-host.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 15c3b5a2570e4d2b2501c12ea7f690cd76be7a4271c9f620df17b9e24574ff2d
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/canonicalize-lgpl.c: 
+  copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 31572bb94d292f1be2374999e03d2ca1ff506f643e889f1211ad4ec9e42709c3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/canonicalize.c: 
+  copyright: 1996-2009 Free Software Foundation, Inc.
+  hash: 317fb2484d6a487a7ab5c964f7fd86fa711e1ab1ab3fd34518c6d6ae7eb77f6d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/canonicalize.h: 
+  copyright: 1996-2007 Free Software Foundation, Inc.
+  hash: 8946ae555e9b6d4173814e28c850eef63233d5026e291074af2d999e567e3303
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/ceil.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ceilf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ceill.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/chdir-long.c: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 9bfeec4664bd8ea174475e5c7ca4f26bee69370881752dacddb6aeed908600c7
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/chdir-long.h: 
+  copyright: 2004, 2005 Free Software Foundation, Inc.
+  hash: 43c6066052ad511d0bbc773ab569ed70bfe41a4e8f0168495d53f289d3b8292c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/chdir-safer.c: 
+  copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 7fb9baacfff6082c7a5913c4aae0557ff60cfb3e65bd0c09ebd438669d66a570
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/chdir-safer.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: e3232b6124ac91a0910daf805e412816cd3a6ee5a8268acdaa366f4c35f9ed51
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/check-version.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: b9147d6cca01ee62c2de29c59777283b45be1735a457fb9a748256b9f9cd8f43
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/check-version.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: eb1e24d6d5f441f55ca7b9ad07249b71a8056ba2eb91ad6584428f97a5a836b5
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/chown.c: 
+  copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc.
+  hash: e72dbae39e506979332040aa02e82336372fc710944efc83f3da40c5c09ca7a6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/classpath.c: 
+  copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+  hash: d1d34ae2c6f3915f1a22d0399df01102840772c8733b3782ccd4fe220e819b6a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/classpath.h: 
+  copyright: 2003 Free Software Foundation, Inc.
+  hash: 9b2071cc61bb9c5fc67562c4b2ae4270c0e61235f0052a91e63542ed1c161ff1
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/clean-temp.c: 
+  copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc.
+  hash: 36bc4ff5220f99fef224ee81984f458a050b76097c5a2e5fe8ee40d5d84e1bf4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/clean-temp.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 7fb51e989292b9fee1580dc431185ca8ee300709983c7ab0137bfc372d6a2b18
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/cloexec.c: 
+  copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 1f7579bc9888a0a5a4eb18a6a04be6dea54324e346baa4a0c76b240f01ed3329
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/cloexec.h: 
+  copyright: ''
+  hash: cfe5843e2e0ac5ad5fc12a47d962d9f8305a2542693105f25917b8f36614b582
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/close-hook.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ec1354c985be7435887fe9b514e9777b573cf13b674dc55eeffbbf2b6f738034
+  license: LGPL-3+
+  license_override: LGPL-2+
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/close-hook.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0bd92bcbb0e461e75824497facbf3a66e7ae7d8eaf7cc4b91fa7dcb0b827b504
+  license: LGPL-3+
+  license_override: LGPL-2+
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/close-stream.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 5b1b946e2cdae710a10239f75e632eaac2c083ad0a895384be7a76254efcdb42
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/close-stream.h: 
+  copyright: ''
+  hash: 827172f355991afad504e0cbf0ca7bc6df709d57f14b498de472fed1cff3c71d
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/close.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: bb1b7ca07113ae43ac558dbd9ba9c62ccef65d984ff7a462df394ded1e8e5a4c
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/closein.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/closein.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/closeout.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: 0208f6e721c11f8964c3a52a6e8c4bd6f19d35db790e2a5815dfea345d7444eb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/closeout.h: 
+  copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: 2b48405fde7535d4e60a3e539a77ab974fd3e372cf97d8c0ed3a82991c3b9cbe
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/concat-filename.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/concat-filename.h: 
+  copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
+  hash: b84d2c6c2e5a8307529fe2a1345949b40a55aee7271142bf3e56ec008231bc0e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/config.charset: 
+  copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc.
+  hash: 6f0998e29a63e3fcb8c4e044840a073a733d777ab343c1a3f045ce6ab2e9ecf9
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/connect.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: e9e4f3ca46ee356688d1d58e5eba96562c3850b470cc266856bae4cfc7ef5372
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/copy-acl.c: 
+  copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc.
+  hash: 40c730e383e47065909dd9b5cfabcdf662f5ca1d3491528c2726551c49d88e49
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/copy-file.c: 
+  copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc.
+  hash: 8d79873160d6735d8e50841f62ddb06b8a12bb54fc4ccaa29e8fd4c8009e7ce9
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/copy-file.h: 
+  copyright: 2001-2003 Free Software Foundation, Inc.
+  hash: b83fade95166bced102f06075d40d1b52c09d72aa62e313053f297f2e89e05e4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/cosl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: f94441c30759bff7b800832d4a5ca7f10ab4fdec07fa304c2a367ee6814a1ada
+  license: ''
+  license_override: GPL
+  license_text: "Developed at SunPro, a Sun Microsystems, Inc. business.\nPermission to use, copy, modify, and distribute this\nsoftware is freely granted, provided that this notice\nis preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/count-one-bits.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 9bfc5b555787364b6d14caddb1e35b0c076627938d3049c7b0d3d0b411409e10
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/crc.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 444a38281c2c920f7e54307e2fb960e7e045a71ede5a7793c8b59d19dd42fecc
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/crc.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: d20e1f1c17cf2ef4fe9383e09809c60590708ecadd57cf6d967c5634c968eea0
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/creat-safer.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 675f74818da9e9543301afdb0bacc0922294d33b13d7411ff97044bc83ee5186
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/csharpcomp.c: 
+  copyright: 2003-2008 Free Software Foundation, Inc.
+  hash: 60500489341e803a1e684450bb9cb161aa03e3d71fd8c469f1bb47b9e5ddcbf4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/csharpcomp.h: 
+  copyright: 2003 Free Software Foundation, Inc.
+  hash: ed80ee1bdd6a323445877e7988c969b8b4a0699bb70bea8a8f6fd2e98df2f9a2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/csharpexec.c: 
+  copyright: 2003-2008 Free Software Foundation, Inc.
+  hash: 9c8d0cf212dcaf02bcbd13a6f9fc04f6bde9b26961bcb6b84c8d613eccedbe40
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/csharpexec.h: 
+  copyright: 2003 Free Software Foundation, Inc.
+  hash: b52a0f9c1967e21f490cb0a86d5d0910af3e34b693c1937e965561bbe2b01916
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/cycle-check.c: 
+  copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 42e37d48e8e2bde63e12bb394fa4c50a6209ed1b592e6c236411dd339e0756a1
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/cycle-check.h: 
+  copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: 42b5265fff4a67fad7b32708c5ffe9ecb8ee2edac006073355fcc563d9cf7e11
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/des.c: 
+  copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: fd7196b6a2a037973cfc74df6861f31d3ca3a201113252ddc69f6d49843296df
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/des.h: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 0657bba6a068db36353ae4fc668777b7948049ea563a6e04d5643878c73c0553
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/dev-ino.h: 
+  copyright: ''
+  hash: 389d203acc8519fb2e74b471a247ffd831d6dd93ff076a42ee47a8a48b4f821a
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/diacrit.c: 
+  copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software Foundation, Inc.
+  hash: 8fe4fbeca6533f94fe5e22b403d4e9659a74a43af7777951d616971cb58a2865
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/diacrit.h: 
+  copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
+  hash: 1e18e6c700599854713425ac91ef20e1dc1b48d3842826f8ce12c5b8777f6cac
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/diffseq.h: 
+  copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 8e10c66c285feea8e568e48fc868abfd29fca86308f93231c42016b821f5473d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dirchownmod.c: 
+  copyright: 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: c257ba60a2b1e58c04bdd873d5f000f1f03c6f2f364bd25f3f6bda2ce19bf4b7
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dirchownmod.h: 
+  copyright: ''
+  hash: 2377b01e9bac7aabe4b35b4ee9493ca91cf6d0edae1905934deb6462f7dfcdb7
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dirent--.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 07dc0881d2aaf744a41393f3eecee439192d76eb2eb03c62fad51514dc6ffb35
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dirent-safer.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6fa32838fa81f1b4a4e1df89282bd0493df71361847142562db0ebb79c0349da
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dirent.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 6826b90dd9abb410dd4949515a1d15f184e8db441b5ad50f12c2eaf4f6f542c6
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/dirfd.c: 
+  copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 3d93cdf70fd7be9fc29911d59fe09cb189e040224aaad98a8c9e83309e9c7bc5
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/dirname.c: 
+  copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: e875ed57e50a82603de0ee7a830a6d495673d3cf95ad330deed4ec9cc540fd7f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dirname.h: 
+  copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc.
+  hash: 5ecde11db04080822441842ce9cdf1c7d12872412af9305e768bfc5c867e3000
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dprintf.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/dummy.c: 
+  copyright: 2004, 2007 Free Software Foundation, Inc.
+  hash: 3afbebab4922858335d8687bdd39bf0881f6eea6ed63f9d8d2999e9010b6704c
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/dup-safer.c: 
+  copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 37fd02f35d9bbe9b3673b9681de76101a235e4a0fc4d7c630773aabe959455fa
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/dup2.c: 
+  copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: a27cbfd58d5eb3c2d99b2a053764f3f1085841d3f29434c0a8001d845d1387c8
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/dup3.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5a1a146029856f33980e0ca9fb03df16e17c36957b8af8c5f19839cba93b392d
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/eealloc.h: 
+  copyright: 2003, 2008 Free Software Foundation, Inc.
+  hash: 14128ce1ce8fbad4f7358db50d4b6d6ce1c9c524e4ea23b6e266f36b39a82695
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/errno.in.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: fe88fbd6fac6eb6acc5b84e204ef7b20b5968de6725682e3694d1f027bcf3b32
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/error.c: 
+  copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
+  hash: 759532401c6333a4e942e57b2d1ec3efe68990086230f50dfc8018148c6241a9
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/error.h: 
+  copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: c14e8a46030c1ac6f69b89a732b7b3a0c35ab78d550419c08c02a626010c3073
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/euidaccess.c: 
+  copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 88c401261238a10e8eb01df632a0149146590e3692034046262b614e176b7677
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/exclude.c: 
+  copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: d841af1f422218e8e2c99fbda36b8626a810eae7a5e2be71c587bf33ecf2a895
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/exclude.h: 
+  copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 2b13111b63be6c6ecb81a5e34429097b34c88b4a889ea6a41ef41309a6ef3ca5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/execute.c: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
+  hash: fada894c258c01aed0dcacdb27e67b8302428f122a9a80bd346df99e5e29b461
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/execute.h: 
+  copyright: 2001-2003, 2008 Free Software Foundation, Inc.
+  hash: 4e56a6cb0389acc2d1a3f91209fd3781803a0acfeb907ff3d0448286af4e35d9
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/exitfail.c: 
+  copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 5a9a124a57c5dacad4bf2b5e021b77a42a33ee35872481ff71c4e0cd00afc2ec
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/exitfail.h: 
+  copyright: 2002 Free Software Foundation, Inc.
+  hash: 877a42c98a8a8b7975c4a116bcc0afead63f92402e05649936af61e72493f252
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/expl.c: 
+  copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
+  hash: f570f9a7eb0fc19acf0bd0b30e1482a7ed8ba594dc26eb7951dd8a8f119be46c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/faccessat.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b11aa6f0dacf29b21357e6fc7694c750c8a7b4d6601f5fbc8b869d1f7c1cfff5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fatal-signal.c: 
+  copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 2439def8a904b9fec75774ba5e8dcc0c4df0ac24598e0395fa54277e258bcaf8
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fatal-signal.h: 
+  copyright: 2003-2004 Free Software Foundation, Inc.
+  hash: 161abae5aa433aa22b95dbeacf7abe6b3813df0983bbc3e90d1ac806b398dcdc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fbufmode.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fbufmode.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fchdir.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 1cff01be35d904c715c02a565711422784c3ab81ba68517b8d166ed3fdc8172b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fchmodat.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: cb14ca8efe705c5d31767cda4078b03e79cb5401098cd07215414b4af7ccda80
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fchown-stub.c: 
+  copyright: ''
+  hash: 01f08654cdc736f611bedc64897d6cde20db20238576d2e399050a59b54b6609
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fchownat.c: 
+  copyright: 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: f4ccacb449cfd52c9bb32d38c9282f9eb6db3e21bb40fe343f32361e2f2eee4b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fclose.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: b9ff3e698a5bc176cc516f2d1bc0f1caeb31ce6ef5bc03a59f86d41f8c9a061a
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fcntl--.h: 
+  copyright: 2005, 2009 Free Software Foundation, Inc.
+  hash: 3b7416a86275dcfa8f78d2f70ac320e95583cb68a3c2710dfd3d0c0ad79674f5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fcntl-safer.h: 
+  copyright: 2005, 2009 Free Software Foundation, Inc.
+  hash: 1b38a5c280f10b1be082ade7aa7a7094e8e48ad6610748a54b3e1e463c6955ec
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fcntl.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 8f4cd6edcf635c7f343e2b03cd1b7d40d742b57ea937a23b4acbac9f79deb464
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fd-safer.c: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: fe1b4e960de5e5b3af0103f56e2cb6654a051d17aee26df93bda76176ba04d00
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fdopendir.c: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 6fa3102cfff5b57b78e4709b2c03cdcb8dc5519c9889f635ba73c34887212a84
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fflush.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 2622273e90952bfaa2fca8364132393c33b80f90a66a35c6b75240af7e94606c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/file-has-acl.c: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 2f4bae0d818e2fcf56e772e9c9caa2310f7f7dc7d3cd3556335b0d04d46964a2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/file-set.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 45dea5f9b0a95afa2babe22d9de18010fe4078005351697ce25c587c75173b3a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/file-set.h: 
+  copyright: ''
+  hash: 4bacc096f8105ab71d14c90967bb7855d2ad8da0afc132d32c8df03d2eb427dd
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/file-type.c: 
+  copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 9b360c9dba47a27fbcdcfa7c880672f23094a4332459655d5a06abaf75724544
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/file-type.h: 
+  copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
+  hash: 33f7ce18b9037520c8a1d64bce9ba5ccfccc1ac39b4b08510f2f2caab56064b9
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fileblocks.c: 
+  copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 15debca15418300f226a883a5ce4e98d3b687ef448b5b30e08247e56908be2ae
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/filemode.c: 
+  copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software Foundation, Inc.
+  hash: 169a543533dec3c22ffde0c0391528ea49b2440c80bc3ffde47196967ad49af0
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/filemode.h: 
+  copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc.
+  hash: 6439a9bafba8f71ce6dd51c897b653f713d013a8496413a19361cac6f515dcaf
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/filename.h: 
+  copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
+  hash: 4f53c064d5d3411085081f0e8d109ed3132ab4333b1eefff9c22a968fa751ad8
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/filenamecat.c: 
+  copyright: 1996-2007 Free Software Foundation, Inc.
+  hash: d956c0d319ac571bc4c8d3e7d5be91e47dfbe356a8f4c2c64abe944b8e094af8
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/filenamecat.h: 
+  copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc.
+  hash: 6ddfa3af34686669e746d1cb478b10753b7d450b3097c4b856230acdf11a5a6a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/filevercmp.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+  hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/filevercmp.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+  hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/findprog-lgpl.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: f142976d34ef0acffd72143865aadaacf7318c9391ac036941d725be41fd1424
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/findprog.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 0dfc19e772afe61de75fb5844aec46027116c8e89e71b3d1da85482635daf928
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/findprog.h: 
+  copyright: 2001-2003 Free Software Foundation, Inc.
+  hash: 52461483d830d7ff18633a15addd92530f4b6d1632f3cb1dbf15de8092a7758f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/float+.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: e0f837de3dc39e0b747f0927653fa501e3e873bdfe1c26b0961519fd8dd897b4
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/float.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 0c19c5ab4c8e1d8499f9edd1fd44d287083f329b75ec2b54100b101310e88ab6
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/flock.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: c4837f3ed93fcac221405077e40e31648eda752325afe74b7b28d32928fbdec3
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/floor.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/floorf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/floorl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fnmatch.c: 
+  copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009 Free Software Foundation, Inc.
+  hash: a1023b214fa5f3433ca30359a6857be416dc1dade27370bdbd7100857341f56c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fnmatch.in.h: 
+  copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
+  hash: a5c8c5adbf49f1404d18740af34363323265ef6c7588387425b5797518dd9317
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fnmatch_loop.c: 
+  copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc.
+  hash: 5351dffc7f21918d5a731915aca1c452c091beb8a7df2ed78acf823afad6d785
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fopen-safer.c: 
+  copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 2c3a39bc70dada2b591df7cbf00ccc0ceed6e2f66c08fd5e01c7f70cc55eade6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fopen.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 0eae410e55fc3de8810a3f68d37626df92ba75bbadf58269f8e802be2c05310b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fpending.c: 
+  copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
+  hash: af0350b9abdd28ebb8e56a842c10a760620a22b242a6a2f74402ee4222dcc8a2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fpending.h: 
+  copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 01eea55927650242b2ec6a6293963c43ab840f135e5d4e9895c43aaff5d529a1
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fprintftime.c: 
+  copyright: ''
+  hash: 2f439ed60059d2a1a96bdb1e19ca32c81fdcced639c884f1deaf416f4d750e84
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fprintftime.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 4f0efdf4cf65af56c865a1cf73b3314360fe7b326a00eb9994ba12a5bb0d2920
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fpucw.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: e47878db46d7035debf5275a50634b563f90405b938fb8721ade14b526fc4738
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fpurge.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 979d16d694737fea189e9bf8d29a91f31305bc10386618604a2efd317703b257
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadable.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadable.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadahead.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadahead.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freading.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freading.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadptr.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadptr.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadseek.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e5dad14d411c6ebf4122bb8b36c186dc7c6c396d1a13b24aeea84bd19679c098
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/freadseek.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: c7545f90ba5bf8bba37c297551a1a35b4c1814f8cf6d6c3f8d57b2e56ebaba0c
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/free.c: 
+  copyright: 2003, 2006 Free Software Foundation, Inc.
+  hash: b573f5b5fea990902e68d85f02b015cf9320100fe56678f14e732f90cf83e473
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/freopen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 58204a89790d1470a883e67f10cd0ddd7153655334e185ca64530467b797a4f9
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/frexp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 91c12c41ce9b83e5cb3b66a32ee07dd6c30c8d24dd94f452238c006a0322287e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/frexpl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: c03c58defe40517c302193125927eacad08dcda5bf4f49afaec567a5729e3a3d
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fseek.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 0047d7b482dad80bda7de91feaa9d092a02a2a7fdcc852df3c8dc2f9c4bd0191
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fseeko.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 7b2541be24bdcf54f417ab2189fb821a645f6a4f06a21adaff8f058594862194
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fseterr.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 7db3706c69835761a78a456fd39fb66f59d80b7ec061c6c204cceb4ac8cc5094
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fseterr.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 59926523da017089371d4894c0e5bccd77843a75a6a837ab203c875d993393fb
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fstatat.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: e4dee1ca9774aa96627d99386e03d3a973f79dd331825b6d818b8f50a77bd65d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fstrcmp.c: 
+  copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008, Free Software Foundation, Inc.
+  hash: bfca8347502966f7b7e533a47fc2545366b589adee21a653689f4503158b2e5e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fstrcmp.h: 
+  copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: affd05fb827a563d7f36a218fddb5aabf27be47e86157d97d850ff3f98ef74e1
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fsusage.c: 
+  copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: bf6546df7e894ec6855dfb9c9548dae4acbe9b4d69acde87b3c3d5deb1534091
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fsusage.h: 
+  copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 0fbfea12b9dabb5987b88390bdc84d23c2dcd6a435f842f44d26c0a985a490b7
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fsync.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 3d47bf5b981a180ca9cc8a052b84b52744342a9cc13c1c814274b04ed0ccce99
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ftell.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: bdacd27661da79a67395f4c109a4ca358cbf5f7708013ac8b4597e1748cb866c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ftello.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 8eb3edb3ac0a89c7d9fbf79c0f5b80d54bf4ba9150f30175b5c00d56b78da476
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ftruncate.c: 
+  copyright: ''
+  hash: 7e7eb364e0c33931844842e8432d1ba9a9f8b8dd506599b01ab206d1a414039f
+  license: ''
+  license_override: GPL
+  license_text: "This file is in the public domain.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fts-cycle.c: 
+  copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: fc1d44a722404dd98d94914dab1b5ec263ac0d9749adcb8eadab0455348c1b8e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fts.c: 
+  copyright: 1990, 1993, 1994 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
+  hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+  license: GPL-3+ and BSD (3-clause)
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n4. Neither the name of the University nor the names of its contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fts_.h: 
+  copyright: 1989, 1993 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
+  hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+  license: GPL-3+ and BSD (3-clause)
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n4. Neither the name of the University nor the names of its contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/full-read.c: 
+  copyright: 2002, 2003 Free Software Foundation, Inc.
+  hash: 8a27da95d11da5cac1d6d93a7c5408ac9e9e9b84c727c9d6426d536d74329533
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/full-read.h: 
+  copyright: 2002 Free Software Foundation, Inc.
+  hash: d4d3d1e43b305e2074d6ceb67dfc077058f73fa50b9188c61e3322de4c84a156
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/full-write.c: 
+  copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 14aac294502e565d0475a4605c4fa84cd3ba3b006dc9f31359bd20cd01d223fb
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/full-write.h: 
+  copyright: 2002-2003 Free Software Foundation, Inc.
+  hash: 6fc92b2c6f57f68ee664efc58bd464d3694584a11c7895b3e10d073f7463e4eb
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fwritable.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fwritable.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fwriteerror.c: 
+  copyright: 2003-2006, 2008 Free Software Foundation, Inc.
+  hash: 1a1137f1f41c92585bea0ad15c2c294253d8d496638763318511930ddc34559f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fwriteerror.h: 
+  copyright: 2003, 2005-2006 Free Software Foundation, Inc.
+  hash: 57d77b30a81499334eeb50f7dfc84fa69ae4232ff0670018e7d4544f670e33a0
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/fwriting.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/fwriting.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gai_strerror.c: 
+  copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 6fa8c98c6159a1bc336cc672906d02a7c2b14a0db56b900ebd375c79e93e0a51
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gc-gnulib.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: a1a6cd40081db989deb6d637777e1ea5e616b3d6a283a7a7f4a9d5e09291c419
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gc-libgcrypt.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 17a44f44fe9aa32fa885740126dc77e9789d91af8a7b6481c1c03a99b378b010
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gc-pbkdf2-sha1.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 2286c6ae2cbbc15032408e0ab1b986db3f9ba1b141f1a542dbddcbb50c8dce4c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gc.h: 
+  copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
+  hash: a4f94bdf9e032840c9e93a7a9da02fd788642e5def0abcfa0107c6a129f2f4b8
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gcd.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gcd.h: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gen-uni-tables.c: 
+  copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+  hash: aad2b45b19beca4f2ac5d5f5bb9edce6d0afc88e1b7b9d1047748f876a287f4a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getaddrinfo.c: 
+  copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: adc75b9ed0c95c54930e8aed577992958efb7d055fee5326a497b8abb69d0316
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getcwd.c: 
+  copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc.
+  hash: 5875b69c2fe815331158284d7517251ab1bf88edae205ac42d739b529a6d4873
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getdate.h: 
+  copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software Foundation, Inc.
+  hash: b9389accd94ac78a67232edb3c527f3f70ee67ad6f01602d68b55ba4fbcd0dba
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getdate.y: 
+  copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: b5fca8ba27d142ddf8675e4f97a669f215e388619b18a6be948a2fb748066a5c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getdelim.c: 
+  copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 992ace4fcbea4653a4c94a5e3161682e707b458f19befe7a2efe9b6d0536c45b
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getdomainname.c: 
+  copyright: 2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: 49d9ff73b25a4e25ab534f038da03ecc6bd4f1e55511d312f3e3652d79e561f3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getdtablesize.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 51191e642c33bb0d979044844f6eff55029ec458cd21474f85bb0b0d51eb1353
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getgroups.c: 
+  copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 0f0b9f4b7e5c2b88b951017ee86711bfeafe90b04b0b610061b888563f4fdded
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gethostname.c: 
+  copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 08b8fc75fb3ab4c65596a95988f9a243016039c6a6d58db033df382b3e85ef91
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gethrxtime.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 1cec40c1dcc320f69be6e1c805d217f9abab323dfc4d321daeb53e6d8a47b7d8
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gethrxtime.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 0f5ade662a7551e4b033ef5d892a59fa220a1ca1e4fca8feb3778e6102444739
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getline.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: db509c33815c26829232154304e781d89be477ad3f316afe1d06f654877e7697
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getloadavg.c: 
+  copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 2d24f7a43c161425aa87eff2a7f2fb2bc4a9a1f84761f74178139d04c1fece2b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getlogin_r.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 71342da5c9fce5ffc521819fbf5ea380288d8dd31a5a80d9272b7f75b422173c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getndelim2.c: 
+  copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: 9ee7610ebe6f8a37f5a5a68a7b3449214c14a38ff0d7dd572812bb7859df98f1
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getndelim2.h: 
+  copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: f5045e0d348580d1368f95e10cdc98ef5dc5cb756ace0005aa8ea0b4b3ec3c44
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getnline.c: 
+  copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: bbdd86a205f27f15ef28fbde34d1623b507bb2453e631af80a1afab6cd8981ec
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getnline.h: 
+  copyright: 2003, 2004 Free Software Foundation, Inc.
+  hash: 03573e9a526808be4f0f78b44449e9d23df1f24379e10ec2ba8ca76d47a3c4a6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getopt.c: 
+  copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008 Free Software Foundation, Inc.
+  hash: 4d0fd46f29bb8073586f8ec6d6970bb6076904b387b4ba39b52e67f894fad2ac
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getopt.in.h: 
+  copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
+  hash: 85fd6cbd9bf519076eb2762b34c713e170afc8e197126defee267fedcee58ff4
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getopt1.c: 
+  copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009 Free Software Foundation, Inc.
+  hash: 40109d2a58167504326aad2cb1b61592e621cfc075c9499cc9fc8c4428517863
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getopt_int.h: 
+  copyright: 1989-1994,1996-1999,2001,2003,2004 Free Software Foundation, Inc.
+  hash: 54606da8ebed47f74fd89143417b60de590aa10ec0620f8a7a78ebd0c36557e3
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getpagesize.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: cc8c7a17126f58bdff2c354feec2eed60d44ff713caa57dc3075bc3f136601ba
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getpass.c: 
+  copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 3c4602671b814d6de906dbab501db462e449060ec3b662a3cc813158469c1c41
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getpass.h: 
+  copyright: 2004 Free Software Foundation, Inc.
+  hash: 715da55d6addef9aba7f35a6d79bf776995ba58b92e85e1355038b36d4dd757c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getpeername.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 3a2f22e1c404ed3915fd5dfe38a6d499d2cb70e1fd51eaa0dd53aadc7b7be703
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getsockname.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: db4f104421692ccfcaec0efbeefb8abf3170e8e83c3f80d16d4088a9570c0747
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getsockopt.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: cfa28503953c834f7db8e9d1e3113792201bf64a0b7ef2ef1e4f2cbb56b5ac98
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getsubopt.c: 
+  copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
+  hash: ec9a4323b51dc83a8a3dab5470517e58f1bb6eade183c6dc3eba458312ab0d3e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gettext.h: 
+  copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
+  hash: 136f1ff682700ad9f5fb60428eeada20f160e6ed38a19ad78bd1dc4e440f55f0
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/gettime.c: 
+  copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 77086b931aa5e0345ebf249afe25b980450af522098b0dc7db39c72cda600702
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gettimeofday.c: 
+  copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: cde7080c035c43c360bf0a39981d8e1f56a5745a9f0857f3fab617c0414c9aa6
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/getugroups.c: 
+  copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation, Inc.
+  hash: 270b3c42be956bed158bfc6996f80f6ea8860856d9d24ce150bc04e2d49c0cb4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getugroups.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 5a293b9aa238d490fa967e3b2edb180d4e6dc234cc662fd796ebefe226ef0c7d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/getusershell.c: 
+  copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: 1fd7fb9cb095692b1bf2300b27d245389e99a34347ace403e72b60d4bf3dd633
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/git-merge-changelog.c: 
+  copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
+  hash: 1eb639ccc3a04697cdb5744ebbcb63f90893e0de7ec866b6dd449e350d28915f
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anyavltree_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anyavltree_list2.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anyhash_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anyhash_list2.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anylinked_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anylinked_list2.h: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: ebec01e1e27b8f47a348c6c8aab61a6cd8a6d756d7af2d6af0fb0717ebac9699
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anyrbtree_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anyrbtree_list2.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anytree_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anytree_list2.h: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 40c2faf4dbc261cf4e9ef93bd5c202d96530b5ad6198c8421f85b2d5c9e841ef
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anytree_oset.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anytreehash_list1.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_anytreehash_list2.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_array_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 0c25ceacf9c0bdb5aab3741b0cb9cda44011e1dc5d268cbc8bf5101e0acce283
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_array_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 863f801e67908ee9891c3f0dcb4f8ce0e131de5453303e2a7790b0bd3958ca0a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_array_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: c819d4f4a184e90641f6cefcacbf6b02abed3b6e38373b86c138dea7cac916ac
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_array_oset.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 019de04fadf81baec6bf31de9ff73bb78d4ad248796b60a6875b604a8a4fbaa7
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_avltree_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_avltree_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_avltree_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_avltree_oset.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_avltreehash_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_avltreehash_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_carray_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 1231124fa2b6eb2388f59849dfadbcc1121ac93c1498182180307abef125f81e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_carray_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 69dc4efd9c2c04954ad4b58ec33e4e452068e7afc4bd466a824816dc6a94dc82
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_linked_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: ed7862364a0ad9a0b599013e8efaf9a1bd4ca2fee8ca914048d25296fa8a55af
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_linked_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_linkedhash_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: 0ac3aac0adac6ac1565820f39242ce8abaf6ce35fe9f110d5bda696eb80db47f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_linkedhash_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: dd97ead793ac89798799ec721b21cc9e52051b5bf68d0c4b5a0437b938a30069
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_list.h: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_oset.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_rbtree_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_rbtree_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_rbtree_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_rbtree_oset.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_rbtreehash_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_rbtreehash_list.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_sublist.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 73915aa3876fd8f8947afe4eea6a3383db1680e283ed8da437d4ce635e8148d5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/gl_sublist.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 6b2c4954c29b3c4f64ecfc9ea385e7613778fe57581326d0bb0865f30f47bdf2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/glob-libc.h: 
+  copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
+  hash: b8ac91c8cae0271efb81ee15e750224494a993f3198db3e110c2affbe1dbbf6d
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glob.c: 
+  copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: f71e836c564095b672ee61d58fa2acf0272842c03360d1642e7ada6d132305a0
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glob.in.h: 
+  copyright: 2005-2007 Free Software Foundation, Inc.
+  hash: 6064b1858ef6f12b46d80c41a6c8e25567a40c42ea0a9e7712fcbf75d7d1b499
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/cond.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: d5641ae46998e1a8654c5e3549b9c7b3db1d3ca85dd8fe7f311bc8e674cb71e2
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/cond.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: b3332b7fa3f32abab59fe03fbc119d02861b28da6534ce9ad1f3469f070f0971
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/lock.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/lock.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/thread.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/thread.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/threadlib.c: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 2294600f29fbe5bce62a905bfe009f89a1c37bd29adcd4b57528e33d3e793a06
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/tls.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 23dde3cdce3671ccb6ea2e6d89bad99e9b6be9e40ad0295a2bc4025aa4e99f07
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/tls.h: 
+  copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+  hash: ed954c215d967d813727cef3ec96b920dbfecedb4774907236526505e9fc97ac
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/glthread/yield.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 2bcbee6893754730a99361ac72c8b8af2bcb514f7ee153772ff69c10a6ad7ea7
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/group-member.c: 
+  copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 8474fc86e2ee602d1afb18ec7ebbae7f9f83d113d63848cfb4df91f6b741bbad
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/group-member.h: 
+  copyright: 1994, 1997, 2003 Free Software Foundation, Inc.
+  hash: 563dcdfc1c58f40bf17d5ab635d790c0c7844c61ccd6e496de34fa33a2b3dd40
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hard-locale.c: 
+  copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+  hash: ac46d3e77162a575cb9cd0c05179c4a69489214f6bc3c02f037007dfca33d5eb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hard-locale.h: 
+  copyright: 1999, 2003, 2004 Free Software Foundation, Inc.
+  hash: ecaf6cfa27e7cf1f1d6352bb186bc8e4e65b5fdfcb09c13e99ef463705a8fb0c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hash-pjw.c: 
+  copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
+  hash: b468ec2f4a022e97eaf348f80c034c2e2e60123e1ac7e7616870d776d32f223d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hash-pjw.h: 
+  copyright: 2001, 2003 Free Software Foundation, Inc.
+  hash: 102a798ca5da9f9351c39aa2c91082bf9d774f1a330d81b924966f58543eed81
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hash-triple.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: fbf36f90dc1c8954ed95b4cccf669147164280573695a4286b79f36dc4c1c4ec
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hash-triple.h: 
+  copyright: ''
+  hash: 96088774b989d1fc41e81f6377fbe2c1a17baec684be47bbca7ec9a7c0071c04
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hash.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 4062f069a5ed949dfecf5ed42bddd98a48a5090946d9b54d800d6fa02c4c611d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hash.h: 
+  copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
+  hash: f6f040c23d292aacf272c2311ed2e73b4e442125219242180ca61b8a8b8a01c1
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/hmac-md5.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: ed5bd8c5068d05ebc413d1374482c55577681191971dbfd83a866beb78da5152
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/hmac-sha1.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 4bf9541934465ef6d67baa91aceb2287bc67777ed6f7c25c0952c43c6ea464a8
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/hmac.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 567a64cdb7bc0339a02d4df869ded8aab7a23849fbd9e981af8a9a9acfa0d215
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/human.c: 
+  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: e32265ab4d043a7abcb8f615e2cc58a500928f0421d37ecc9d774895580c1e4d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/human.h: 
+  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 9cecd9075608ba01827d4b74ea741b74eeb0b933f1a8850b7163cbfefaeaf456
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/i-ring.c: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 04cc3226eee4b74df051e43d1b1131567b9837369d3dd9f02a53ebc685f1607d
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/i-ring.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 83d5e547a1b2282a81722d24d3fd7ab460d6d5d9062532235e0030df6de1bdb2
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv.c: 
+  copyright: 1999-2001, 2007 Free Software Foundation, Inc.
+  hash: 3059e46d2d2c44be2ae300d27f485ee07d544f254865f96ebf86dea813b4fffa
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a0c00abb098262610f94109af9bc3bc9f27219dd9f3169ad081a47cd9228d1ca
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv_close.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 4871e1d8a40deb9c674779c24cf93e04b326ab61be8bcb4cc8e739d22ba70961
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv_open-aix.gperf: 
+  copyright: ''
+  hash: 6da2acfc8d64cb160d117fcf2ae6ff0c1074e75e98ec00cebcbcd25c91ff6c71
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv_open-hpux.gperf: 
+  copyright: ''
+  hash: 1af956e948c4e74ae425bc40a8df179820746ac4407e809a8c2c83971c8e0f6f
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv_open-irix.gperf: 
+  copyright: ''
+  hash: 828615fa97c1771502ef557a7aef007676e378822a93f914e2b67b5ec3ce3912
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv_open-osf.gperf: 
+  copyright: ''
+  hash: 2c9f609f72f0c386bfbcac0e2f65cd6624a1279429fae6d38e4c2fb91bb4fa2b
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv_open-solaris.gperf: 
+  copyright: ''
+  hash: 855843d24b44701480c504188b9c91b3b602d6c134e3b450cd8573fd92b35ca6
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconv_open.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 9ed1da2147b3e675bbd6775a42ab67d25e2fe781f6cdf15eaab5c231273ff0e7
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/iconveh.h: 
+  copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+  hash: 67e4aaef11864ffbdc1e1f005051bea04babd77da24011ef95dbb4d36320570e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/idcache.c: 
+  copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007 Free Software Foundation, Inc.
+  hash: b9013a2865d4a3daaca3b55f2be4ed9e3a20a075a05ea60d26ea660978090977
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/idcache.h: 
+  copyright: ''
+  hash: be4efe8ffdf2e8d49697677451ff6b5db99c836286bace3d23e00fe57cf35725
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/idpriv-drop.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 7f9a23470304193f0c1f172af0a8809eabc7b87a17c08a904e03e6f0e23c4412
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/idpriv-droptemp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 489bb045e6211eb0d6389cfc83518e2fe2ddc45fe2c192956d5403520ab12454
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/idpriv.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 46f34c0a8796bc8842508928d2398c9e0348051b305656e2e8a6b0a7b6f16b85
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/ignore-value.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: b844f7425a0066e987565375e711d4932b9f502ff6f149a93c5ba9120c99ea63
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/imaxabs.c: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 4c3cd71956269b0c624236e9f02355a8ab08d726ee6663e731a88cb79a85330f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/imaxdiv.c: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 1c1e3f382e0b77378c6c8f9632d7c4635f390115c0897a74b6b7b22a3ac34be7
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/imaxtostr.c: 
+  copyright: ''
+  hash: c5ccba8a9cadbb5e7d6bcb207caa40a490337d0f938712b6886792bb1c3f750f
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/inet_ntop.c: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc. / 1996-1999 by Internet Software Consortium
+  hash: bb85be451bd6abe2730ae9c900eca3d5dfeb58717a5fe8020fd32c3197efe395
+  license: GPL-2+ and ISC
+  license_override: LGPL-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, or (at your option)\nany 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\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\nCONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\nPROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/inet_pton.c: 
+  copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 33b53b62f48e6b8843c4109e0cb9632ed41cd3ff07ea81a3842fb24a3d42781e
+  license: GPL-3+ and ISC
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.  */\n\nCopyright (c) 1996,1999 by Internet Software Consortium.\n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\nCONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\nPROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/intprops.h: 
+  copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+  hash: 9e2808fa7e1039a775f0131499ed427895f2ae4376bf394d44e98dc59d256c3b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/inttostr.c: 
+  copyright: 2001, 2006, 2008 Free Software Foundation, Inc.
+  hash: 1890559866d6095b73e83459b5eaca3ea71812c130099e512534096ef240c29e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/inttostr.h: 
+  copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 7f7f2820aac6266245de58217005c72002285153e793b1bdbdbab45aea9b2234
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/inttypes.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: b572e765fe79d49fffbc38520ba9a41cf3b650f9078db83da161ddf1bd81d03d
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ioctl.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: a838bb30b06340f3dd9a82218a003ea0bd38e4312c6342ae7f20c6bc1fef878b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isapipe.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: 457e1ad81d87c14336cc33a66c0a6470db91a5d315e83811d98e82aab1dfe238
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isapipe.h: 
+  copyright: ''
+  hash: 1e08bd60adc2a94f785eb57858cc60eee319d0250d409627b746953c9778a34e
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isdir.c: 
+  copyright: 1990, 1998, 2006 Free Software Foundation, Inc.
+  hash: 03760bca801b4b55e9e0a1e0cf3b2df572ad1dc4a10cceac16254afd692ad1f2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/isfinite.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 040962d83f2dc48a4f86e204594272a3a1345da3bf72f77a0141696c2e67670d
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/isinf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 8b36f7949b786a5b398b697020f0bae0094e677bc8237320acdf88dd784c4f27
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/isnan.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isnand-nolibm.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isnand.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 130313c72e69a6238a9736af813940f148965be7cd35509e7a7db5af4b502737
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isnanf-nolibm.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isnanf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isnanl-nolibm.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/isnanl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/javacomp.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: 5510a586bdbed690c0f58f407e86f128dd19f69e30f7b763fc80645dfdb5fdab
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/javacomp.h: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: 7796f276d24731ee6d3c7f5294adfe566e8c046007020386e7f14820b6e0719a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/javaexec.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: d5c2f1711f1f3dd4c31a2579a9a93a3f361c1b1b03e78713f1935e5c360e3e01
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/javaexec.h: 
+  copyright: 2001-2002 Free Software Foundation, Inc.
+  hash: fdd928324e8ecf1d026624ada4377dc47be047d3e38b42a0456e1dec3b50a51b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/javaversion.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: fdead42e957d45aad5a32be39fc000b965f101ba1255624f9b54cccc347dab26
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/javaversion.class: 
+  copyright: ''
+  hash: 2bee26b0b761a52a418a6488d94be8af824a30a3f87f50cb8d35f4b7a54a13a6
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/javaversion.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 29a446b837cf48407147af943a7093bdb31bb10c00fc791eab8870a4acc0602e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/javaversion.java: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: a97b370d2fde64e69acc4e2896d1da82e09cbf28058f4565b2f61d6433088d72
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/lchown.c: 
+  copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 953d98a6f7fe6ee1359d3d4946aa47ae6596a61298964fd3c03b359f351f0338
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/ldexpl.c: 
+  copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
+  hash: c540324ac2ca2517b41b719aad57bf1773ee104baf901c03daa8bbf5208d3e3c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/linebuffer.c: 
+  copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+  hash: d85578cc459795d236f48e817ded298d632fa6890aac27376aecf0c47a856fa8
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/linebuffer.h: 
+  copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software Foundation, Inc.
+  hash: 34656b0c4b8d689a203a09d7b36721f38b76bcb871571a8c4b0d923840a9fe58
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/link.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c0b30ef6d1e001b2928d2bb394b5762a98b6b6ede802eaa83c1319c2e03dce1e
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/listen.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: c6134f3762f75b62f22278b0c4dd5119a598c12d4e5c20957e32c6cd33314666
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/localcharset.c: 
+  copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 1548af2400728ae263f6a2bb0118e7778437b3639878649dc0257a527e4e0629
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/localcharset.h: 
+  copyright: 2000-2003 Free Software Foundation, Inc.
+  hash: 119c2de543436735fe784154d840a118ae31756c5fbbbb7f30b1cd3e2b54616a
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/locale.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 208f60fb61b19efcd077917af5a61aad7ac1210ed158ba35d67c172ead537649
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/localename.c: 
+  copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc.
+  hash: f6fbb8df7f52b6eafa7552a49d6e5eee9816b690a0d89c2b03462044652914d2
+  license: LGPL-2+
+  license_override: LGPL-2+
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/localename.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6a79383773a37a8b6886c6d119e3890f98db4a414a013cc80eac6449b8e5fe4b
+  license: LGPL-2+
+  license_override: LGPL-2+
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/logl.c: 
+  copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+  hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/long-options.c: 
+  copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 4365412d9fe5d790d7ad8e3e03649fe0e872a7e666491c956fbbdaded0030cc0
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/long-options.h: 
+  copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
+  hash: 4f9add7cfbe1ff66d2f74e25eefc73829aef3fb75c1d70eb1760a07c288b5a31
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/lseek.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 02f75754750c8263d25c4282d7b6167a2d40d0c8f8cf8a952486fc65dc812321
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/lstat.c: 
+  copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc.
+  hash: 345ec037534ce5c96f9599c78e87c36be1fee4649a8ec187168445e6bb2d1cc7
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/malloc.c: 
+  copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
+  hash: 7754ece2820e7ddc5a364b370c2560187d53c00f4695409abd04ecedeff2aa94
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/malloca.c: 
+  copyright: 2003, 2006-2007 Free Software Foundation, Inc.
+  hash: e0f9431b8801560a2ec9fecb1893f9c1443bd37ac24a4785196d0c03321f52da
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/malloca.h: 
+  copyright: 2003-2007 Free Software Foundation, Inc.
+  hash: 56c3717d1d0f5f3cbdf6f2b581ad097dd47935c459a239db9ca84db9fd339f1c
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/malloca.valgrind: 
+  copyright: ''
+  hash: 93322a37edfb58a01aa98fa0cc0c4887861c816c873681286b20873bee36e170
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/math.in.h: 
+  copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
+  hash: 1d71d3fe653ddb331f364aadd7e0db6e31fc0a63300b049925c39c9120777288
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbchar.c: 
+  copyright: 2001, 2006 Free Software Foundation, Inc.
+  hash: 1b800acccc08b7bf9876ec834e26931f8cbc2ca5f69d788879010a196026a89a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbchar.h: 
+  copyright: 2001, 2005-2007 Free Software Foundation, Inc.
+  hash: 419eac128ee022faceedcbce731388308f72bf42d570dcc74d67721645d9ad75
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbfile.h: 
+  copyright: 2001, 2005 Free Software Foundation, Inc.
+  hash: f148ab5a88b3ab7847530f40507a08b257c44574da3e3824feca0501fc1ff87d
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbiter.h: 
+  copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
+  hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbmemcasecmp.c: 
+  copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc.
+  hash: f5ab326ce04660d7c088d2589429beeb7310d839bd0559a3a37f42497870f830
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbmemcasecmp.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 85c672759815348bfc4928739797c22787d4f55386d3bb5effd4685cd12f7496
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbmemcasecoll.c: 
+  copyright: 2001, 2009 Free Software Foundation, Inc.
+  hash: cab139308f71e0434b70aeaf0f3dbed1381ead7271c0d992e00b93438c1d6499
+  license: LGPL-3+
+  license_override: GPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mbmemcasecoll.h: 
+  copyright: 2001, 2009 Free Software Foundation, Inc.
+  hash: 746e4714316afcd2eb3d13bb38d3c2776496e6f2f77b745a1d694e53a6f74a61
+  license: LGPL-3+
+  license_override: GPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mbrlen.c: 
+  copyright: 1999-2000, 2008 Free Software Foundation, Inc.
+  hash: 34f5f51edaf35ee0284c34df8f8288a04625716cf5817d6eefc9c8dad9b06473
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbrtowc.c: 
+  copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc.
+  hash: 76ee0ca75066f435d593cbebd63b7abab83e289e38af89d03f5fbba1a1b9ca8a
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbscasecmp.c: 
+  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
+  hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbscasestr.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 067b762668e77d779287cb9e16e0d9d0d54425834153a41df667fe96abe6d5ea
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbschr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 0400e89b869bf824f778a6860325c96dbf6fc811f1872770a0bd662a5af0f847
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbscspn.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsinit.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 295fe542f5ad6e27ca5816217b9805d2428ea1aabd57962bdb2d3306a6c769fb
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbslen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsncasecmp.c: 
+  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
+  hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsnlen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsnrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbspbrk.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbspcasecmp.c: 
+  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
+  hash: 07f7fe969a7c752b56b078f855dce95806287b22873440d798b831f5629d3589
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsrchr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: aae99e9b396b908d7c7fcd21ce6bcb2e4aaef1810a36771e91c2436918d26978
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsrtowcs-state.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: c1ee8e5f9ff539152510bee610b85b5129447259bd0740852310fbe0aa05dcfb
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbssep.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: e91f2687c32b2d7fbb211e0e114d331fff93022b0c657cc6b2a6a934cb3b67b4
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsspn.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: 96a736a43629e5ae2f508a50e854f65078635e6552ac998e4b72d981b4de9333
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbsstr.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 05f8fd03123cf70b50e8a4ca02b2bef23c41c488ce1f33530c0e5b912b20898c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbstok_r.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: 1f180b2d8a6c65bfff77cd72bec0837f16a2a39411db702acaeeddcd0797a7cf
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mbswidth.c: 
+  copyright: 2000-2008 Free Software Foundation, Inc.
+  hash: 20f724a9c2c1b2039071c36cc6fa2828284e3561211957e7800e0275df016a16
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mbswidth.h: 
+  copyright: 2000-2004, 2007 Free Software Foundation, Inc.
+  hash: f66eede184bcac83a9639c243acc2e81ac0b5c2ce302a8ef776ce3896ab69682
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mbuiter.h: 
+  copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
+  hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/md2.c: 
+  copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
+  hash: 04204819baa32da88084b2206ea067ea6a78cde426759ad1eaf12598747f9715
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/md2.h: 
+  copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: 1635bb2eff1d6c4202462a1493aa8fa1122f0b8c628f9d5e1a1bd1b959fdab11
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/md4.c: 
+  copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
+  hash: 0862a8a513fa370cc94a968cac68ab365d1c9a3648137d2af8aaf5c719a4b737
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/md4.h: 
+  copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: dcc57d0ac574c78b51a7293f7ad573d8a4c524cf2988b283d86fc5ff1b5f57bf
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/md5.c: 
+  copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008 Free Software Foundation, Inc.
+  hash: ffa2dd5235fc5bc1cff6f871fca1f3804da0f74bbdcfa48050479b24225ac1e6
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/md5.h: 
+  copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009 Free Software Foundation, Inc.
+  hash: e0f5a2253099054a9a71d12e1df625a6f7afa5bed4c53400f687e1b319bd0f95
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memcasecmp.c: 
+  copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+  hash: 807b6ac25ddd6d8ae26a583a2ae26a3a1cfb85acd6c8c70fd81e0dcbb30b7905
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/memcasecmp.h: 
+  copyright: 1996, 1998, 2003 Free Software Foundation, Inc.
+  hash: 18edc330f64fe3fe7683e14bcb89316afede0ebbf8ce49bc0abcd324eaecdf41
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/memchr.c: 
+  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: 1b3448d898ff7ee9149e469a0d1dfaa91777ad13ac93aeca526c1d7534006686
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memchr.valgrind: 
+  copyright: ''
+  hash: c4d33a28f691c84b723d8efc9fcdf251c64affe0008457a7b2fe246c1493dff7
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memchr2.c: 
+  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: f8a8a07596253d814b66f51a219b27446056819948a185735c326a34032971de
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memchr2.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 5b2e0321ef5edf4284193b2bb4a6b3837d05ba4d909864b2faea89fa327027c0
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memchr2.valgrind: 
+  copyright: ''
+  hash: 44d9292cd45aeb29569397844ca468602c6e200a76dcba52f4f852fd64fab480
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memcmp.c: 
+  copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software Foundation, Inc.
+  hash: 115e253d20ce838f3f9a7b7bdb87ca7bc9c5f1cfb6217d3659c62d22b284250f
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memcmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memcmp2.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memcoll.c: 
+  copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: 45afdae44d3da5345c4e1ff5bbbe23a35f6c8f04d1f7913937376f96d3927dd6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/memcoll.h: 
+  copyright: 1999, 2003 Free Software Foundation, Inc.
+  hash: ceebe2fe05b83b4b212dc4dc72283ab2d56ca2e8778bd92fd1867d9df2c2b1ba
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/memcpy.c: 
+  copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+  hash: e77f76fb0280fc06e306294c9d397a3319c397fa293104c6f3c231c149ae3597
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/memmem.c: 
+  copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
+  hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memmove.c: 
+  copyright: ''
+  hash: bbdc865dae97e17c0683fdb3a8eada83f89acfb60003bfa558dc1a7bb63fd59c
+  license: ''
+  license_override: PD
+  license_text: "In the public domain.\nBy David MacKenzie <djm@gnu.ai.mit.edu>.\n"
+./lib/mempcpy.c: 
+  copyright: 2003, 2007 Free Software Foundation, Inc.
+  hash: 162deb5da2eb01183cd1ea3c6c29887ff8f634735322780be17607aa892ec4a5
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memrchr.c: 
+  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 7df103a286eed4dd6f31836264675378b140d030d4dcbb3e810f24d122227d43
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memset.c: 
+  copyright: 1991, 2003 Free Software Foundation, Inc.
+  hash: 40655652ef5140299df50fcd8dbb02a23d78c3961e6078fcf866232c481752b7
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 925c125df6e81f5c5be0eee6a767546cf977fc4e55b5712c490cd84f80061da8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memxfrm.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 8fbe3c5f0271469b59387f418cf5a7a39d02a67082c24952d53ad9e12e1ff3f2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memxor.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 95bea5a33c7fc7fa109f69789827d4274d5f8f8b0d8ad5e195fcfa3df0838ac5
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/memxor.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 8b8f42a17c5880f430a23152165a2a48a1d9ce6f523fcc08cf0fa013d207820c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/minmax.h: 
+  copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
+  hash: fc14ab477958a0d028d651e94f71938ac898148d7a4fb3641065e97ffc0033ac
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mkancesdirs.c: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: fbf7223604ae868a286a8b7782520dcfecf8871450373ce6eddd4231d6987d86
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mkancesdirs.h: 
+  copyright: ''
+  hash: a956611cade93a9ab7ab7b3a953fd1555ed37d0bf625e985bf66067e1b158431
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mkdir-p.c: 
+  copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: cca87ad7e743252b92404f484d9be69bc26ebc17de6d3091edfe804910f54529
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mkdir-p.h: 
+  copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: bf444d5e7cf40b933757ee95b2fb1d8348f6c03d75afbb4b093609ff4cc6d27a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mkdir.c: 
+  copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: e036cb236f6cf2b150e76519fa45b1e2d5a887bf7d45803e686f5a302b0f4e66
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mkdirat.c: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: e9de0eaf6cda53b633eb6f3b637d1a89e21ee06ea81e2578412a0a1f4f33a0ae
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mkdtemp.c: 
+  copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 90c1ed532e82f71aea40266d94df8e15d52ef9622ee699ae2a3358ba9e0fa5db
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mkostemp.c: 
+  copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mkstemp-safer.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 5dfad6cc702f2dcd88df092b3ebee11ef4795e45592e03d7f1c7841a9a5e48e2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mkstemp.c: 
+  copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/mktime.c: 
+  copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 1a80cec494e14569464c9c913b8d639fde5ca46a2ad8b19c097398be567c3987
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/modechange.c: 
+  copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 04c294fd66aee3490b759ca54e9bbc039f30063774f91b695f200425413f52cc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/modechange.h: 
+  copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 9e926e58af501dd9da1d504389fed35d905b66bccc24a4ab3a30e0e2eb6d8d5b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mountlist.c: 
+  copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc.
+  hash: 8131b2bba35b93115b79375a032a364f5821a6773dbee18aa26a24e896829459
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mountlist.h: 
+  copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+  hash: 19c16002f5ad4f33a7ebd8c726e357e18d9a7f2f8ae6b1a42459ecb2eba2e0c8
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mpsort.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 754a18c37e339daeaa3129f85d1e11a2e8eb04ce0b9b382d25a02b40dee33112
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/mpsort.h: 
+  copyright: ''
+  hash: b88563a5eb4834d0691531bdfead0f4a1c6441fb83fca6b4d49b862ca6d4e651
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/nanosleep.c: 
+  copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 2fb5279d8f37cfd3ec3a500d9127e805131b37d39fa15187a82bfefb3b7fbe77
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/netdb.in.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 313d83faf1e58b363f56df9abd41c694cc877655a1f383b9c96c52f2b5492090
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/netinet_in.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: ba843c9c4800f24e66a3b94aefe21730afdc0233254175a20b3f503b12b022a1
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/nproc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/nproc.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/obstack.c: 
+  copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: c51f2b4012075fb4a6f199dc311d6a80a6da3a59080e65c78ab906d198fa52c8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/obstack.h: 
+  copyright: 1988-1994,1996-1999,2003,2004,2005,2006 Free Software Foundation, Inc.
+  hash: bec03a89fef72b0110d29ed4efaa664fc79fd03132e71c57e2088432a3af65ba
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/obstack_printf.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: ec3b6ee4cf323b218382e7b0b4c647e67f88d44b9bde87ad0faf1004fa480c69
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/offtostr.c: 
+  copyright: ''
+  hash: 97beafafd8e31c4c52db5355eb0acef1fa5771aa4b21e8d75e9355494786978b
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/open-safer.c: 
+  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: f5c5c83637f90b3f8e7310337390ff817b1c3eb020f5f944b7d2cc04f809f581
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/open.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 1700deda821715bdbac72d0da2e09c3ce1dc34279381170e21eab9187e142c63
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/openat-die.c: 
+  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: c32e1b799da53de52b5bee09ffcbbe4f2b4b4db28ef45bbcdf0af0346fee99c8
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/openat-priv.h: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: de3bc79756c38bf4c0d3930bd43e5559159edaff0ee82652ee068d1f3ce3507a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/openat-proc.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 5adc0d5b70d50bb5b44d3de2819622c2e2f6ebbb06b868b4013b245d24e772e3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/openat-safer.c: 
+  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 56934bd9aed0b0823c2ee17a8b46147af53d10daea72b9ca7c1a132ceead70d2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/openat.c: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 2cc87825fb5511fc2a3e5e700dceb67002be17775fa619eb19d96a15d8b5be2a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/openat.h: 
+  copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: aef33cd705f809a57238d48fd05fb4491c97687b372cecf7c69341cdcab2f654
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/opendir-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2429dbf23e1213eb581af6196c671f69f35fed4b342c7fd3fff0d504356d93a5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pagealign_alloc.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 556403e976c41313f9325e500d34e5165c9f3173eeb22c7d1e80481b40a08425
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pagealign_alloc.h: 
+  copyright: 2005, 2008 Free Software Foundation, Inc.
+  hash: eb99842218a16ee4d0c565f1ad99bb5143f4ee3a77e8dcce80a0bd95cf085cd5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/parse-duration.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/parse-duration.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pathmax.h: 
+  copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
+  hash: c643310e04770fbcc160973a5552561f7c122f2a5e6a61adba5b1f6f6073596d
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/perror.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 9a22ceeb839da7e1b91e96f5d0812174c06aa7deb3f1312c1b9d137bbe191602
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/physmem.c: 
+  copyright: 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: b06bd14f93155ac98d9a92df716ba22a1fa39c63b510a32beb9c06627c183012
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/physmem.h: 
+  copyright: 2000, 2003 Free Software Foundation, Inc.
+  hash: 3a6cbe3d952eab59a5cd17b28b2b869ebdc9b8f19c1eded770524ea7c863270a
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/pipe-filter-aux.h: 
+  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
+  hash: dd7eec8d6ec8c14b97efee5589cb013a0d4bf682e94019d235b35fead5b42d07
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pipe-filter-gi.c: 
+  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
+  hash: 7b798dfae0edb799145d56afbab5ad04a9af74dfbe6bb5614fcf4f5357e51aea
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pipe-filter-ii.c: 
+  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
+  hash: 9049b5c7b4ed08a8c9dd5a090c5f0632c4f769691c9d0bc3abafd2ed205c449a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pipe-filter.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: cb4091cc5532a11d2184725fbafb495b5dc0e0e99d888529d15ec9f6ac8db90b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pipe-safer.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 8b0ecacdeacd13de295a1575a525fb82a56a4a6315081874b0c32cf2cfe958e0
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pipe.c: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
+  hash: 4bad855b30e4735483d65e1b608087804110d24a67ba16cf7ed987c5f5bcd5c2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pipe.h: 
+  copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 8e9240d53e76426a4087f6a35ebd4b865be3105da821c9139043bf9232c4c171
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pipe2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 61562647025e035a2e08fcbba935557f0ce2b3a273ca93855a3184d523bdc97f
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/poll.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 033d3d5afa8977c21203f543b7bac8bc53f51acf846088848087638d72ff8bf0
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/poll.in.h: 
+  copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
+  hash: 75e680c286d79502b2c414e7b8929c31247c980612c852936f7ca1d1593362b8
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/popen-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: da9c884b0efa4edd9844b332c14b060d0cab98c6049f38731a3d590b89a00d06
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/popen.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d7c25fe6b43efdd98d5042c3424eba51cd53ea80bb948f9a92a099fb8c02142c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/posixtm.c: 
+  copyright: 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 4ba1c7c3e6714bb668acbece4b919082141b0a2736fb94262f2eb8e2598235d5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/posixtm.h: 
+  copyright: 1998, 2003, 2005, 2007 Free Software Foundation, Inc.
+  hash: 942d45b6994556544668951294f7b94af106ac8b0b2ce064003998679266d698
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/posixver.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: f931363ed3fde9bde1676789900417a39c317a4fd6dd869b69d1dbe7ff3a035a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/posixver.h: 
+  copyright: ''
+  hash: 36d1d0fffe2504bfc87051722c32887652d6719a80a23e93cc01daee61006134
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/printf-args.c: 
+  copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+  hash: 12bb86c9307ecf947c3e487e6bf53531b56f83f43d5e9babf59a2a57cde92c7c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf-args.h: 
+  copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
+  hash: cf140b5cb22fa0718dbc5a41c94ab6327a7a447612d93e4b6c51016418701bc8
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf-frexp.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf-frexp.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf-frexpl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf-frexpl.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf-parse.c: 
+  copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: e87d67950b9b8fd0411ed7bd3201b3ae9eb97549cf5d6255c2f6065e46d1aff1
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf-parse.h: 
+  copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
+  hash: 1cbba74b564ba38b983e35311a8dcb098229112ee464a2940dae6abba3a12247
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/printf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/priv-set.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/priv-set.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/progname.c: 
+  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 92661819f28e9fd0cb1b6c24c52d6f96e2746bf9eb417cf6cd6fb92a009d0fbb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/progname.h: 
+  copyright: 2001-2004, 2006 Free Software Foundation, Inc.
+  hash: fb156ffb4593024e0b50a3bfa0f8e0c9d280dfe5cc173a7c2b3796e892b3243b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/progreloc.c: 
+  copyright: 2003-2009 Free Software Foundation, Inc.
+  hash: babc96a49ada0b13bd47d6931240b971ddf7a571a2c9a989c351f1b54caec1df
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/propername.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 453584a838b6191dd3f10ed6858fbc73356af59689880952a06d1984c013e443
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/propername.h: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: b709e58dcf9e44473ab7139d39df8d4143a783b73be0b4b8e5f589e2f37ff33f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/pthread.in.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ef4cc2c979afda964299a12c9b1d50231399227aa30af97c27d6fad997de2255
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/putenv.c: 
+  copyright: 1991, 1994, 1997-1998, 2000, 2003-2008 Free Software Foundation, Inc.
+  hash: 17b29fb75137b2e5e475f2813253c186798f360d5711c1ac87ef1796680902b1
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/quote.c: 
+  copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: c4a8b48c291af2ee7a2a7f70e0a643b88950e3ade7d29053180a8e109d792efa
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/quote.h: 
+  copyright: 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
+  hash: 5d10e05c536ff1a439a2f8460f1e6ac91d61ba93ebf6280fe6ab090f9321d27b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/quotearg.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
+  hash: aa0d608c0d77808b3ad8e91a0a3b802b9a13118b657be7df6bd43b7aec178ef0
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/quotearg.h: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: 2e6f8072d5c251a83bae1fd9e1d85ed223633968bae640a6ab6e759963b50d0c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/raise.c: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 50b03c3b985400bc1e7f8910337b51a9ce593ebd8b792aa1f1a1788960c9c26a
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/random_r.c: 
+  copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation, Inc.
+  hash: 56ff6e2aaf2d55a023c78529f964988504c867e654d0df6993406e27656be439
+  license: BSD (3 clause) and LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "The GNU C Library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThe GNU C Library 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with the GNU C Library; if not, write to the Free\nSoftware Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA\n02111-1307 USA.\n\nCopyright (C) 1983 Regents of the University of California.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n4. Neither the name of the University nor the names of its contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/rawmemchr.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 45a83b9183090995a3bb18e9b251a511464e420d7fa99da1e03ce2d9bd3d4e6b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/rawmemchr.valgrind: 
+  copyright: ''
+  hash: f728bb18311f04d34ed0495880117ccaa59b4c6bc8ebaac82459903cfc3247c8
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/read-file.c: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 51c7d95dd1381f2a59ceb5c375cfb7998aec903e9b91e27baa7da0afa5e8468c
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/read-file.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: ca324b683cf28737c1848bb23eb0b92cdc0044ee67094c57e91c08bdbf81f53e
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/readline.c: 
+  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 1c45ecec189bf0ab208143e3b0965baabebfcccb8f2389c02fe5ba6b4b7648a0
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readline.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 4cafc96af802460b1d7f54218bf92ca62cf6b7cd0a2abffc02d7ea516d1d1946
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readlink.c: 
+  copyright: 2003-2007 Free Software Foundation, Inc.
+  hash: 4a11f960e0153527f36536d9b396257683b425331d992420cffc853dfec35ddc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readtokens.c: 
+  copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: ffc9a757ad67bba5dcce13dfac14da216892391e5879cee666b99d8154c49b0e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readtokens.h: 
+  copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc.
+  hash: 452dfbc07c636749aa830a30599c7c5bc109f4c51b72d8891b968640b102b9d5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readtokens0.c: 
+  copyright: 2004, 2006 Free Software Foundation, Inc.
+  hash: 8cb5713080fed145a957a71a48ce5c11d1d74bd0964b2f90d2d52f9e643a1db4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readtokens0.h: 
+  copyright: 2004 Free Software Foundation, Inc.
+  hash: fa2844a8aefa737f7d2630364652206697cebc7c5d15193fb3273257c1afa96b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readutmp.c: 
+  copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 6018c3b26e7b6cc70156a39368851213becaa215df3e58ef5966e9237d173463
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/readutmp.h: 
+  copyright: 1992-2007 Free Software Foundation, Inc.
+  hash: e4edf9b2cd3b4a9662bd1a50b7a068f8dadee724d6b47e05b5c629cc890cb0f4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/realloc.c: 
+  copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+  hash: b65d6b9cadf8e53a3ff901459826791ef77acce1f247a65f3759c647442f3de9
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/recv.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 86a2667aca771f6d5c7502ac7cbddf51018f3dea268d5a1461b98f7b9af5f095
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/recvfrom.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 76c2990bcd168811c2511e685b811321ebc18fb7257375d1cb2f7d025d90dd34
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ref-add.sin: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: 384e11c05bb265e3613f6e8b6c445f77d0cecc679e59cddac3c606015c6f5fc3
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/ref-del.sin: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: 55d01b01839af2472b2f966cda363787756440f9ac8024938ea8dfa8b2323862
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/regcomp.c: 
+  copyright: 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
+  hash: c2483b14cafcc8625bd4c467a5fd09efa0d50666fbb8a5fd38e2123b1ecb0945
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/regex.c: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: b01492f4d85ec55b5acc0f48cbe61e292c5b461a01bda985e49a53989594e947
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/regex.h: 
+  copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006 Free Software Foundation, Inc.
+  hash: c53492d2516ee161d8077ce24002a78d186df06b5c5941fa8401ef7998ac8375
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/regex_internal.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/regex_internal.h: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/regexec.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/relocatable.c: 
+  copyright: 2003-2006, 2008 Free Software Foundation, Inc.
+  hash: 0d1858bafd12c7ab346742483ec5d97e6efbdebfd46524a7a8f231696f2a22ac
+  license: LGPL-2+
+  license_override: GPL
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/relocatable.h: 
+  copyright: 2003, 2005, 2008 Free Software Foundation, Inc.
+  hash: bcbac1b3bdd53abac5276b593b5ab4e22160d29de32e77245f5d9a04269770cf
+  license: LGPL-2+
+  license_override: GPL
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/relocwrapper.c: 
+  copyright: 2003, 2005-2007 Free Software Foundation, Inc.
+  hash: c167810a619a4782afbe8842f06bdd194461d73cc0a1f4c1dfc0e5c49815a107
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/rename-dest-slash.c: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: ef1b249ccdf7cb59741f8b296b4aad87ef269ecddf2d084a4d560b83e6a804e2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/rename.c: 
+  copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 1f9e11ca836ae5b2fb8b9e66aed55f3d358c7e104a480df3fd71801eb0a0bb64
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/rijndael-alg-fst.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 49cc6c6e9d8de361675d0546671526e3109140364ce29855fbb8de575d6fee29
+  license: GPL-2+ and other
+  license_override: LGPL-2+
+  license_text: "This file is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2, or (at your\noption) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this file; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nThis code is hereby placed in the public domain.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/rijndael-alg-fst.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 162ce649f0d069335d8228a612fdf65ceae6f3475f5dac1558ec29010f225634
+  license: GPL-2+ and other
+  license_override: LGPL-2+
+  license_text: "This file is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2, or (at your\noption) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this file; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nThis code is hereby placed in the public domain.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/rijndael-api-fst.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: b99f158275dd4fe795b389f5caccddb053dff98d2b957da0f54453adbfd5a538
+  license: GPL-2+ and other
+  license_override: LGPL-2+
+  license_text: "This file is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2, or (at your\noption) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this file; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nThis code is hereby placed in the public domain.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/rijndael-api-fst.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 5e47a11e8fa358f2f9d5b74032b2f486490674675a23560778ff639f0ac38985
+  license: GPL-2+ and other
+  license_override: LGPL-2+
+  license_text: "This file is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2, or (at your\noption) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this file; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nThis code is hereby placed in the public domain.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/rmdir.c: 
+  copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 018a558c35eb9dac411a0a1df8bc31f403fdd1d5de43451c3a4dfc748b0a4ed6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/round.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/roundf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/roundl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/rpmatch.c: 
+  copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software Foundation, Inc.
+  hash: 55373da72f4e3da7649f19e32ad56f0c83c97a9d3259a237b8997c00ddcf5b9a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/safe-alloc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9844c4950cc5bf374ef430b7dc9b69be026b2120e88864e26aea2bbf2855ae62
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/safe-alloc.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5211b4e3531c33d28506f04532eeffb65e8df0d999c5b9a00e3f36d3fe7bf46c
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/safe-read.c: 
+  copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: d12efe172ef14861fdb86cf76cb61277327a60cabf2a7afdafc1ade15afb9187
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/safe-read.h: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 2667a28d26546c5be4bcaa1fca81b4e13cd518f9717d314db29d047fdd7494d6
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/safe-write.c: 
+  copyright: 2002 Free Software Foundation, Inc.
+  hash: 6aa76f15c5e0ee9a8e0b1be63deb69b31fe263a9d1c5c10ffb2e8fe6dcd7c0f1
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/safe-write.h: 
+  copyright: 2002 Free Software Foundation, Inc.
+  hash: 8179ca35d82597a466d03026c42e05761523d0036556a873fe42692f500476ae
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/same-inode.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 81b80979de8a7e53f45381e99597bc7390cfaa00e499dac502c31c58415b42a8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/same.c: 
+  copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: ce1a1ec04e3aec75a5006861db979396761bc69c62096f1996e7ba2f5f3bbba4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/same.h: 
+  copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
+  hash: 01df5ca3af0102dba2561b287d19d5651e891876ac5c54f1dde91b7bd23bb64c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/save-cwd.c: 
+  copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 422df5e09ad67e75a7c147e25f3da9a175fa80d7259241a3da6155c5ce96f539
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/save-cwd.h: 
+  copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
+  hash: 4b0e13da5aef3208b1bce2ab1b10c453cbf1e370c969b41bac7be51e2b76e809
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/savedir.c: 
+  copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 928cfb9bf8e834b1b6ef7b1825e58d6b44fd5770a7cea787dd66589c84e8c274
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/savedir.h: 
+  copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
+  hash: cfa56cb818e618c3fe57c975e9f0c5ba8723bc62e0de5473481cd5587cbe8350
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/savewd.c: 
+  copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 587bc08918885aa18f980c1c6950d2dcd55e2ffa0c869d562185891b6960dc6f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/savewd.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 6d491cbfc2163751c419f2376a46d56cb899e625395ca51efb08dfeb6ad2b7ea
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/scandir.c: 
+  copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
+  hash: 2bea6e6d81d5f7fd79619df895eaf13e5823217eeabbf1ef38c343dc53d17b06
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sched.in.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 5c835c4e5fd04776b804eab97562bd18f61757bfecab83a838e62f90997512b6
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/se-context.in.h: 
+  copyright: ''
+  hash: e71efe13fc9c187c71a5f39e76a5a4e4c03a3194a14acf7b4af3fb81c3d879a8
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/se-selinux.in.h: 
+  copyright: ''
+  hash: 70669262b44df770b656e06dd0607d4fa4e070616a4a93731d36d8254d0eb8bb
+  license: ''
+  license_override: LGPL-2+
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/search.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 98707f0a63adefec5733713c576243f083b682775057a7d5971cef4277fc8960
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/select.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: db938a6d1b5d591ba63dd3673bb2ccd0ecd9f8b9fcaad86d3c607368122268a8
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/selinux-at.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: e73ac0c418e767f09a8d77674df132f0b446c5448c43a1d9303e58907d17018f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/selinux-at.h: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 2e95007054f57abccc9c2dbc0df4520778025ef925f3b74873d5d58af819e36e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/send.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 47748f45a6a25cadf5542f9543f49778f7ea6b2c87fef1bf9926c8c66e7f5661
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sendto.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 634c06211e79ad265f869003e97612a84a67d40fa6d275ace86b12592b0a8eab
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/set-mode-acl.c: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: e859e38ad22b32346c568c33be9a662b92a792f63402be0645020fe91e7a865e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/setenv.c: 
+  copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
+  hash: 5927758c893aede52f8fdc5263d4117e4614fb619646a37d5464b249f19cc91e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/setsockopt.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 1fe9bb029b10267e47bbc61360ce31f9915584f8824b3da8569b084bba160c32
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/settime.c: 
+  copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: f3fef53696d8c8b81a746528ddebe430eabebc29f83bae24fefffef92380d23e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sh-quote.c: 
+  copyright: 2001-2004, 2006 Free Software Foundation, Inc.
+  hash: 27a65b308d278b6fdef8dcaac9558d0d90b8ff6974551e8892d1767765097bc7
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sh-quote.h: 
+  copyright: 2001-2002, 2004 Free Software Foundation, Inc.
+  hash: e049a481e491c1fd1433d5f930becd727d362737d16f575f5108daf88ed3e08e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sha1.c: 
+  copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: e6f4ad18bb6193ea3a3c57b7bdd4d4c371e65ba20e2af676b3fd8578c462c6e9
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sha1.h: 
+  copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 59bead7118f2949f37fdfa01470646bd275f2507e9be8ab76882bbe653057d9b
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sha256.c: 
+  copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: 3425dcf95c1f50702ebec678cc893f4d4c851054bf580de3d9a3f56bd0e01978
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sha256.h: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 66581e4bc70d286563b89d7bb632dc9f3591df5dc926494ef60ac5e1ffb478ab
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sha512.c: 
+  copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: 2d33540040b9cfd894cfda268216acf3ba9cf967d1e536a8661ae9bbf6b2e4ff
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sha512.h: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: ee0dec75a513f6772789a0b6bf0ee1ead955abeb34696a489d19ec6e13e3388b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/shutdown.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 51160b16d7393090800e4bf94a60a1df431f62ec86b1ae2f26a6c51152458de6
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sig-handler.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: dc43801fc9a9f3dc8ba0d661a7db3e864cb14324b7c2cb2196f3b59a89fd6159
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sig2str.c: 
+  copyright: 2002, 2004, 2006 Free Software Foundation, Inc.
+  hash: ca70d2eda30326ad5a9d6cf9336be308827519fa3ec0a948ddb151f104506663
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sig2str.h: 
+  copyright: 2002, 2005 Free Software Foundation, Inc.
+  hash: e5747ec456c7780cd6b05fbfd22631cbc4bd955a230a013649b51f33a60b8011
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sigaction.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 961a07c6f2a1fa494905a8c380725451d27e61e2cade6aff296fd560d9f41564
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/siglist.h: 
+  copyright: 1996,97,98,99,2008 Free Software Foundation, Inc.
+  hash: 1f7435d5ada1229db0e79551b2d1ded46d3de7caa6030ade8ed1a9c8385b7475
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/signal.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: a49f6db94dacf94abe74624ea1ddddc7559f95c8feb120e671e0b4ff215382ef
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/signbitd.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 4fe9d03e71253b7cb6553e84b2c0c91449a1cac16afa810f0e5f1db489edd244
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/signbitf.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/signbitl.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sigpipe-die.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sigpipe-die.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sigprocmask.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 64a5bd137e4ffceed28ce56b1c3ebeebbf5a2bceb1dbf8274afb4563db1a856e
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sincosl.c: 
+  copyright: 1999, 2006, 2007 Free Software Foundation, Inc.
+  hash: 1772f687d81fd114abb5d80bbb46c95f407f818faa4b6c89cf9c0eb57f2e536d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sinl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: aec40ee7886ef37669c9218c5d8a5e07ad40fefa4fc7a1e4e48703d51124a9dc
+  license: ''
+  license_override: GPL
+  license_text: "Developed at SunPro, a Sun Microsystems, Inc. business.\nPermission to use, copy, modify, and distribute this\nsoftware is freely granted, provided that this notice\nis preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/size_max.h: 
+  copyright: 2005-2006 Free Software Foundation, Inc.
+  hash: 26c9e27b3895dc767fb1cd998cd3d2039f08bc4eb973ca8344a2957a21ea8d3f
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sleep.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 648a1c7305e84d30515cb11664201e9544fe1f2d824adb21b4e66a75bbfaaf7f
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/snprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: da7f665f0930c194dc67de8e3f84305d1d9efb6941fb0c1f75bfb3017e6e2501
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/socket.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 73aa233a19dcdef4826a6e9c76995947a86d2671e189f51b08cd39743b9395ab
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sockets.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 99bf26833d5e9d9cd2556408cf92c515c24d6f5473b27e278d51604655b38611
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sockets.h: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 2c890a5e463ceb8ea9e9bbdb6f2a4a07c745c89fe71888191634079bd96b28d3
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn.in.h: 
+  copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
+  hash: dd423bdec70d026b36d8aca617a940f03fe19b9a450e3981de91dfdad00e2a4a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn_faction_addclose.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn_faction_adddup2.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn_faction_addopen.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn_faction_destroy.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn_faction_init.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawn_int.h: 
+  copyright: 2000, 2008 Free Software Foundation, Inc.
+  hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_destroy.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_getdefault.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_getflags.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_getpgroup.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_getschedparam.c: 
+  copyright: 2000, 2008 Free Software Foundation, Inc.
+  hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_getschedpolicy.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_getsigmask.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_init.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_setdefault.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_setflags.c: 
+  copyright: 2000, 2004 Free Software Foundation, Inc.
+  hash: 7f583d13179aba639b22ec305fd749afdeecb96823d2c32cb4dd9294a51bdbd2
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_setpgroup.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_setschedparam.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_setschedpolicy.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnattr_setsigmask.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawni.c: 
+  copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 62be6e45aaad94e9dbc02b27f7dba559de55fac508f2e3954479674ce637e015
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/spawnp.c: 
+  copyright: 2000 Free Software Foundation, Inc.
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sqrtl.c: 
+  copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
+  hash: 755a6706b4cfafc6b498d6efa76315b826063474b7f91834ef5aac159f116c5e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stat-macros.h: 
+  copyright: ''
+  hash: 148738a233ce05f8eb8f7d34330ceb02c5bd65c8221d02bbab595257b813e2ed
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stat-time.h: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 9aba76bc91ed527925d4c43ee4224d8ef90fa0d21475d5e4fe2976cf797daa08
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stdarg.in.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: fed8bc6587d9b9b46807cec06b2104a0c7f4f4edd00f5c3104c86ab78d64722e
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stdbool.in.h: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: e8683e07480c37941452e3970f57d5f5bbcd0d742248766ea32158872b843013
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stddef.in.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f3ff9d2469e9e018bbfe1a8d85d2454f7a54673420acdb29aa429cd583e45834
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stdint.in.h: 
+  copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc.
+  hash: 31871000acd29901edf1cd726ea2f32b9837e497b9e19a49c00374e0291c1997
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stdio--.h: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 8c7711ff90032c75717f2f7363d9a7ee7e94afa86d29510878f66dba39bb3f5b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stdio-impl.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 1ab5922a50832223e0ffc2c70fc544f9d91a363ecb50bcdb55e55c991d88b33d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stdio-safer.h: 
+  copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
+  hash: bcaf909a5c5f8071d1141fe63d90c50832df9f511b5934124b18613c2cc60631
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stdio-write.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: ef387fa21fd98ef04fd7a0c63399aecb0f271036efc4d192baeca9c964fb1b05
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stdio.in.h: 
+  copyright: 2004, 2007-2009 Free Software Foundation, Inc.
+  hash: 90996147d8e36f5883486d804050c8256ebd75940339821fbe964fc12816a9db
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stdlib--.h: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 6f719ffb3bd563d1191de42881829b2e53ac17d32dd1d6708c4c22b0c065181b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stdlib-safer.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: ad05b244170755ded620afdb4d6a499a61182625b45f4458df212dd48b9b05fc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/stdlib.in.h: 
+  copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc.
+  hash: 0ffeef75662fb92247d373df32beb5d8dcc8d52845a1a0cf2e3afe0f75df2164
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stpcpy.c: 
+  copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
+  hash: e277a69ab969893f97dbf9b683e7462bd56bb4a3d83e01b3637c705a0b240b0d
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stpncpy.c: 
+  copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+  hash: 63243814e0160f070d456614689aea5b26f421817aa249c25f3449b22bd82220
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/str-kmp.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 6ebb0ef34e3af533dd72b1cac88faebfab78edf50fcbe16d66a8f53ad4da159a
+  license: GPL-2+
+  license_override: LGPL
+  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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/str-two-way.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 333e7d492bb7a06bd7eceb738c5bbfaa45fd376cd1fa873159ae6c102fb5abe8
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strcasecmp.c: 
+  copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
+  hash: 9fac5af7b69ba93dda82ad7e40d81dce148b1b3805ad1f85e96ed8f361e75307
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strcasestr.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: df44f98303720564f510cd6080f83b2479ba81a607e0ff35a70065d332775e9d
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strchrnul.c: 
+  copyright: 2003, 2007, 2008 Free Software Foundation, Inc.
+  hash: 4f484d4cc0befecd8997334083c58252e9234ad7b53c9ed4e68dbb21366491ea
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strchrnul.valgrind: 
+  copyright: ''
+  hash: 110d49dc4750f651d0f237887bbdd3ed01c2d8950db226835e552d195ad9dc03
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strcspn.c: 
+  copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
+  hash: 9c6096a1c313c8363bc4fb7ea9c8670d50859635fa4fbf18354f17b98fcdf6e4
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strdup.c: 
+  copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+  hash: 12e93fe471e7edcd885e207e311df99c6d850b7b9ca5c3b28e39e316c66fb2ab
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/streq.h: 
+  copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+  hash: 9830f7c0042519dd01e35295d2e694c760b032cd222a31f3855f44b1a526e12c
+  license: LGPL-3+
+  license_override: LGPL-2+
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strerror.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: f4503783120d3b66707b724877e32b0ea1eda13cbf9e79f4640b32e3f44c7019
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/strftime.c: 
+  copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 7600ea0821aa8b38178ea32004b358cc84e69df14ea395dd865c955b8677c320
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strftime.h: 
+  copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
+  hash: 4c32312ac57884519ab011ab68c92dd237dd76c2f232cd5395e8d283f365bc1e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/striconv.c: 
+  copyright: 2001-2007 Free Software Foundation, Inc.
+  hash: 5e8b516e5b0f28f80803a45eb2c6be6a4c0a2282bedc384d0c3b6324c3d0df55
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/striconv.h: 
+  copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
+  hash: daea9a49adb2283a8f85bb18fda76f59028c8bfdd046db63226ca0c0e0350702
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/striconveh.c: 
+  copyright: 2001-2009 Free Software Foundation, Inc.
+  hash: 34bb63b9a451ec7185541467e05029b4d5fbd1cbf5a03d3fe84ac381843e053c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/striconveh.h: 
+  copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+  hash: 86eb681bccb0a53f2a391f680da5d74679c2482f39258d92ef8d6b0ef17ab474
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/striconveha.c: 
+  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: 5cb3167be3296d381de5cc20753a6e13eb849c736c76cdf79875fa9ffa1a41ea
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/striconveha.h: 
+  copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc.
+  hash: d78d74cdfaacc28ecd3e6b1d1c1934ef42f23ffe6e6a940c2fd8b9f3396d78b5
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/string.in.h: 
+  copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc.
+  hash: 1136d0b98b57be6dd7253ef5cacf9f4da5f028f2d885723c8bbc35a3ab13745b
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strings.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 10e5bc3121d2994aa8fc0890d99464664f2b9d6f3e67177e371d1f4c072bc250
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/stripslash.c: 
+  copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc.
+  hash: ca9f072b31bf11e52cbb5c73957988d28de77f56c962b0785f07af77418be677
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/strncasecmp.c: 
+  copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
+  hash: 815116d5f75c679aca0d1bb421a8370e66e40168c384ed9dd6a98d3f5ca83391
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strndup.c: 
+  copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 493b47a8d6f269acc1510b98b35176cc820945e10980a25eff018b436ae1bcfe
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strnlen.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 90b853a0e4af9628fcd17de3f30a70c1a406d6517e1d18a5f5b9413c856b1c10
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strnlen1.c: 
+  copyright: 2005-2006 Free Software Foundation, Inc.
+  hash: ca122eb96644afef5d06ddd05a5ee8d1672a9df41eb9dee6a04360b119d62dac
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strnlen1.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 150c8f3b97a0d8163ec53ce9eeac9922489186f5ca66d9250750116cb1f8a5c1
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strpbrk.c: 
+  copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software Foundation, Inc.
+  hash: 96b98866fadc00e26886d758144724ccbbc594f237800fb4314473bede51c53e
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strptime.c: 
+  copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+  hash: e7a81072f584025045e8cd27a8aed09e13a467c6a3a157eee758bd6613856191
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strsep.c: 
+  copyright: 2004, 2007 Free Software Foundation, Inc.
+  hash: af7bac86580b20527ae1d65b6b78a1b038b7b9e0b005a67835c2058a71215932
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strsignal.c: 
+  copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
+  hash: e182db866c03cb48b20804d461064af0a10923ccec042890b5604c9c43d228ca
+  license: LGPL-2.1+
+  license_override: LGPL-2+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strstr.c: 
+  copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
+  hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strtod.c: 
+  copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: 528883e0f68c192c7f4c418737f36efc6ede11ce51636f8145c70d1101163e8b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strtoimax.c: 
+  copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: 7973e7dce509583335e94002f1d80e0f651365102e54f37f6643260b5a0f3a11
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/strtok_r.c: 
+  copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
+  hash: aef52797442d97f89d26281a0226055638efc2009e04f911fb4bbbccf7671efb
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strtol.c: 
+  copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 9a28728b276103445a0aa97cad8332a2cc26aa2b9be2c964b2c166b56391b73c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strtoll.c: 
+  copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
+  hash: ffeacd90d3869005c1cbaa8aa6090606681dd0ce4407a93a241510abba0719ea
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strtoul.c: 
+  copyright: 1991, 1997 Free Software Foundation, Inc.
+  hash: be855c203200b5a984ae3290890f46d4580f377b4bdafd0266e7873dab9b1731
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strtoull.c: 
+  copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+  hash: a844c45a1416b2420bd76bef0e85cb2d0a7e363cf88325e65d285bbf5882e58e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/strtoumax.c: 
+  copyright: ''
+  hash: 20d59ba9f3d7a1001d08e6aab61d928dbae2fd051e69eab2867765f8663460b6
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/strverscmp.c: 
+  copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
+  hash: dd6243d19084dfaafaac9441be9a71dde27f33c595c685beee735da6b4158cf4
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/symlinkat.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: dcc854e76c58e26c2b9f652e67d1f4d656d1115d1dc966d5a8ac27025490d91a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/sys_file.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 868915ed2b23fee8738485eaf605b0f29674ea76f2f27fc0a330c7e40476e7e1
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_ioctl.in.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 5a85be194ab973fc6eee2464d2f6043be6ca5a0e0ca50c24c8e1947d3ba9c366
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_select.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 6385d79cdb0b4995cd2158dcdc2df844a99ee46a25909c5c4f1227065077e6a8
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_socket.in.h: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 362d22c2394c4e40e8e2f5184c97bbd879f5b56d4ee18b4d91e7c6e29b7deaf9
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_stat.in.h: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: e70e9a10084c5f7be3fb6d2aa62228b6f5ded082be4afadd19c01d119c502415
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_time.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 808d4417fc9f057d4ad55b6add3f133d03a5322fabe3dcfe925bd47d14616a66
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_times.in.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 3cf5a711d1c92858d4b654284c43c7ecc25d06763f8418c2e54c3309c914a541
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_utsname.in.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: fae5021bf23d69bd35dc0d59126fd5506a194d7b57a8c0ffca7d480f8843b12f
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sys_wait.in.h: 
+  copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
+  hash: 3c64ce849ea907e265c1bb91f56556fa9f828395cf62f5192851eda0f62cf63e
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/sysexits.in.h: 
+  copyright: 2003, 2006-2008 Free Software Foundation, Inc.
+  hash: 2f0fc879d2f3a165ed05292bd2ce8f091f60eced3a2fa6f8fc1445ed4548a5d0
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/t-idcache: 
+  copyright: ''
+  hash: af02ece347f0cc0361537b092cba7066186fc98ab1a92c6d10435a9be9ec9f84
+  license: ''
+  license_text: ''
+./lib/tanl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: 1f3518e0705fc06460c8a4c98999f4c188b0dacc611e78239f11c5deaaf35b27
+  license: ''
+  license_override: GPL
+  license_text: "Developed at SunPro, a Sun Microsystems, Inc. business.\nPermission to use, copy, modify, and distribute this\nsoftware is freely granted, provided that this notice\nis preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/tempname.c: 
+  copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: f8c04e91069ab576b32bf499cda2face1c55ff82a288717173934b8e70a4dc9b
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/tempname.h: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 3c1441c47f4337bfb8d432fa03ee9b1ebaaa25a5dd874e64f37eb260e8c441ad
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/time.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 41f65ec87233a41b8ccfe9364732c124a99001f260b8ac3570402b0a1628a4e1
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/time_r.c: 
+  copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
+  hash: 5dd79182477034f96e494ee4d68c9e08f882485e73c1bd05f0a650f9a46629c2
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/timegm.c: 
+  copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+  hash: f8d8b41a303f3b09ee22b4a9a247f85ffa515b47569011d5abe2f205923fc4ed
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/times.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: ae2efd1b1623d1978cb2d18227edd02db9d9a9f47dbecc71fbf6806f8da628d1
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/timespec.h: 
+  copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+  hash: 9d3c4eda40d629233b24827f15f5dd80c40d897e119a01126bf867193d6be14c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/tmpdir.c: 
+  copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: 9de08a71227a2821978be3e6919f6232ccf2022430447f39b22e612021217871
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/tmpdir.h: 
+  copyright: 2001-2002 Free Software Foundation, Inc.
+  hash: 4b2eb7839ae3ddbdafca11312d499ac3f469953e05e927e65a57b2d9308792ef
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/tmpfile-safer.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: b6f4f570c8724d3c78e2c7ab73929f9b4a3b30aefc058105e71ec434b5d5fc89
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/tmpfile.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 5626c82fc49099877c1350e01f8a80e576b6fdc73ea57162c6989f956945259f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/trigl.c: 
+  copyright: 1999, 2007 Free Software Foundation, Inc.
+  hash: 8b60f78b69de56a777043569a8e3ccbef997faaac10c41e5bc0f4b450c5a66ae
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/trigl.h: 
+  copyright: 2002, 2003 Free Software Foundation, Inc.
+  hash: 449a860f004a88ea94a76732170e38c1a861ddabf4f12c537138efbb777195c6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/trim.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 44cefabd5123525fff9af425e47c2ddb0a6a20909271f557f7954ed07cedca92
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/trim.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 9bb7a015426b58554581d2f9b0de5a6befeeaa73d42329bcd2d57fe4dcd84b1b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/trunc.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/truncf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/truncl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/tsearch.c: 
+  copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
+  hash: 2db46af0a909abf4d92d20a20556b8de4d7d625028def290071fe4974ed0187b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/u64.h: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 691a491094cad62e2b863a76aeeed5899b9d8b7ecc6c6aef6ea2cbc1f4fd6dff
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uinttostr.c: 
+  copyright: ''
+  hash: 2dc91a8e7841d85e1d053f04554487d1eb07a9f84f68af10180ba7b0d865ac01
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/umaxtostr.c: 
+  copyright: ''
+  hash: 690d780ea9b95f6c5cdc34874b540dd5b1bb28599537659f46ace170d23ed219
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uname.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 68f248ca49d11bdb00b1adfa2bf6527ea340aed829064d91877566fc4841c919
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase.h: 
+  copyright: 2002, 2009 Free Software Foundation, Inc.
+  hash: 5ee6233f3be7001239f84aacf30f5e5ca96631f010b6f91a16a9b6f877642fae
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/cased.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: c996cbcd82623c5036d89e080e6689b335915047febbe60fe2d10b98b4a99023
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/cased.h: 
+  copyright: ''
+  hash: dff874729fe88b9abf1df3a7e29d95060e758a13afe27f18862e9091171bac89
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/casefold.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d0ff7d9648a8496f25c563ab8a2d7b0a1200cbcb64444b238f29606d4bfc6ecb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/caseprop.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: bf76e4707fab507bdb7069d1750d83c55e5e7e355a93af71fd735ad042068179
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/context.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 13a1c95eebeae5e2b3ff2ca41305b3524504304664cd71a17eaa832894493f23
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/empty-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 493f93cb9eabb70c693a5d984111996d190a98c2c7fe60a7c67fd984414df699
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/empty-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b55f2b593f51969d89f98c6e7c460af0afa6d588e8123971775b1e2629a44b0a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/ignorable.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: a8487e39b5d100c90eebc45fa11632191a89a473d5ec421ff55594e53de557bb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/ignorable.h: 
+  copyright: ''
+  hash: eebec1a20e857e920041811c16a084f7517860f172ebf6dbe93bc9e89b00de9c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/invariant.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2b5beb7dbf02de63e2b3d6debd2322c0d62a0c2d1f309f0cecfb6daa5de73437
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/locale-language.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 3add1adc16ce963dcff1fd7b7596b8aafaa5e33639dbaff0dcbc4074d86db3d1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/locale-languages.gperf: 
+  copyright: ''
+  hash: 95c56feb8187781fe9f326e97d88816e218edd31dfceee6446844c7d8009bfa8
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/simple-mapping.h: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: 895a0e771188c08f6fd448c3cee007eb3cd4ffefa11bb366422bb261dd5c851f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/special-casing-table.gperf: 
+  copyright: ''
+  hash: a4b12e5d88d868cec05dd05e6bcf4f2484acfc55fde9c60a44d9f7bf345a9d93
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/special-casing.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/special-casing.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/tocasefold.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: 703c9c241129843d8d359363451912cddac5124fd6767b3df0331f490d4cef0d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/tocasefold.h: 
+  copyright: ''
+  hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/tolower.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: 6ea23704da935f20f2444eb5226c07f8a734da7cf55afdb1219395887e6848ca
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/tolower.h: 
+  copyright: ''
+  hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/totitle.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: 7c2f4b5f520e8591e420340d3d582ec1ad48b0936da5b8893b4d7fb00243a9f8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/totitle.h: 
+  copyright: ''
+  hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/toupper.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: b42a7680521ba55979491c693e3642382a98438c56de36812766067cc151d3b5
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/toupper.h: 
+  copyright: ''
+  hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-casecmp.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: bb95e0aba8ef01b225a0c2888a95a322733d0b39d3206f21b44f00d2b11a430d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-casecoll.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d3d6b4ec932f80e78f2e81cc958dcc14ff902e2977a213c27ba521270864a873
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-casefold.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: fcee85a09cd481698f5296dae6dde1b8d84d33fb95ff41483cc4788c692812f2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-casemap.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-casexfrm.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1639cd4e229bbbf5df8d53b658e691f476f9d9485f16edcfe5d7cc148e86a497
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-ct-casefold.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a2275dea893b28c3fe92ae867de9c70a7fdf39001053d9ef2f4091a7497e9c1b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-ct-totitle.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2570f24e1a280b6b4cb7de56c85279674319e4cea7c2ad984241975245e76226
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-is-cased.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b4e0b17776175ec6033c0aba5d535daa7c3667a42c53463114840fbf600d5cb9
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-is-invariant.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f6e201df57529cae6e7639242610ee3722e3447d1d3ecfd99c67f98811982a3a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-prefix-context.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 823e52633d441082aa1489c520794e4fb0ef899378e8e5f75838d66a448ae3a7
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-suffix-context.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9c7366f076df0f676f00acef4437ffea7f561447d007d2f7d5476e9e0fd6f74b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u-totitle.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 245ae2aa6d16c22e82aaabe269a3759b3a45a50bf72453eccfcbd3162c57222b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 3a18bce5adf8c96faba2f53500087a79f62fc9e8e3dfe15ec13f0cb1f547f218
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: cf6f8d7d407a05dee71fb2903a326d279bf99c7dcadbcce7dfe2753b99386a94
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 75f35ff374fbb2c36d1d0e23f4a52d96dc924835dea6fbd11181b714a8b9a88c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-casemap.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 7ca080531110c4bbc03962b55be3cc21200cdb8dce98b6a8b207c1295bb556d7
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2a3efd68520d13af88078b6294c4fb7eb225b0e8671c614ea31dd446d448278a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-ct-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 24f57fcc73e888d74a192de0090f47f428b35a680d6ad7c69c164dab39ff4c47
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-ct-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d7dd5fefe8bd374e2f5f46c7f77a2521bd272c6078ae4cc013e3d1fc65106b30
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-ct-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0a0527c17c90268b46de1096fbac12b53e7b60ee1e5077f6e34f7fdb6e648aee
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-ct-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 465b7179f665acb6d3c0e552e8d0d765089dce1ade88007d34a0b367f683f47e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9ec0139d88d886ab48d1975d53ebd8a5a09332ce426b8febeb5dba0357f68f3a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9d7f494e9dc39a744a34b4c147d142cbeebddff7b543829ad15cc13a9eb29cbf
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-is-invariant.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: dd5c520c3534286f4aa5e4327f9d4c303736f424c95627795342c46aeb781cd8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 204472e2bec896b7e33430f737c98353a125ff880b31094642769f4b2f7577ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ee90d96cfa019ed4e11214211d2ea9730eb6f098dbff34c2db011a1757c91e87
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 010d6156b827f55f04ceacc5bc59dcf08fab12f5db42c4636d41a15292ad1ce1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: da3309e1a77a472f5ade2ed85dc9271221109158157c6579b902e0756539b643
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d51c3f25e16b9bbd18428d84681d7a0acfd756fcce1c341bd472f1079da44f22
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 655b2ed28eeba9ad9c255747e307455643e2fc47b498a2e71e0178590b25d5b2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c4408b2dcc2c238f29f621912ecc12719d353ba1317d179d2224fe8ddb0322fe
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u16-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 220470c0e6a7cfd81d08f4c8f0b8fe5d574782bbd13f1c820af6ef70ed2b3385
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1781408004da90c050ae9a5f6570946516817493ba3fe45afde124d51583089a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 3300da7050c301689a45980d17099c391d7648b19c03c2d5f42557b804d061ec
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 45bb91d48e51b6cec99641778244ab581c70aeacdb122f32a74b8f243d2fda3b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-casemap.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 247aa4ba2a663446dce07f5c913f40b60673b7f7e3ca19f403bee9d3a78ea93e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4ebb9b8760ba8a740ddfab863217d0868628faab7f9e24f26788741b48ea77fa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-ct-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 39bd9add0aed1db997be47956d8e91683fc6fc2db50d12228ef6b49d4c7b9c54
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-ct-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5e11cb2a0b6b64c1876630a435fb7c2f7d28d37bb656785b75d588cc9369ff27
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-ct-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5a1479bf7f4997033a317be5e2bece1df438b55cdbc1cb577fac817314f41fa4
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-ct-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e9e26cd78f76cc5a964f8528618e20cd2e3f6689754b5c753feab64e1b9b720d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 37f54a0969d6155ec3c8bcd617764b5c3cc5188acd4f800693ce4cb905a50a26
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 266206ce9a0daf342cd70f30bd761d5d4c4c3731299b5db880df0d77ac22effc
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-is-invariant.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 7c8f061345e51ebfdb5ce97958c50ba769e4082cb19dbc42e96981eb4db800b6
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9dc638c9ad9f87b2be59801ccc280ad79b58577dad018f9749e0ca8438f7211e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d833857fc52a56d8c5c6b41b0170810ecf56c399611254909febef6150854139
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e03ec24b3075004b438ab9007fb42afc786d694f1260409db1b8c963dc35be4e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2d3ebd1fe1ca9d551f7ea8c5ff3dd4eec61c67e8864a251143122304ac020169
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: de92f410f7f6c2f4f59fc279e266069f68bebb3cf25d821bde419d5ff8649b49
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 04e0d3c9e752bb842c5255065caa6fed1aaa7124bbc9872b4bc596b29b646b1a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ec057f66ee289c109f8b27dca03f86f335bdd05f950070280d61f2ba618646c3
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u32-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 606b4a302876209c7e238817387def24e5ab25c80234eb6fd6d0e4a996d4dc09
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b41ef1fbbe478f5e3b1eb110e5e6b250c5979421502f6ca1b7dd19de6fa798b1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 86360fb8c79bf57b016601bee20af58b883c31f6a04536ea4f395a228987d704
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a60314a48ef1bae6d56c720648375fb4e57db1acb91ae7b0c208b93ce8535cbd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-casemap.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 24edb83e00615db47ba7c0efec239390e1c2d9ed8f6b30e604adcd3a0c82d0f5
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 167f36a57e4c24ac18f4a6e9bc73d9257a39d3efa6b38bcbd186084501395295
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-ct-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ffad7b59d6730a4f76e99dc964df770e6014da0ee66c45206264d9f709e621bd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-ct-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b16f9a890b5817213de428b7f08aac3ffe1702b0821d98a0f0a3b56463e1c091
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-ct-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 7304bf1b4bac0c2ba21867f89287a0c478f7ac1b9d0ce1418009798468b69335
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-ct-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ba46d214f489da0c181c73148e83191840c448fd417a17161061a3c5be227066
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2094cfba452dcdde8e0de5eb5b8a34860eccd1673f4f1ec34de86d8887f2deb2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ad6836695e22fc1c621033a020438153a8389f1ea9c00c3aa7db503668e87b8c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-is-invariant.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 896e334b5f842024399c0bf0d0aede192f16c5503e6008659a286281e8d275d3
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9ad379585ec68ebcaf3e6020e2874cb590ef8392bfabe67b0f415a36283d1582
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 40cddd86874cd3df35e51cf677bd29c84f0bdcfda6279263a149d4889018590e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e6b62e7fa6784af5a99641078aa13cd2ed9636c64e9ca02ec2500c009aa90498
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2faad600e89a2f4df323bb0bce43f95d9c50c70477c783b5069bdcdcef2c823f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9b47dcd3d28b76b4c20ecb89edca813790c5587a53b66d811be0f119344dd512
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 3596157072c41f644c9922e9b8b776dda9a83aaad3b5ac6228db0c697dba7b22
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6caca3f452e6e3d203e6b9753be9652b60beecad4fa92a0ece54e81814bea56c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/u8-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a6fb8d6fa933fd65fffc9ca374211407209be087c7009bde3a72a43024734e9f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/ulc-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a14530498e0386b3448529dafb33fdce903ec4592d2be37361260862b2fa0f16
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/ulc-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6f77627a28abe40aea7d9b6d12d0402d8390fc1e9b01ef47f55c8b197544dc48
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/ulc-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 34c8a6903e645541b4faddf6fc29db8e42c13da1b6c136dd6f41caa01745f4e4
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicase/unicasemap.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unicodeio.c: 
+  copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: 33aacdf0005527850dd4fb652e296df5c0c204a8054ea9ddcfa120866f3a0e9e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unicodeio.h: 
+  copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc.
+  hash: 1e47f450b9b67595834d03f31709e694aa7d4ad6febfdbb6ecbaa1bec1cee139
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/uniconv.h: 
+  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: 5e6e0f51341a6e53f0b352b8bb7db9465bb35a0e3cd37942b46076d0a7af3702
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u-conv-from-enc.h: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 188629e474bbbcd1229c8c6833219797032c420574e752902bca4747712a6d66
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u-conv-to-enc.h: 
+  copyright: 2002, 2006-2009 Free Software Foundation, Inc.
+  hash: e0aa45049139d0368fd9cc0402cf2f6ac92e52d781ad1466a494513b14fb40b3
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u-strconv-from-enc.h: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 7be24e48ba83701cdbc39b85497b3fdb44b90463a283f46fb720f91ce2d7ae33
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u-strconv-to-enc.h: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7a46757983eda3f42167efe493ff5b1224b5fa378ccbb3ef3a54a34774fff733
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u16-conv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u16-conv-to-enc.c: 
+  copyright: 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: 63cf6c42e78a055e4bc0152c66c81d9e677aca47430eeff2566e821608a1f937
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u16-strconv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u16-strconv-from-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: abbeae189b434069f8b5082a0b74cc1c0ef22496521de651ee804512ebbcf297
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u16-strconv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 00764e134b95f7908e7ddd1a025d875ec6785ff8b6b69d9e92d37be3f23fa300
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u16-strconv-to-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: f67645d89afa61a452bfd22d22f76fb39ef24abdd3e44667aade0ac4d78c1fac
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u32-conv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u32-conv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u32-strconv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u32-strconv-from-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: b5f98b5645d8b9d620808c54cbe34c5977a84043ce50fc58401924535f12208f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u32-strconv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u32-strconv-to-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: e1b205c9ed76dd104a13b1f6427ff0fedfe1ac06bc458fcd942d94557d74e437
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u8-conv-from-enc.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: f48ae3336f9571f13c2904bc2878141e7a9d272c1baf5d3a4688fd1f226f3546
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u8-conv-to-enc.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: c0e5b93ef7fa66fca4a5b9fbd7dfcabd13c1d87f9713fbaac56bcc56fa4137eb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u8-strconv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: c9992a9820bc23e9834057a26dff394918e76ca830c2f5ac97e0d67c102baa7c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u8-strconv-from-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 6da43447486f93c497947a213640c53bf620094b211a782c60138d9057455ecb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u8-strconv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 0942490a0de4f7b06edd517c57084e60348a1d79142fec2f05c531689a4cb814
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniconv/u8-strconv-to-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: e38b1c908eef1d22cb3bee0f7157cbc3b3a409ac8fda47c5f4f9c630687e934c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype.h: 
+  copyright: 2002, 2005-2009 Free Software Foundation, Inc.
+  hash: b8e67dc9e906270547a47f99abb0a4b7b1f7b1acf607726786df995910314d43
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/3level.h: 
+  copyright: 2000-2001 Free Software Foundation, Inc.
+  hash: ca73868d0849016e4c33c48ca11bccc77fda03863928d329ea03f644c3e4e020
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unictype/3levelbit.h: 
+  copyright: 2000-2002 Free Software Foundation, Inc.
+  hash: f1ad93bae7eab43736b46a51a2dc7303c2c4d8ad4563a2cd7e0740587a86880a
+  license: GPL-2+
+  license_override: GPL
+  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"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unictype/Makefile: 
+  copyright: ''
+  hash: bdab4fa6ea70dfa476e8e0bfb1a837bc7e67c3fb607376e6171cc27d23e66848
+  license: ''
+  license_text: ''
+./lib/unictype/bidi_byname.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/bidi_name.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/bidi_of.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/bidi_of.h: 
+  copyright: ''
+  hash: c2182d910737b90cff77f4bab4cc2b1567a8713202c2b24e55951bab986d6627
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/bidi_test.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/bitmap.h: 
+  copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/block_test.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/blocks.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/blocks.h: 
+  copyright: ''
+  hash: b6a9e5481a1b0ef31c2bcdeecce12f84a6b3107f42cda43d7b5490e51c7e6b88
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_C.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_C.h: 
+  copyright: ''
+  hash: 8e35c171e0730e196c1752e71128804f55f2ae84579e656cc0a6aa47a1eb35ba
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cc.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cf.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cf.h: 
+  copyright: ''
+  hash: 47db4afe1e094f7e2c2ef9d8189af3a3412ffc4705e0de359c9f1b921fd15e66
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cn.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cn.h: 
+  copyright: ''
+  hash: b39549af020761e1993a548f9b823c05ff2a6e49e6a537ce7fa343aeaa53b145
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Co.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Co.h: 
+  copyright: ''
+  hash: 99e430ef6329b9f7d5ebc51a76e1e2ca53c0507494d6c10546b784e6049bc663
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cs.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Cs.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_L.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_L.h: 
+  copyright: ''
+  hash: 8fc9e0984df0753aa0b9fad85007840415de5c70af85be4dfbe95bf520fb1385
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Ll.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Ll.h: 
+  copyright: ''
+  hash: 785b1fa8fec42960be4917a6e8f82b3c4c7525cadc22dd518aac0cb7bfcd958f
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lm.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lm.h: 
+  copyright: ''
+  hash: a37e7a248becadc97caf50c64c3a3e054194e5a71c4eb62054f56f24f2c97729
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lo.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lo.h: 
+  copyright: ''
+  hash: 65c339f1a109086f8d25277fa55fd83bf5aa46d2fc13004aecbc8ca503750a54
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lt.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lt.h: 
+  copyright: ''
+  hash: f78dca06ee53b82be63262113da2e6f5ddd027a997d069657b643daff281d7c6
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lu.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Lu.h: 
+  copyright: ''
+  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_M.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_M.h: 
+  copyright: ''
+  hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Mc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Mc.h: 
+  copyright: ''
+  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Me.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Me.h: 
+  copyright: ''
+  hash: 19978c351a45dad43fc65cd804226182244c2b634a8a7e6541489ac1f174e000
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Mn.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Mn.h: 
+  copyright: ''
+  hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_N.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_N.h: 
+  copyright: ''
+  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Nd.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Nd.h: 
+  copyright: ''
+  hash: 645d0029c292be21c462e6bd7af2d005278ff9bc83122e0eeaacaadf94cd21d3
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Nl.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Nl.h: 
+  copyright: ''
+  hash: e884eada39c812b459e7b7e481b4419599b18f1af710bd8482a696c5cada155a
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_No.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_No.h: 
+  copyright: ''
+  hash: 0deece216789474ac445dbdb7296d6d5e8e7e5a8f95dfaf2e67a4c5711e18b57
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_P.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_P.h: 
+  copyright: ''
+  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pc.h: 
+  copyright: ''
+  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pd.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pd.h: 
+  copyright: ''
+  hash: f547ebd71e710e45743883d9de8b47192f46dfc611373c5c89daf8bdaf5aca6e
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pe.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pe.h: 
+  copyright: ''
+  hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pf.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pf.h: 
+  copyright: ''
+  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pi.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Pi.h: 
+  copyright: ''
+  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Po.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Po.h: 
+  copyright: ''
+  hash: 26e8efe9bcc1419927bbca15527c8d81a1b903390185ff5e0b585341b94ad994
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Ps.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Ps.h: 
+  copyright: ''
+  hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_S.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_S.h: 
+  copyright: ''
+  hash: 81291c4df9432e81c35739340c26ef260186afb2e55916cadd9c6a52dc28dae6
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Sc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Sc.h: 
+  copyright: ''
+  hash: a172e78fd27a83c4692b30614cc4ebd009a1b0684b24bb6be9aeb769febacdd8
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Sk.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Sk.h: 
+  copyright: ''
+  hash: c15094a471ca185c4c200e38783cf9e759fa3e0e8fd07b81e3058a1a7ffd5f44
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Sm.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Sm.h: 
+  copyright: ''
+  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_So.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_So.h: 
+  copyright: ''
+  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Z.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Z.h: 
+  copyright: ''
+  hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Zl.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Zl.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Zp.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Zp.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Zs.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_Zs.h: 
+  copyright: ''
+  hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_and.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_and_not.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_byname.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_name.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_none.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_of.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_of.h: 
+  copyright: ''
+  hash: 2a28fb8f13c04a8d3e8f05dba59e8336dbb1c9fcd244a69729bda0d6cab7903c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_or.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/categ_test.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/combining.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 90adbd1167196894d026717b09dc16ead930ab4e0e79fc939f9b943b5444cb36
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/combining.h: 
+  copyright: ''
+  hash: 1344ff3ca3a44994d02dfae3bf4d2e1ef6b65e951856e19ba186eff2a5f3ddfe
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_alnum.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_alnum.h: 
+  copyright: ''
+  hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_alpha.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_alpha.h: 
+  copyright: ''
+  hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_blank.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_blank.h: 
+  copyright: ''
+  hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_cntrl.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_cntrl.h: 
+  copyright: ''
+  hash: c07f81242830a91177e15d05045170319602acc2f3494d6e1d6abc1ddd693c0d
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_digit.h: 
+  copyright: ''
+  hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_graph.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_graph.h: 
+  copyright: ''
+  hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_lower.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_lower.h: 
+  copyright: ''
+  hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_print.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_print.h: 
+  copyright: ''
+  hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_punct.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_punct.h: 
+  copyright: ''
+  hash: cb1c5c1ff9e38b590896695c0436f5a583961a5aecf9ca57e76b27ba0a4e33c8
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_space.h: 
+  copyright: ''
+  hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_upper.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_upper.h: 
+  copyright: ''
+  hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_xdigit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/ctype_xdigit.h: 
+  copyright: ''
+  hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/decdigit.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: dd98fdcdaa9cd24e7260ed5252c6393ca1fc1c32b1afef1b4a9b98e57eadc26d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/decdigit.h: 
+  copyright: ''
+  hash: 729a7ffd2cedc46ac857f670fadbd787a8bd1dae5b9433ebebda7916d18af8ce
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/digit.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 96f1f23423e02f86953ba94177173864040511deeb2b553746c503eedc69f695
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/digit.h: 
+  copyright: ''
+  hash: e354516c3c1294749f97668b7aecc4aba4cd72013024992226add61ca235a879
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/identsyntaxmap.h: 
+  copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/mirror.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: c8eb63b007266041de16a9e45bf7b8766d2016e3dd82e9b801920e7e8ee0b265
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/mirror.h: 
+  copyright: ''
+  hash: 4e47d47442a6953840583406acab5bcd285bb8c2d7356180dc28bb277e1e7953
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/numeric.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 14a734bfffede7c850c2263c2844a2f42a847a8fdb26c6f4940a825a35a672e2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/numeric.h: 
+  copyright: ''
+  hash: ba1e5ba6fcb88dbb798cd02e5cc119132bc31e49b5a24d8e19ae906ada5711ea
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_alphabetic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_alphabetic.h: 
+  copyright: ''
+  hash: 99efc65e4f46e3ad0efe4f73de0fc1fd74196d0de0892e8640d57da681726ea2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ascii_hex_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ascii_hex_digit.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_arabic_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_arabic_digit.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_arabic_right_to_left.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_arabic_right_to_left.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_block_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_block_separator.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_boundary_neutral.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_boundary_neutral.h: 
+  copyright: ''
+  hash: cfee85fd908c11272a95f63abb54df22efd9342b5462d93c6b38df59fbd1ab71
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_common_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_common_separator.h: 
+  copyright: ''
+  hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_control.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_embedding_or_override.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_embedding_or_override.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_eur_num_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_eur_num_separator.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_eur_num_terminator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_eur_num_terminator.h: 
+  copyright: ''
+  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_european_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_european_digit.h: 
+  copyright: ''
+  hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_hebrew_right_to_left.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_hebrew_right_to_left.h: 
+  copyright: ''
+  hash: 66483e8eda823c6234a852450a0e3d7d1b26de2c6f4e7ed117dfd7a5f60b4eb8
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_left_to_right.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_left_to_right.h: 
+  copyright: ''
+  hash: cca189bf24e298f3c3f5f843ff18dfce8c007eed8233e52d0e6dd7f92c32a2bf
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_non_spacing_mark.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_non_spacing_mark.h: 
+  copyright: ''
+  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_other_neutral.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_other_neutral.h: 
+  copyright: ''
+  hash: 1e8e84691fd416f70f94e14f52604d742feb401a9e83a8f82c5c2610488e4849
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_pdf.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_pdf.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_segment_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_segment_separator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_whitespace.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_bidi_whitespace.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_byname.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: d40e7939956111bd30348da1dac41960fd3fdc6cf6f680cb8573e79ccbedc970
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_byname.gperf: 
+  copyright: ''
+  hash: b16f7907c490b5f7fb2747f5b6b19bd7f6792f0f901474152f7c7fc7b95b151c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_combining.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_combining.h: 
+  copyright: ''
+  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_composite.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_composite.h: 
+  copyright: ''
+  hash: c768605f7580ce16b1f809ff6581158ff3026e0f7e626da4b880421c26f3f758
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_currency_symbol.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_currency_symbol.h: 
+  copyright: ''
+  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_dash.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_dash.h: 
+  copyright: ''
+  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_decimal_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_decimal_digit.h: 
+  copyright: ''
+  hash: d43559860ba0321bc4126988b80b371e40fefd13543804b8cf1e2f323c2e6757
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_default_ignorable_code_point.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_default_ignorable_code_point.h: 
+  copyright: ''
+  hash: 10c6b0ae007cf9d8f016b4a35adc99a18c9253e20cb8212c2920cf601eee37fc
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_deprecated.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_deprecated.h: 
+  copyright: ''
+  hash: eaf7422b8873ab174df241ef321d8b1048a085432d4f6eef3b7e0549335dd9a8
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_diacritic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_diacritic.h: 
+  copyright: ''
+  hash: c22e31f490d3c3010b02a8bd72e1f9d47cdcb168d70d30b805d732b343b511aa
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_extender.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_extender.h: 
+  copyright: ''
+  hash: 7454c1a8c7e88851161788171e398142fc47d8bd1c23e62960fa7d9c0c991b33
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_format_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_format_control.h: 
+  copyright: ''
+  hash: f060d73220f70a9073c426b53a1c1b77d83d62d53b2c20c8ed16a37dbec4466e
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_grapheme_base.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_grapheme_base.h: 
+  copyright: ''
+  hash: 61aa89df11fbca4b079e004f95edb176863f5f5bda22579d93489404b0f9a3bb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_grapheme_extend.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_grapheme_extend.h: 
+  copyright: ''
+  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_grapheme_link.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_grapheme_link.h: 
+  copyright: ''
+  hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_hex_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_hex_digit.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_hyphen.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_hyphen.h: 
+  copyright: ''
+  hash: 1cfda6a60e4fbb2baa92f4c06e315f40f4b685e0d1330afe5788de693a79afdb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_id_continue.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_id_continue.h: 
+  copyright: ''
+  hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_id_start.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_id_start.h: 
+  copyright: ''
+  hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ideographic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ideographic.h: 
+  copyright: ''
+  hash: 91d9bdf96ea6ddc4acbc5e4dba0610a5f9dd7cf5121431e1d34dafbe7e715f36
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ids_binary_operator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ids_binary_operator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ids_trinary_operator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ids_trinary_operator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ignorable_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_ignorable_control.h: 
+  copyright: ''
+  hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_iso_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_iso_control.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_join_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_join_control.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_left_of_pair.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_left_of_pair.h: 
+  copyright: ''
+  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_line_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_line_separator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_logical_order_exception.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_logical_order_exception.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_lowercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_lowercase.h: 
+  copyright: ''
+  hash: c49d818a753284b69b8292112ec7829b4973d7c33cabb0b264bc3eb7193f2e2a
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_math.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_math.h: 
+  copyright: ''
+  hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_non_break.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_non_break.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_not_a_character.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_not_a_character.h: 
+  copyright: ''
+  hash: 69c1881b0d0172f2bd222a8d49636e2525f8c53af810fa281b7bf91d2cfaef79
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_numeric.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_numeric.h: 
+  copyright: ''
+  hash: e82cebb512f6ebca3baf39cf0cfb1d65899d1000520acb30b4c4c52fef800dba
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_alphabetic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_alphabetic.h: 
+  copyright: ''
+  hash: 6eed9d08b80ef5850bc90bf4ec966d5e32a1f13697b484b978c1984ba200e200
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_default_ignorable_code_point.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_default_ignorable_code_point.h: 
+  copyright: ''
+  hash: 670e3738c51a7b91634167670f9f9f7d24237d3bc2d1def297357bed948de48e
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_grapheme_extend.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_grapheme_extend.h: 
+  copyright: ''
+  hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_id_continue.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_id_continue.h: 
+  copyright: ''
+  hash: 68dddcca5a9cf7a98b19f1dbcf36daedc23cbb189126ba3d560fc72cadddf7e1
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_id_start.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_id_start.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_lowercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_lowercase.h: 
+  copyright: ''
+  hash: d5edc016b278de0f7e45c4b97282e69eeaa7e2dcf8ccdf80305e0631a2265331
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_math.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_math.h: 
+  copyright: ''
+  hash: 29e60ffb17e0d28d6faf0dabcb729b97f9ea2640083c733e9d5bb80550af024d
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_uppercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_other_uppercase.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_paired_punctuation.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_paired_punctuation.h: 
+  copyright: ''
+  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_paragraph_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_paragraph_separator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_pattern_syntax.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_pattern_syntax.h: 
+  copyright: ''
+  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_pattern_white_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_pattern_white_space.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_private_use.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_private_use.h: 
+  copyright: ''
+  hash: b579ae087c5f5d39920557ccb10ed9e3e85c9a37d1579f40c7e51b7442503680
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_punctuation.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_punctuation.h: 
+  copyright: ''
+  hash: 879fa687217ae7978e17cdb24937d63ed1b30c34acca5d08c249fb2aa2bec067
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_quotation_mark.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_quotation_mark.h: 
+  copyright: ''
+  hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_radical.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_radical.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_sentence_terminal.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_sentence_terminal.h: 
+  copyright: ''
+  hash: ba2398b9115f8b18f76d9aacaa96041ae918a63b2834f16d66e586276b3b6afd
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_soft_dotted.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_soft_dotted.h: 
+  copyright: ''
+  hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_space.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_terminal_punctuation.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_terminal_punctuation.h: 
+  copyright: ''
+  hash: 8a1e71d67eab269ce9dc3e2893389f951c1c2a7c64c1f722df6206f210ee662c
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_test.c: 
+  copyright: 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 1f771b18097da3eb006ae20cb5d9a4088eae2d181a611500ba400e2d8ec2df5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_titlecase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_titlecase.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_unassigned_code_value.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_unassigned_code_value.h: 
+  copyright: ''
+  hash: d60cbdaeaf6f4a9135cbd2ec2066e26df90bf74818e2fb55771b0ea03d148c4a
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_unified_ideograph.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_unified_ideograph.h: 
+  copyright: ''
+  hash: 4429500f5e5676e777499ce11cef619f91b5e880a9dabd1669bca41d0718d5f8
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_uppercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_uppercase.h: 
+  copyright: ''
+  hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_variation_selector.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_variation_selector.h: 
+  copyright: ''
+  hash: abe47e0d33a6fde0c278a443c6255038d6cea6574c38f56dd5d7c1a4fd4a91ec
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_white_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_white_space.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_xid_continue.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_xid_continue.h: 
+  copyright: ''
+  hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_xid_start.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_xid_start.h: 
+  copyright: ''
+  hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_zero_width.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/pr_zero_width.h: 
+  copyright: ''
+  hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/scripts.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 3fcb47fc8c55790740bf21cdfc85cacb89c92805b7a0692b5d331d04839c7431
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/scripts.h: 
+  copyright: ''
+  hash: 909da48adc878aafd8b39b3ea48765c54e60373f9511c2132c27bb2108fccafd
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/scripts_byname.gperf: 
+  copyright: ''
+  hash: 2957f52be908b9f9a16d6385681ed2513485321c9f2d54c8d365790acb1236e3
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/sy_c_ident.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/sy_c_ident.h: 
+  copyright: ''
+  hash: 9a50ec74eda18bc573df963aa5bae900789cff2ac4b9193674828efc5b802f69
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/sy_c_whitespace.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/sy_c_whitespace.h: 
+  copyright: ''
+  hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+  license: ''
+  license_text: ''
+./lib/unictype/sy_java_ident.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/sy_java_ident.h: 
+  copyright: ''
+  hash: 0f004bb9bffa1f06d3a475612c9cd4f5f5df347a81109f243602e9360583f592
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/sy_java_whitespace.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unictype/sy_java_whitespace.h: 
+  copyright: ''
+  hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+  license: ''
+  license_text: ''
+./lib/unilbrk.h: 
+  copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
+  hash: 2f408b704e7b02de9b9a8224c0bf0b93bedcb50b13ea7f824895f85f9c28eaee
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/lbrkprop1.h: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+  hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/lbrkprop2.h: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+  hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/lbrktables.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 570dd537a8aad86cc9f03b3a187de16b187fa22f7de51a4c78b10bd8513b5140
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/lbrktables.h: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: cc2a66b6d3c60a6a4bc00cc2cacead4543035a5c9a1c2c1dcb6310525ad50d3f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/u16-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: dcb291f946f60f8ce400b0cf6612abce1f55d7525d62c20de92e371964fa2a25
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/u16-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: 858930664890823e81d8b0e0713d7edc3770a87b4a54c5ea4bffc97ae40cf765
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/u32-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: e5d81325f7140b2d7980081c9c1b1bfe027d481b42d41b84fa859e689614604b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/u32-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: cb3f972142bc182e67f148e4aee254b9d86e402a8c980d6aced66aa70785fdea
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/u8-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: e914e04b1abf7f5737295a9365605c4b321978c304d4f779fcbbb02c5ff1558d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/u8-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: 8250277a0f84de0b4416a1e30345251e466e2245ba64e63269d38d0ec4abdf7c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/ulc-common.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/ulc-common.h: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+  hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/ulc-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unilbrk/ulc-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniname.h: 
+  copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc.
+  hash: 271fe75b63886d9af9730fc72bcecc8bcf121a97946be427032f4ed46d2d2711
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniname/gen-uninames.lisp: 
+  copyright: ''
+  hash: d28d41fa6a3eef2669af73aaeb8ce7e2479501eff9b820f3649344dceec287b2
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniname/uniname.c: 
+  copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 96556ea7962ce3b99d5e5559021018733e37096b261e513193d63a30e5ee4b2d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniname/uninames.h: 
+  copyright: ''
+  hash: 5cc016a12ea5182eb761959d10e5191aca3a76fa8980e231f2449ac38c1ea1dc
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm.h: 
+  copyright: 2001-2002, 2009 Free Software Foundation, Inc.
+  hash: 811b4d2f8b8f36161342c743db5c5509ac8b0043c13551f7a52704c707f135c4
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/canonical-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 87f0bcf9df0580072c9e56c9b085df3d8e09770d61475e329c904bc2b049e5cb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/compat-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: be35616c47cb657687ee31b508418eb405d8e7175ea0c7ebda9c83d292ee0f76
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/composition-table.gperf: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b4aa8605984c2a64f166ac2137a7436cbcf969c067088baf3efc3099cd610685
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/composition.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: b056563f0bb123c409b7ebc8c15d83ff328c9f985c828e088794b6779686593e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decompose-internal.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decompose-internal.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decomposing-form.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 34162fc9b81dddd60e3d1768a87407a9c58c7a4246f8131990655af950eb8fa6
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decomposition-table.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decomposition-table.h: 
+  copyright: 2001-2003, 2009 Free Software Foundation, Inc.
+  hash: 7e5319f3d15b429b3ca981cb77d13a14e63eb6d91c87b6896bcb4b261f212864
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decomposition-table1.h: 
+  copyright: ''
+  hash: 295f82a865c8d38feab20d2d0ef7c344f2af45d2a8a6e47aaaebfccfbb53cc24
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decomposition-table2.h: 
+  copyright: ''
+  hash: b855a154049268ffe6cdfea458537883ba134e854cf00d17be5ab3b2b3559f4d
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: afe74037d702264dada2f09f62b6bcd009116cbade5b92da86a092ec363709fa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2c52442b51c53cae04d69af55fc465368ef6cdea78236bbd9e4ead35024be8aa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 7e203b8f3ad1ca16886b641a503c7ef40c63839f2c5013b377ee16191eda890c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 96fca2de089de494f5189cc1b6baba83a22050a2f73680251f883dbf4f29c4c6
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/normalize-internal.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: dc3a239e87668655e6ffadf04e4e625525bb77f3159f49970bfe1fdd1fb742ec
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u-normalize-internal.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 8948c5a1ae3c902f7399c23c670da87e46b5538a4e44cea25fe6092fc69e57f3
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a38204b457c2da606da593fbe185d2697622fc39dfa9938580cfc4d21f8fd9d3
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u-normcoll.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d15873e9d0f8361722b856cc6b5a4b141d8c153651a1cb1694c28c0be3fdf15e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u-normxfrm.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2995d01c87bd38694e454d2aa7acd9440bb01ef2fe3775c2ddddfd9a2055d354
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u16-normalize.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c4417f93ba857c0341ad56a963370ce1ac8690dc8d56ea8704d42bc0f4cd57d4
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u16-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 70b5b38d00121704a5bdc8dec6c3510938a1ee773296c68bdf4770a9d3ad3ba2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u16-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b2a6a3dde9a5d277817a7bdf3a9da9cba9c5af84d43f02b8de59972c0efc6e06
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u16-normxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6a535a6e2b2866d4d2f674604fdec7c48cd37a7d26d1b28aa56b1b55cff64d0c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u32-normalize.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 21948dd01001327d66a37ac6a8120566d704ef23efaf3a32134244e0e8b297db
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u32-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 3aee963a47e892f820670cbdde9841ad7809e3cb739fe6fe4a4eb82b337fe7aa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u32-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e05b8dc2bc7995766bf46052c4718b74c0ffcae0cac15dd8135777dd379c34f4
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u32-normxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6d8ff48fb188d7d15ae549430423f962ca47de75f2e3fa27d0c65099e653e5d8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u8-normalize.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b46220839acddb8068a99f781da004eeb988271397e318e6077f00e1b4d9eb99
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u8-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 88af27918ea6a884ebb5ddc98c75a2f01462cc627d489ca3a0387b2337cfff01
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u8-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 781e09bd1453b3872c591e97c19b1855dc70cee271fded19eef00469baede34f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/u8-normxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d59367c5c15d6f235b1e68265d3e3a57fef210ab8796ed36a04f40d08f302e3f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uninorm/uninorm-filter.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: fde778aae106254be586328ae3ecb4ee2843b387fb9bd68bd6e8ebf8b7dfe8f3
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistd--.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: adf5345fbcb95c5bb36d54daf54a986985f38945478711e734fb90742f8a5262
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unistd-safer.h: 
+  copyright: 2001, 2003, 2005 Free Software Foundation, Inc.
+  hash: f1b41b4d684751d4d0fd03bb4855a4ab9c168f72e25dbcab58fa5e7cf7edebf9
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unistd.in.h: 
+  copyright: 2003-2009 Free Software Foundation, Inc.
+  hash: a6926ba851d67cbfe9bc3f8f5c0a100992084e9d90ff1e51b25bd373b976d588
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio.h: 
+  copyright: 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 670451fad5381e7d81619f0268d7dcac2693a959612603a4fd77a67f102b98eb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-asnprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-asprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-printf-args.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: a27d294cbfad2286e039e9816ee9acb269f976fcc6f6c6f13a22d74056689600
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-printf-args.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: a6fe38b9879275d7c142bc95e0b7e4caed91ccce4714c11749fdd64ecf990bf5
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-printf-parse.h: 
+  copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
+  hash: 429fb79a4fedd4e52cd53cd4e50638cd94893eecb1b7a62844d082be64efe0dd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-snprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-sprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-vasprintf.h: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-vsnprintf.h: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u-vsprintf.h: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-u16-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u16-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-u32-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u32-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-u8-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/u8-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-asprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-fprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-vfprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistdio/ulc-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr.h: 
+  copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc.
+  hash: 13f5e38dabdfbceb3b445638bc8e99064f239e14e73d4e488187a92b7181157a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-cmp2.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 353c54ecf4321b660412e19cf505114ea8af7b940afc9fb4f817f32c73fe68dc
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-cpy-alloc.h: 
+  copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 33a2cf4d1751fb8b89c16c2e464679a25254a1da5aa823af5026981e3f9f04aa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-cpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-endswith.h: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-move.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-set.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ad540bb3c29abee866d49045d7549895c69e88f9c7e421fc288f06e683371efe
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-startswith.h: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-stpcpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-stpncpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strcat.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strcoll.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: edd8e7309806a8c6748205b082becf74015ca7a86a99f4abfe90fd29cafc9bfe
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strcpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strcspn.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strdup.h: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 29b7da996418f450dc43ca85a629a13e9f41b4e0759a3d26dee1f0f570cd1fdb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strlen.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 5ab8a4c4f7df43b1ab702777309a99e463464ecbb02813a12c642b680564a3eb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strncat.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strncpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strnlen.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: c2287c09b8102ca5941250c212c3065bc5f0310d5047a6d4c540c3d8bd55c71f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strpbrk.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strspn.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strstr.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: c6fe6020affec0baee70c698a6c983e4924b5b578266c453a7aaf55cc23e2a1c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u-strtok.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 124e2d5c65832f8f2b09cb250453ac36538f42bc04e58097b83683954a9fd220
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-check.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: c5ae8c4ac9aa94462744b11f56b7d108a26665c45bfb27222547583236670660
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-chr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: e3329f60b17e2dfcf738c0ab4d315772c23c15c736a185ef7c9dc9896095d74b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-cmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a178e2ef622d6775701cd298960a8dccafa331ca0d80c79fcaa4de012bd5b28f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-cmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 2cb5dfa391e0c72cda11f0fb2350422ebde0432a2abf811e5941c06223b8cb67
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-cpy-alloc.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-cpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-endswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-mblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-mbsnlen.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 1cdbe9c2450930156e5c3b60065663d3280f3a42a62725b5208c39ced2b34318
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-mbtouc-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-mbtouc-unsafe-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-mbtouc-unsafe.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-mbtouc.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-mbtoucr.c: 
+  copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 2b36b04649b3581ad0cc9161ab1e4715a48625e133a0ec6f539ed6e91dfcf628
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-move.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-next.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: bac4e802fa60437f5741d1488d912d2d731d12795334311793de72c042b1614f
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-prev.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 966105ec4cf71caa305c1b9bebab2829b77a48e5003424e4c013eeea374f9328
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-set.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: c5bb09f11189403180a6576abf7d68fb059968f7f39dc4847bc991ac3223f6aa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-startswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-stpcpy.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 6a2cb6d1b10aa92814ff9ed6e973f7c9a0fa2bc7f1465286ac1e39590cb45b73
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-stpncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strcat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strcmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f617d544f7c4374c658b004a34b75f439c8492b5d53e032c89fef04f11982f8a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strcspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strdup.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: a9ceaf1d9ede8791c7f986d76c2bba8ed75106e4a6bf10665a66b95683bac6f8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strmblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strmbtouc.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strncat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strncmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strnlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 4eb212ed57eb468178f80781c20209a087129a621a86543b3c0ec39b4ad5d8bd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strpbrk.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strrchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strstr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 63d133e15b867e7895edd2352c173567fe0d265932e367156cf3be247cb76d49
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-strtok.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: b3612c8df3c80589505dff2b00de24316e2ec6ff9c42ea3e5d1b3d0520ca0b2b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-to-u32.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: c888c31db109f599e0d02beb4ef0ce5f61c56ddaa3ece94bc5b9cc4b2516c852
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-to-u8.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 59a93e5bcafc66d68def3b14157e23f301775715a31659046cb4e692b8800674
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-uctomb-aux.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 02b5c6e86d0a8def7f78e1a70e0f104a3e283bb1d7a2de6223763bcde8845be7
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u16-uctomb.c: 
+  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+  hash: 88d0197e480ceaa71d8fc9a34aaa68463f25d20524f758f55c023108338967d8
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-check.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 685489582302507fc4d2a831d903c752d9a900d2380f8bc33e8babeaf6a7637d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-chr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 3d390e18ce2a42908d41cd6f2b9a9386775538654e35534760251a9e5528b952
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-cmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 7c6276b59ecfdc1dd63882769b6b4ccf919c844520679d75c03d00ef01610243
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-cmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 57babbf34fd1be9100c5c49c352d468779d176c16711bf88df426bd0b0ecdeb5
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-cpy-alloc.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-cpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-endswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-mblen.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-mbsnlen.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: e2d35901a65cc0a9ef634e286369d131cd95c820698d2cff405423031ee4b9ec
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-mbtouc-unsafe.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-mbtouc.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-mbtoucr.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 5f2b794282efb3b432d0c8a917dc1f4f498a1c2f89392970a62db00da6c71abb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-move.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-next.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7ba432d038ecd2515356b8e70fa519d4cdac9e76b0d6e93a8a537ef4fda17448
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-prev.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 1508e6ba9768221299556836be8fbc1d5791cc3115cf08850ac9bec8623c918c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-set.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 3dd041a6e485dbcd0ea0984b44bab7767b28a4665038ddf05b9955a2d6e6a596
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-startswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-stpcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-stpncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strcat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strchr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strcmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6420d21bdaae7143502fa4278291a88e2834749b42928b0df438fbb4fc3b95a1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strcspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strdup.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 050991d876a33888be18fc49d7ec4d1146ff674decd9c3b4a3f1a1f9c168e632
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strmblen.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strmbtouc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strncat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strncmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strnlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: e1a20f548b672e6d0aa8b7954bc31b9c2157c4204b1e7346a250ab8840e7e356
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strpbrk.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strrchr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strstr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 96be8a0f8ea189120bfe1f5c10629c0b840b2f2e9f64c54df9fce677f701d887
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-strtok.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: dedd8fbb7d1265bba868dfd5099d076b6587298e050805ec6eaced0ab5faf332
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-to-u16.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: c34e87d4172d3339a781e39d59f8fb9132c09ef980f44c2b1574bfafa685cd66
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-to-u8.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: d5933d39852f021cbafa03fcd622fe179fbfa3d2b7160e25a2a0f9cf649b331a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u32-uctomb.c: 
+  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+  hash: 34f3faef9d257a051c8d8272922f3e20f5fa880baea40b25ba02a9256e3b74df
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-check.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: eac2b052e4d9e60b9eb93ae9ec997c386e730de4bf3194fca888eba17a103f37
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-chr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 42ec57a2ff9ac547a74c24b611b35ff9d2604edd08dc27f2eec1d887c295d1bd
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-cmp.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: fac6baf649d3fd3670f2fd9aa97dbd2dfa67d7311eba66c76fb96874a6a6f2b9
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-cmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a93c38c1183febaf9ba16e653abf0df27e59ddad5f92762b2ba9e3f6deda64aa
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-cpy-alloc.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-cpy.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-endswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-mblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-mbsnlen.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: d777639cdf076ed27839f1eeaabd23eef4465185239d987ba767f2a866c300bc
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-mbtouc-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-mbtouc-unsafe-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-mbtouc-unsafe.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-mbtouc.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-mbtoucr.c: 
+  copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7eb628bfecb6088142dbddc04daeb302c95a2a16ab2f4ce7fe96ac6515d1f822
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-move.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-next.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 00d3e25ac3c18c5d77c1d250c8220544e99fc346a8015da6b43e3ffe5014baef
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-prev.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 3d57d758b00dd01225b001edc0a71b3e6a7dc55957f00b1a5bbc950ae037f281
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-set.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: bcb3f22a0098c66883640efdd098aed40903b82c9a5d62b7d1936a805148d2a1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-startswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-stpcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-stpncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strcat.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strcmp.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9c5e8a7ef380723d07e0ad180fe59421bf9bf28e1a4d289d05263339cb4025d2
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strcpy.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strcspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strdup.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strlen.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 3f5efa4cf915f83bfdc9adfac2a13ca7d3c75c63c4fc993377e9dee1b36e9f13
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strmblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strmbtouc.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strncat.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strncmp.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strncpy.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc.
+  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strnlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: e591a71a08b4377ef29017795f592adf1ebf56caa73d172428942ed3d8735e53
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strpbrk.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strrchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strstr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 62e3171131f084bb524e8e4b7b677e51dc0a4ddd7920c791e861fc6209824057
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-strtok.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+  hash: 70422453328ab4382d464bc5e573a7921b44d303c4da2e58aa0cd67c8285ba1d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-to-u16.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7743fd5caa826417f0cc0e0da91677000cd23088c2b345a21a27aa43b0b595f1
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-to-u32.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 7308a76a0f28176be9098511a4dc13f5625aa399c70a8bf9993f78ddf7b319ef
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-uctomb-aux.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 44e95c47ddf3343b1c02157c12c9a0a950852563cd543850488cb21944559e11
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unistr/u8-uctomb.c: 
+  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+  hash: 60d6859b731140e5420ea2e3093e3ac272522cc9685459a9eddbdf4909d79f40
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unitypes.h: 
+  copyright: 2002, 2005-2006 Free Software Foundation, Inc.
+  hash: 0eaaeed4ca0138967cd6fe4e6956edef837fa8461248425e893e1fc2fa0cbfee
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk.h: 
+  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 43906fff693dfdb439dee0927665138c03553941b19dec5efbca942a96aaa603
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/u-wordbreaks.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: fc09df77911b0e107a808ffff910b9e323519e9c45a98f3c013cf11a38865d20
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/u16-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b5dea0d0ecc05dcf54c0de70762cc9cde64ffa38e40aa9ddad0b8a84d01d2c5e
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/u32-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4e66094a2b8797f527af80fd87fed6a222d621c8b8acffe7f7bdd9684fd5ac24
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/u8-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 00a1587322d98dd8948a091a85b45d8ebc70469f9e8c58552e3ea591b1908786
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/ulc-wordbreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 1f3d4b29e74270464b552516539bd93bb486915d5e06e59452e3f58b1732d324
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/wbrkprop.h: 
+  copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+  hash: d8007020c5f8a08911ff92b7ff5bfd74f9448c47e568b430f2f1ab7999fc0d87
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/wbrktable.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/wbrktable.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwbrk/wordbreak-property.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 4265f2bbb6cd20db8b5b6034d1d7da59b5a2b943cc9543c158091658bb61a36a
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth.h: 
+  copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc.
+  hash: e4c6ff2cb013a8b2de23e758533e34077d64fd62e6c4098af88169ecd9ca1425
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/cjk.h: 
+  copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
+  hash: 6d886d39c5a9bed7c747138b4025cd035c6b59163b1632e3eff5be730f9db943
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/u16-strwidth.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: 25a3cc5a8562b7025075a92b2acd9499fb20191bfea045cdfbf6ab778fcd2130
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/u16-width.c: 
+  copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 6447db6c2460f0cc11bea62a47e273a6cc33ca44ecdca0e7c640756cad86fc70
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/u32-strwidth.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/u32-width.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/u8-strwidth.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+  hash: 5e92bd8858f143e5c3888e1890f467f6b2a077b1c6e5622e888cdba7922207fb
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/u8-width.c: 
+  copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
+  hash: 5992f0453d5de4d8a6ba85cd63b8090006ba2c0b148afd9e07ab6d5dc36dea0c
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/uniwidth/width.c: 
+  copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
+  hash: 8f8187cd1a09e3412e237881244e68c314bcfb39c5c851ec7f251e17742ab6ab
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/unlinkdir.c: 
+  copyright: 2005-2006, 2009 Free Software Foundation, Inc.
+  hash: c9c22134c02523e933f8d5d7ca013d594047f1ee23b58a5ae39377525f9f046e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unlinkdir.h: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 02cd119ca3d63148dd23165be0b728a05b4dc02618dbb0d81782d83029dcf4ae
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unlocked-io.h: 
+  copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+  hash: a68721dbc7b80415c8f613c429da32c306e587ca487707e3cc920e7e34ac13a8
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/unsetenv.c: 
+  copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
+  hash: 0b078599d4ea56fe10c153183b0254ed4945619c4c08c9ce35d5b32019d920de
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/userspec.c: 
+  copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software Foundation, Inc.
+  hash: 87e09ee21b48597c439740bea48e07ce2dfe3daee61e331c0fea028a4572f53e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/userspec.h: 
+  copyright: ''
+  hash: 8fc9e48846b3c4b567f7da8a4b872193d48989f6861b60277e4077a61585ad55
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/utime.c: 
+  copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: 0200b3aa44e66773c0cde9fec4a180d0eb7111465207468fc42520867fb69e64
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/utimecmp.c: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 513c0e1f4b1f45d732838695ab385c411afac14ce1c8841ad8bcc3855d16900c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/utimecmp.h: 
+  copyright: 2004 Free Software Foundation, Inc.
+  hash: 4f328c1b87b0637f3cbb0c01968bbc5ffc5350b420f90f7f51de75d6872837ae
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/utimens.c: 
+  copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: dd356a50d7062392a2b51927c4e390f09e3cb059bf0c2702ace1865130b3f136
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/utimens.h: 
+  copyright: ''
+  hash: d065c418d4fc1dad24e122f61cd9c4d59db9b05a6dba7ec8c17a8fd0fd9d9472
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/vasnprintf.c: 
+  copyright: 1999, 2002-2009 Free Software Foundation, Inc.
+  hash: f826f12032ff66714226a5c720dd2dbd1d645ba0536b39dfbea651b792404c5d
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/vasnprintf.h: 
+  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
+  hash: 2bf66b7f11449085cc6395a5d6d60496f6f13b08aa0187a5f52e9252e6cab2fa
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/vasprintf.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+  hash: 48c7f19d29a46ec6dbaf09a38b3ecbde38b8191f9bca32208ece53a6b2de08ee
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/vdprintf.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/verify.h: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: a231e15e8b20379f38be81f4674fec177045e91abec1cc68481b6eb081c51312
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/verror.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 2d2abd16891d68fb47a4f777060632ab389041f3cecbb9b5cce131f889f0fa8a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/verror.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: bfd2d5bbe94db1c367a3e3e4348fa2597a1c980ef1f74c10b7082ae569d56fb4
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/version-etc-fsf.c: 
+  copyright: 1999-2006 Free Software Foundation, Inc.
+  hash: 2200910e2dfcad20e1ed7fa171431d1ee58058ddcf354bc54b58c6f812ece50f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/version-etc.c: 
+  copyright: 1999-2009 Free Software Foundation, Inc.
+  hash: 54f16006d89e39c40e5de0ff2f87f3f8a0498e25d2032fb2ef3b3e5c8a7f8bae
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/version-etc.h: 
+  copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
+  hash: 8fe8c52a2462c979791b9718376564da4abfb5e764de7bca57ec4ff85a97dfc3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/vfprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/vprintf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/vsnprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 2be1271317efe1b22a2d9f18376d0a225658aa69ce7d86064c5a767779711336
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/vsprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+  hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/w32sock.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 1fd87a23e6def0b721fd23be4572dc15592716c646eff400eb8fa64fffda4962
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/w32spawn.h: 
+  copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc.
+  hash: 010dd0544b69c6f163c5243a3b721ac0e3d23cc3e1b9ce1a8a30fce6789b7e6a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/wait-process.c: 
+  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 580ab33dd9e9ad4be37f0440dce7774cf758ac9eef6725756be9a2d08481b529
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/wait-process.h: 
+  copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 9c746de4916059b6ca40492142d370bc7006d4b8f032ad0111f6db7b0f653306
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/wchar.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e2b50e5f1a1293246463b729146da631d3afced4d48e395e00d38ccef20ea230
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/wcrtomb.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 10ecd599d0542d9a8001cca8225ee9c13514679962f22a531c75270aede87343
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/wcsnrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/wcsrtombs-state.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 04a4e1633ad0400f2161a87e7cf9a6aed6f826572214e001af1c7dddc850d7aa
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/wcsrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/wctob.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: c1b08427605521353fd457e9a00f2c3c9b08f1b424e5a75a9186d803debec1b5
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/wctype.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: af0dc33178ed26851e8f3cb509f0acd760c6d25a876e8dc19ddb362d74ea46cf
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/wcwidth.c: 
+  copyright: 2006, 2007 Free Software Foundation, Inc.
+  hash: 0aa6edaa085279cd62d2af3087586c8d95c4a611a683295b382144145735fede
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/write-any-file.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 91ab05c6935f8e51a763879fb79b2f3e9a68d664409800351c677574461519ce
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/write-any-file.h: 
+  copyright: ''
+  hash: 3baee9b8366345680cfc53a87f5dee015146c4255cee16b96803bb3f26cc9d2c
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/write.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 862d3fd531460e25f2438bd1a28cf38b2f681566dc0e6eb1870e0c903173909c
+  license: GPL-3+
+  license_override: LGPL-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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/xalloc-die.c: 
+  copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: 29f127d04d8c8d1e5999b7a07f26a3c5a00f5162135417f5956adf7ef53b7578
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xalloc.h: 
+  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 671d0dba30c52a75befe251993cc88c9cd3c9d5c047bf49267ccf26b133b4fa2
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xasprintf.c: 
+  copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc.
+  hash: 8f74172c8681a5c0982e04312d1ce3104bab1aef39016d11869f0176d5fd27ed
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xconcat-filename.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xgetcwd.c: 
+  copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+  hash: 07b391c85dc4337c756a55eec0eda78ec9cd0e0975b181a48c5029c172a023af
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xgetcwd.h: 
+  copyright: 1995, 2001, 2003 Free Software Foundation, Inc.
+  hash: 291895105e1bb54b496008ad5954bc8163c0ac56b8287f27e49adbe54e9ed0cf
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xgetdomainname.c: 
+  copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: 088792dafaec8531ae554297ad6ae5d481593dfab6921835648a8bce17c0c116
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xgetdomainname.h: 
+  copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
+  hash: b26e437c9a8e6901a5034314c104978730a0753855f02e620edac0428c35b0a0
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xgethostname.c: 
+  copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 2c4e8d5075dbcfa989f2855a9f231d4c98065036c64acf489b1449f4a3af9c39
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xgethostname.h: 
+  copyright: ''
+  hash: e9a81c8fca91ef7a8fd72e8246a5fe6367dba77986f6935a318fe7d551ab1e7a
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xmalloc.c: 
+  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 25035c1bcf6b0d4ab5f9894ec09f8312b715a2e72e95d7f56b4b9ce41f53aade
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xmalloca.c: 
+  copyright: 2003, 2006-2007 Free Software Foundation, Inc.
+  hash: e84a48177ef61605b6eed93be0310de6dac9146bbaf454bd7fb6caa1beb416f5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xmalloca.h: 
+  copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
+  hash: b8589d4f03fc2e4441ee611dd5596e4a3ac0657bd6974d6b21e95d435aef8f6f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xmemcoll.c: 
+  copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: f6215d92c92b8dd0afcb4da7a17068eb6b7d997bd3b8f7a3cf6e3e0ae25ed83c
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xmemcoll.h: 
+  copyright: ''
+  hash: 06a32178ba593d8d983c9d741edf99f4a67fa37ba8e8b45cfe60e796fe6e9fcc
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xmemdup0.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 244bfde7ef2ec650951db25d48ca2a94b61b77db3692c001b316f58057af7d14
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xmemdup0.h: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 0d3d9d1a970022933ab73db3375f0cc46e5fbf23a16ad79242cbd6461110201d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xnanosleep.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 587481ebf1cf8ff5a01e7ce8889b66fa2be4a4c631fd020f2df12deb6322f814
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xnanosleep.h: 
+  copyright: ''
+  hash: dec8f8b2087a79c9bb77d7f89d934625f2b83dd66bbfda194299b351baa1a38c
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xprintf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 53c512f199ddd3f96147026f3ec162d4a4795ba009341a77dc173cdb6652a06b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xprintf.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 6d16969445a022a51044c272fb9aeefd3fa1bce9b54006cd10226a704b05f6fb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xreadlink.c: 
+  copyright: 2001, 2003-2007 Free Software Foundation, Inc.
+  hash: 3cb513689749db6e11f0f29fbee0e970aa1b69b3b1c1ab4b7ebf35f70eb59525
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xreadlink.h: 
+  copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+  hash: 0137f3b154dfc2a56910915e2522eb83920cfa9dc1684b241d60fae327d93f9e
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xsetenv.c: 
+  copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
+  hash: b18f92f3404ce0f52b6536522986febc64c972fbea548ba151a12abd0550c875
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xsetenv.h: 
+  copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+  hash: 02f0e5d1c1bee87cfcc15ef5d22da97530a2213cce025f98bbd07440a9346aad
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xsize.h: 
+  copyright: 2003, 2008 Free Software Foundation, Inc.
+  hash: af3fdcacfe8f3dbae26f9d806b0a9b2274f86ea7daed7117f09e29858b85d38f
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./lib/xstriconv.c: 
+  copyright: 2001-2004, 2006 Free Software Foundation, Inc.
+  hash: 42d740ec07e24b23ef7e205783f456e0ab80a5a2d716e4d045408b73365440a5
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstriconv.h: 
+  copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
+  hash: 07f01b89d3917786fdb52af236bc0007f98425b6167f083f2440d19e17dd3c5f
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstriconveh.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e35dae25c1d50a7d5d5b3df39059abf308145f43ae4e85ba73931745e7017995
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstriconveh.h: 
+  copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+  hash: f64f01e0d0569fa1f4c52371b10abc77b255d1a578f06d141d682561ee8c28bf
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrndup.c: 
+  copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
+  hash: 0fb519e75e481ad8278a17ca05d2a40e377c265586ca996d18c4a56ddd4c2697
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrndup.h: 
+  copyright: 2003 Free Software Foundation, Inc.
+  hash: 41aeea4d051e789e9ee829206990c84da4e6ab74f5a5ebbf1e7444ecdb2e7093
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtod.c: 
+  copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 7433646b920b02364625fd3d4b09fb30c050b37a3c73ee2c644d63ee95bca8c6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtod.h: 
+  copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc.
+  hash: ace9d21f9ff0ac53904c27c990f62e2b8819a7776acbd67c3f05c6893dcaef4a
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtoimax.c: 
+  copyright: ''
+  hash: b2ce36a250657c54d51627b616310f70c9870fd5fc7941bf18d3924067f28563
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtol-error.c: 
+  copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 831f1f9013ce8fe06ea3685fd92d37cebc8125b91e0c87a93758fd5f4b17c47b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtol.c: 
+  copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 1de66c39110e53ed0f5d4cc2737b14547ef7657e0c6ff41b7d14bf71b617b792
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtol.h: 
+  copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 03fe7afdcf7063d6f46436f0ca5dc6cd12a9f6bac186bc36f3af26dd745995d6
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtold.c: 
+  copyright: ''
+  hash: 1a077cc54d4bfd4cee5ff0022623e5f8553d4eae977ca2f0bed5d0de5c51119b
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtoul.c: 
+  copyright: ''
+  hash: bebc6e6916fdada92bda5d5fd7a22c71074205ca0b8476130d540d9139a83d3a
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xstrtoumax.c: 
+  copyright: ''
+  hash: 70b5ba83b8bfc540ad4dfead90cff12b8240919d0e368c0ded31a409271b5de6
+  license: ''
+  license_override: GPL
+  license_text: ''
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xtime.h: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 93ba493c1b4263ae9363cbeabfe1a8abe0959b8380c740b34e3c4b3909c9f26d
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xvasprintf.c: 
+  copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 52187c5a41b1f31643add5fb4e3f204c74131d3030ce4b7668476584bc3075cf
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/xvasprintf.h: 
+  copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc.
+  hash: 43236f9f154af870f714a7b11b1f4955a7e1e7a2e9f322608e5780e185014f63
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/yesno.c: 
+  copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc.
+  hash: 89bdc0ba46060accf0008dc08a620a5629f006515f4bf5cc12a17775d448bfa3
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./lib/yesno.h: 
+  copyright: 2004 Free Software Foundation, Inc.
+  hash: f6ea7fda3622e6ce79f8737d3a6c12e11e9b077489cdbfe3a89e2105aa54493b
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/00gnulib.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 199b5fcd827c6451f70d8e1d1a64e314dbae7654c56b74f6588a5bdc54544e70
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/README: 
+  copyright: ''
+  hash: ba4cd61e99798f7ea35082c20cc09f366c65ec5fccfd0fed9f9d155cf7e29bc5
+  license: ''
+  license_text: ''
+./m4/absolute-header.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: cd06c8f2c0e593aea317496f932d01531368be33ed202d8f67fa9d07f592d4e4
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/accept4.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b3e97bc4b7996b0d54a8110f94d6eeb97c61532d392ee4edc10ac18bb4ecbea4
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/acl.m4: 
+  copyright: 2002, 2004-2009 Free Software Foundation, Inc.
+  hash: 2062b336b8b9acae4a5a7acd0bc88988e5d79d2868fcd2e28ef211ee2fa0844d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/afs.m4: 
+  copyright: 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc.
+  hash: 568ef913f651e507daaa7d5e2f78566ce66e4d1c1b275c229fbfe1810ea7e0b2
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/alloca.m4: 
+  copyright: 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 1c05b753d58a7541c6aabb8d0ae65e359233c6e0f6c660cee8edffbb50d0dba1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/alphasort.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ca5d108291340e87953a7da10112597eb36fe789578740fa3ce5266b621c777d
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/arcfour.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: a5713df7392190ea048a75a71afb1588cabaa6e3d6c1417961eb77168f44eca1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/arctwo.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 36abc4a75d5117bfc913d1a8bf2c5e8e8a8bc6d7286f1303ce8880ee46be3431
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/argmatch.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 4854bb865e261cec0fbb829700d2a7cd23fbebf0289ebf4a02f105691ccaedd9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/argp.m4: 
+  copyright: 2003-2007, 2009 Free Software Foundation, Inc.
+  hash: 21e67baca54a3803f21fb63836804e99e202c709dcbc16d3ad6a7b7e272a3381
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/argz.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 07bb623d7aa89977ca15b1d78a201ca4b7b4762561dac92466c89d0a65c17336
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/arpa_inet_h.m4: 
+  copyright: 2006, 2008 Free Software Foundation, Inc.
+  hash: 50b6027adea6ea1c675d502272095e88d7dc11f7e5ceca51ec845c4aa15295a5
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/assert.m4: 
+  copyright: 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc.
+  hash: 9939631ab7942c8ec4fe23d07695acdee8af208c98c7c15871b671dee73aaf8e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/atexit.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc.
+  hash: 8085939167e8cb64ea4d9d89a945f2cde32d6b68df8fc6153ed1d7b8d1512597
+  license: ''
+  license_override: PD
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/atoll.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: ba4f896e8c9fb0a4bd310145ca06ec6cf35be47f96e9e6af01ba1eb817fa40b4
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/autobuild.m4: 
+  copyright: 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: f5a4a593a144c5649aecf131a8cd7921e8f6c6f5e7dbfba1343aaae61734bd59
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/backupfile.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 08bbe11639a7958632ef367b118a0616b7375a316d87e5ef868c26ebe410ea2f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/base64.m4: 
+  copyright: 2004, 2006 Free Software Foundation, Inc.
+  hash: f0a6ca66fe9b14a51cd93f1f25116d916ffe72477c4f6cc44ab0f660d9041459
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/bison-i18n.m4: 
+  copyright: 2005-2006, 2009 Free Software Foundation, Inc.
+  hash: 965fc67b33c005ee86dca5eecdd0a9497bbe1bd8b6720bc3909c72fea2e4ae5d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/bison.m4: 
+  copyright: 2002, 2005, 2009 Free Software Foundation, Inc.
+  hash: 894a0216128f06bd77d174d18135624574366e95de47fbc8921d6d504eec8072
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/btowc.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: a5eb4065f63412f6a83feb9e1f65a2a1f8e26da7c83823787165acbaf0137222
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/byteswap.m4: 
+  copyright: 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: c5aa765b7c6ccc3353870fb151665077a7e38babbeecd726d47c374b6030c142
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/c-stack.m4: 
+  copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc.
+  hash: 5f84f6648d7bba8f1b4a27bd6990d3121ad247cf746dd1e1800dbfea6f2a189b
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/c-strtod.m4: 
+  copyright: 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: f63125eb425fbf1a0f952fabacdb1cc92e8b73b7b535d827cf0238214ec38f7e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/calloc.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 3df4bb22fb92d400e022a50e89cbafc7864c637c4a8bdb540128cdd270263b53
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/canon-host.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 6e792084f158286ac4f73322ef6232e1d46915a0c9c1d49175ff0f95524d60ff
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/canonicalize-lgpl.m4: 
+  copyright: 2003, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 52633d2d1b4de8d850f6a261c9674850ad6b49a6a1cd0bac28a179df50fef773
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/canonicalize.m4: 
+  copyright: 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: bfb8373080498188c794855955e00f51ab9ba1a0f71f87a369fb782b100ecdac
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/ceil.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 99018f7541cafb7232e12934ab1020dd0c0071912a56b3a0e268f7c97f009c36
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ceilf.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 8a43f29a1a6f510ada6a916c12bc8dce19af13bec5252876c9ea5c451fd175db
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ceill.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: e7b2a8c6575e96a75b4e0b39c67c8045b023dc4e774d6db56460903035d99847
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/chdir-long.m4: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: a4f29bf720ac294a5e9815f9bf97d5b315066371d5ba0c1f73ea8480b87e1d35
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/chdir-safer.m4: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: d4d11a65f4290f666741af1268b3191fe98f808dc2542a5178b54ed4e55ed126
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/check-math-lib.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 375574fd5cbe36e53461e37f4abbae1347d1b94d1bb7fb713784f988d6509c82
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/check-version.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: db75405103fdbe9b17d63917d875dc924fd24638440bf489dd2e258d75c154d8
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/chown.m4: 
+  copyright: 1997-2001, 2003-2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: 9b3def56d60d2eebd5ca9f5e8163027800bf2fc01df3d092143caa00f80ffa01
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/clock_time.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: 19824aa72500f6ce1cd7dad2280d6742b8b97adf59dec61783b165208a384aa8
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/cloexec.m4: 
+  copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 4d4b571bd482f975c487221e5a04b89a98bb9ecde57248f8b8e6cc066718ae68
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/close-stream.m4: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 3091fb73ef0ac31a2cc908760c33c471d4e7a5c1283c03f5a69d5a82301043fe
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/close.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 7e1b55433c7364fb5ea4be276aa2f2761dd7b50c399d474f11ed787201ad29d2
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/closein.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: f58bf58484cebc1a8bc332904efa060564ca19565dde390c83faa28be18d672f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/closeout.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: b472fe6270917cb33de443e6130c9722c4f316f255f00a8a00f3ae37fab0b26a
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/codeset.m4: 
+  copyright: 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 798184a7fbbc98c7faaca47a01a72ef637da6852ab2ea8d9ed4b19ad8f83be66
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/cond.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: fc7299e2068e6ff7fb2c149ae8bf9720b040cf1ee5a6862dc34a9fc507a01556
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/config-h.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: c6cf92e91910d0bd085cf645a73b6ae7cd932ae193edb3c41c9e285aeb84122a
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/copy-file.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc.
+  hash: 23a58772c01c55b3d027ceae709201c9fafb97744dbe367577674e28588d64d5
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/count-one-bits.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 7cb9f7f46b3c69bd552292ce5a9d8ad5372dc27602d1adfffd765688bb918c6e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/crc.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: ac3b61507ffd5e75e6cb43ecc272a4c802c6b05131d7f8855c2a7509fc610386
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/csharp.m4: 
+  copyright: 2004-2005, 2009 Free Software Foundation, Inc.
+  hash: 3e03d469ea0a067f286a667d6fc8fb7c8e373ec8c6aa13b6b7d73d5ecdd411bf
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/csharpcomp.m4: 
+  copyright: 2003-2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: bed35278c23c7f90f65c2e1a03b0b535b14f290ba7007cc11f8c3c0a97b06d1e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/csharpexec.m4: 
+  copyright: 2003-2005, 2009 Free Software Foundation, Inc.
+  hash: e1de084636e1f5efc990513007c3cfa05561055efcecf49e159166249f61ea8a
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/cycle-check.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 08b0141983dcbe0af6eb3adced2241ebe8b6ab88474fe14396559bf2c280ee1e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/d-ino.m4: 
+  copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: ebc82fd998746123b58231e2d774d7709bbfc7594df11bbc8552c63a28b75c48
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/d-type.m4: 
+  copyright: 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: aaf8c30e46246b12f62710018b00b56cd4ae3ed0f1a0133325d2d727a75db56b
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/des.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: b9009b10ac57e2829610ad77f600ca717a7ddd2622a071ca3393ffee39f474c1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/dirent-safer.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0df2785f4f2c25e6850aeb7ae112f5292cb556f96c2d79c933b062ec5a840276
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/dirent_h.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 1e19ccad9ce6a2f856861bf7c23b8cd3e5a42edb574fdb4878ccb77562e5eee0
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/dirfd.m4: 
+  copyright: 2001-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: f1a40a07c8854f4be0b3f0f4deae0b1f72de8eb88ed8b30c7a938ad9c4ef1635
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/dirname.m4: 
+  copyright: 2002-2006 Free Software Foundation, Inc.
+  hash: 5e5b390ea6a0270ff48f6e0b985c95d3d178a29ab54c859758c87bd19b543cee
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/dos.m4: 
+  copyright: 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 0686518ef84a5fed6f1bb276c02d11c84efe40f4450b8b956b4b0f0f4af1f739
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/double-slash-root.m4: 
+  copyright: 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 00cf683e37d5296236bb31b34728935f45e051dd74abf695fda2272406f6231f
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/dprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 4d518e6a74aa81ddadb7111ad05a9447d5c22202ff954d6dca5964ec1e755cf3
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/dprintf.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 193180d094ccea061d44e273da365b72498002d167766c58b7ebe3d9ae421b03
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/dup2.m4: 
+  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: 7c4b1a9d5d67bca60012e759553f97b72a0ec7f8106e3881845c6545005cb452
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/dup3.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4ce79f58847153c5a32e74acc00c061c31a87fef94e418168dddb0c0641f1710
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/eaccess.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc.
+  hash: 2eca1bd5e8430964e61caf77d01a5abf3514931453355b3a99a513ba4203cce0
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/eealloc.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc.
+  hash: b48072eda4c415f4c70dabf3f484840e7dcb508b206b48b83d93b9646361d27e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/environ.m4: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
+  hash: 4283b25a258a4358150e4422f3c22bc4a5a95fd3b05c3864c656997f245d571f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/errno_h.m4: 
+  copyright: 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 4fe293d8c7486c74c2a6ec7b383c10f11e80af0ac1c6c28451e798a62117bd96
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/error.m4: 
+  copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+  hash: d8d8360113fea1e0eab7095a3331097070f8c4adf2dd86b5fd11dc22f73ceebf
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/euidaccess.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc.
+  hash: b2aa7901f1599ebf72d901afba98b9e218c1855b4396cb39194784aeb9051200
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/exclude.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: f157d5680a79611b130e7e6082cdfd076c29a03eaa43c6edc97cc8e5fe25a1bf
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/execute.m4: 
+  copyright: 2003, 2008, 2009 Free Software Foundation, Inc.
+  hash: d91a2923d49049f4b4d8e89e4c75b86ff3a90420e1e36337461f09aef719825f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/exitfail.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: c0bca886587d8ac9978c63a4cd4016879923984497dee2730b5c8cf3e14162f1
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/exponentd.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 5058bb832cabaa10e4a9c9d86746cf504a7f65f202f513d0672d569ca22365ff
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/exponentf.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 9959e539475d1417ce2a219cbace11d88034d81641007a866c4219aa5341a302
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/exponentl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 794a89c1dcefd7d2a44a7627ed950cc1de34a3439fb6104e42b476ef7ee745e7
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/extensions.m4: 
+  copyright: 2003, 2006-2009 Free Software Foundation, Inc.
+  hash: bdff048b894f22bac6a6632e68de81828283256a335be4b9e464e943190c0801
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/faccessat.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9f08b4c94c4a06294b64072a9e6b684b627b44440875f145615f66814fc0b702
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fatal-signal.m4: 
+  copyright: 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 2a78cb0997683eca979321f1f2eb2973b442ce77f106bcefa8859968fbf58f04
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fbufmode.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 47eae3094e71bbbbbdf5e844b7e46629cccefb272730dd90e15929281f04fa48
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fchdir.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 18dfd391edf590486365f2410fe2d2fb805d743a68136299ddc47fe80711db98
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fclose.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: cb8402f12d3a7e62c3e5617f98e19cc1c0ddef4904bf4d04467c445f5853ed0c
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fcntl-safer.m4: 
+  copyright: 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 125531e3fb7fa9ce62b6f25142454078fdc1653288e56dd770c0917c3e88f4e3
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fcntl_h.m4: 
+  copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 876ecbcebae308d5b51d7fefbbb44a0cc20781eae03ab416895c50118ad8d06c
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fdopendir.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5d0d75f6c33c69ddb9b253fdf2cbcb08752a3bca92d5a9e44cac0d0935f05e1d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fflush.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a42927338afd7b316951faf1c953daafbea033ab310824f84ecbb58383228f48
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/file-type.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc.
+  hash: 312a84168ac2f1b1c14220aeb335cf1268efe38307848c9a882c099a057ed59e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fileblocks.m4: 
+  copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: afc5994b8cd6b810f81c0bb605c9768ba3c724ebf1ac33b1940081b564db76fd
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/filemode.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc.
+  hash: 8dd4d3ccf500ebd64522a379c41fec1ed74e007244f7cd946dc9a8c6b0a95e4e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/filenamecat.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: ac5ada6787a8617ef2ca718ff8043193dda141d1d57be957af8840cd2ec371dd
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/findprog.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc.
+  hash: 90578a64ef1f6ce7f9d541fac5cb328d7f900ca600e1b1c491e97a729c4391ed
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/flexmember.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 91bd9e053632cf0678e82035378bc32d21c404e017c0cb13c1888887ccceed56
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/float_h.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: ed0472c9ce5a69206792765536ce26bf056cb09a0e4e00fbf6f92a804b92dce6
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/flock.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 46ec46659d20d4d889859493fcff0d6fa0adf9c0f714cf2e1f26abc0d5d26878
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/floor.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 1c106d3c05b2afa08097d196eed80b85166a5c7058ba2e9e36be6635d27b1cec
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/floorf.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: aa5e12760098221878cffc006320adffba688133460e279f740759c7faec4b05
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/floorl.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: b85a4fe69e190a88a16dd404a61599e8070a3b3bf9ab37c9690b543c81b629e3
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fnmatch.m4: 
+  copyright: 2000-2007, 2009 Free Software Foundation, Inc.
+  hash: 5ad2559cc52140959c55fdd9939dbda831638089cfc85ed96288f33906ae6f79
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fopen.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: ad0e94c6fd7ae83f339ed3ab8e1bff3dd2758d7f6031df649ed0b0b97f6e0be1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fpending.m4: 
+  copyright: 2000-2001, 2004-2009 Free Software Foundation, Inc.
+  hash: 15e76893dd5eb2ccd584f05adfd4d0bf825205860f2ff756e9e1020c18908f66
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fpieee.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 3f59244481168ae5dfff004b81aeb6f8c894e83e649b61756a5728bbd99f7c0c
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a6008d1598b7a24895a472734caac4147d7e0e83af64445440435d102702f0db
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fprintftime.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: b7fa3778dc0b75cfe801816cc9055dc7cf465859763cf969813048c198e5a4f2
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fpurge.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: f62512d54c7b8d9c80dd8cce01a414ff826212c7c2c6248a9ed3c7b633c05db5
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/freadable.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 3bf013bf28d20f59da11208e07e1df5b7bce00db26854e6f051e7d5d9f8accab
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/freading.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 1b93e3045ca266145966f8cc03253dc078a20bcc5718c4cbfb0143e96e71623b
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/free.m4: 
+  copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+  hash: a73accbd96194e981cf77ac3c837092a69e5bc17d503029f7289b87d3b368a63
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/freopen.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 5ebdad15bb6e2f7016d5c80253fb741aa55cd8d814b9540de1a847331950da0f
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/frexp.m4: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: dc1ae79deeb763eff6de3d5298100b251865503e40b019a89e3db089bcad3a31
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/frexpl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 9eaf5d91b7fdceaec549c9d2f9ab9d7e1310c826c42c98e3617d338820d46491
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fseek.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 31705112d71a7dca0c55e58f71bb7793f5e8c34f031a0c8c3a9e5fc4e02f831d
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fseeko.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 6395a4c99169cdd30546e688899aafb3463f40f644f76627f7faa5ae579e04ee
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fstypename.m4: 
+  copyright: 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc.
+  hash: febf3d78aaad07d686dc0df84606d52ac546108e705860bb0215d8ce5a405cc9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fsusage.m4: 
+  copyright: 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc.
+  hash: 3f4ff242e495ac68b8e83f016aa01d83f890eb555ecd89730b95db0b1519d48b
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fsync.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 77db5b0972952ed1ea04f93e7da8814121e35fe2dd6ac987ecb230dad1ff2e6a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ftell.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: d75a25a7df953391070aaf846037d45c4acd0b49dec2f2b6d5ffd42efa912d8f
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ftello.m4: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: 8325ff7415b489bb4cda6d66da300385b44ef26bc5d2d2f0dcea088931d45276
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ftruncate.m4: 
+  copyright: 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc.
+  hash: f7488bef88571b9f271591596eb95b19045177a6732d63cf4f1d4bbb4682840d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/fts.m4: 
+  copyright: 2005-2008 Free Software Foundation, Inc.
+  hash: 4f513e7bacffd2fd728bbb1ba8590d68154aad24bd93f9e3f180437b79c5ceea
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/func.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 399a8add7bf539263c73610b55864fa380c55b671a1475c2665b4e44a492f651
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/fwritable.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 5e3d7fabafc4390341689eab88fb336422580b76c3d8e69bf3ee14c4d1b8fb5f
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/fwriting.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 1ad3e75d2fb60d18c45f3836e75300e8269bc88ec64462820c09c910d9f52503
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-arcfour.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 9efa840a3efc3447c567fa7289fe2ebe32bb1d871418edd1b4b24110a85851df
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-arctwo.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 2e87cd8b7b772699b901021af1778dc199583766bcde241517d2b31dede60e28
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-camellia.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 1cc1d8a7ebf5b851e2e4dbd647b73831533ee517189c1e5b42395944508f3c90
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-des.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 00b153202ac5b51eb239ca87808efccc65a24713beb6211f670533ac858b2417
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-hmac-md5.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 2cc833715be1b2e57351273907eaff653c0165732898f852fbc4aac9a9eaf89c
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-hmac-sha1.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: b1c3c8753c14de1d3eddf5de258bbfbad6c215251cd5b61018a7515d6cef20e6
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-md2.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: ac2dbdefb3eb77364d1898cf795c625244227b19b4d0ea88ed078d333cf09ea9
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-md4.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: eb88ac5149f21b181faa2db6f1b13cb63b4902c3ef347111cf4fe93d44407c6f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-md5.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: afc266c338301066708dc7430a92399e3d8716e33001daba899c95640e527f0c
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-pbkdf2-sha1.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 477893cd24822028dd94a1f6ec75e6effc823ddbe57289886454a1b353c1b8eb
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-random.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 7c6359250cc4a22a27311b673688f6b1f0622d00c42f57e47425c75c31dd6b17
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-rijndael.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 6caca24fa5408e0286cbdfb716068d66a352c80142643dba35fcd4011bf6a33e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc-sha1.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 443bfafc3a5eb25299291d7dcfef2ed68f0b57841caf360fc8eb1abb0f32493a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gc.m4: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: a8f9ebf6d8f1983cbd8b32378b928174f6026da55c11a81aae47e2b2e1c25142
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getaddrinfo.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 162f35cf358a5ad9b171d16e437f37a717d01d22d5f17725767ed7f76f6b650b
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getcwd-abort-bug.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: fd355ed2ae698981232b9c3a5b92ee842d9928342394217c98f5576848b08577
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getcwd-path-max.m4: 
+  copyright: 2003-2007, 2009 Free Software Foundation, Inc.
+  hash: bb780d0c969c10a9d14d8d61d726b682113b7fe3a5505eee66e649fefe99c063
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getcwd.m4: 
+  copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 0fc304520a41fcf7ad345780a1cb9eaf73bef3856834b3448bc2283210c77b07
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getdate.m4: 
+  copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: c237091fdbe4035e27c3be4829e9e1798870c51bb982585a5c11c1bca74fb1ee
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getdelim.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: b6b738dbf34edff9dc3d2f0be5088bfb974fdbe55ac6aa7a255b39a851384122
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getdomainname.m4: 
+  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+  hash: 7fb3faebffb6a66d558b99423801631258e92e4a782809f808d9f7cd0bcb5094
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getdtablesize.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 67ccf670de71994ed6710e1897f64f871a74271c9af2c827cbe55bfaa538a8de
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getgroups.m4: 
+  copyright: 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc.
+  hash: c3ad064f9d4de711f983f1b373e261e6c5c254520cf1cd2353e98941b5fd3285
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/gethostname.m4: 
+  copyright: 2002, 2008, 2009 Free Software Foundation, Inc.
+  hash: 9fd3d06a71eff8d2be5bd62a266b0bd71283c871f3dda177fb83476dd922e426
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gethrxtime.m4: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 84c7e59b44315629631075311dee0c40fcc834324dd7672cb0f3148be10ba6a4
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getline.m4: 
+  copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 89ec9fb86746e481d3340d6a2bec769a1bb1ea00e6ed30bdea292e8f1242036a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getloadavg.m4: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 7b0c35c25d813983e2ffc981ad4773d7cbcf126d0d853391cee73b7ad3e60db4
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getlogin_r.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: f42c8994afabe3f85235db3850925d5e613daad1e9f64024023826ff10feef97
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getndelim2.m4: 
+  copyright: 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 3172ac8aa677c2d97b39f9d6af0fed26d2fed4da679b616e668066329ec2bd1e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getnline.m4: 
+  copyright: 2003 Free Software Foundation, Inc.
+  hash: 9af45bdccbe7d6ae432a8112390145eaa29f89ba5e448fe8aadd58355ce77f7d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getopt.m4: 
+  copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 5f06c376d4d0eab902bcd59374dcc3569716156e6a5b3a9f057e901cd8460904
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getpagesize.m4: 
+  copyright: 2002, 2004-2005, 2007 Free Software Foundation, Inc.
+  hash: 2b7fd04beb6e26d86c114fa975404317f7fa575b5902dae6f392c060fb8bce22
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getpass.m4: 
+  copyright: 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc.
+  hash: a34c89dcb9d116383941ad1d076e7df7db9ecaa7058c9a85b09d0b938d5dc5a8
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getsubopt.m4: 
+  copyright: 2004, 2007 Free Software Foundation, Inc.
+  hash: 9b04ceb2d89042a3ff134954522fe3cefea7441790d31ab74fc2d0c265c1309d
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gettext.m4: 
+  copyright: 1995-2009 Free Software Foundation, Inc.
+  hash: 209767111675e6bd3167db5ee4bbcde54189112719d3de3db9f87f6850f60440
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gettime.m4: 
+  copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 2dee3947ea628455e6f99a9429ca412a5727e6ae81fcfc765de229a5f214cb4e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/gettimeofday.m4: 
+  copyright: 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: 2813667e7bf563ab4d0f747953be0ea2a763ff773c3f251ff9f08daf2f33013b
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/getugroups.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 5fa33ebc62e80a7f354f6e432c4dac78bac05bd75f9381b430a0f638994381ea
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/getusershell.m4: 
+  copyright: 2002, 2003, 2006, 2008 Free Software Foundation, Inc.
+  hash: 85822f50f91b2679b6b3607288c46cd4fb5c2f08c12a4329a1ff7de39e2766c0
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/gl_list.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 8b2a1802af815eebecaaf1e75e8931f2f40e8f48695c96b0230339ff56d88eaa
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/glibc2.m4: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+  hash: 11b39a2f3ca03b195c0ff0fb9170ea87fbe38dd4ff8a481000feb62e48168c97
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/glibc21.m4: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+  hash: c38afe2c0836f2ddec80a6aac76a85735b6b0a3e487fea600816d7a460492c6f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/glob.m4: 
+  copyright: 2005-2007 Free Software Foundation, Inc.
+  hash: a90e23db91a3c58be62de6c2bf9556087e2266f338a41bbdfe4d4e9c9017fe47
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/gnu-make.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 70a7aba0c8a2889370654a6a63b8c36d43163088c2fa61cf20d080eb6151bb6f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/gnulib-common.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: cf953d1ede907c6631070667a43748f8f22368503be57c4207aba45ea49e1804
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/gnulib-tool.m4: 
+  copyright: 2004-2005 Free Software Foundation, Inc.
+  hash: c6d2fd9c5bba8e3f3ebfc4650a4b9d0432d43d2e4810f637fda353b1f61d7de7
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/group-member.m4: 
+  copyright: 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc.
+  hash: b9ef1ff8203530e2e78714b55cf01b1bbf1c7c258b61ee3536c1cb5892bd8d16
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/hard-locale.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 97264040027e35bb6dbe3df675fe93938e7a66d8b148d6fba0ecc36e19d5cf40
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/hash.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 819523e80720760423e01ca0720b2940895aef21577d206f09dbc782bf0f5d93
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/hmac-md5.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 01aa0b99269598138f369e395801e415957d1f5e99e42b67da35a667bd88f307
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/hmac-sha1.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: f261317ddd13a6feb35c7a801adc7f7156819362d3d5efd1e0636fc54e3f67cc
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/host-os.m4: 
+  copyright: 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: cf2577e3c69f36ee157700e347082ddfb55659d7ec921569d78be17be2df1a3f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/hostent.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 86614585cb9169151c04f411f5a9e8f576954e89bf686b988b3ec4e8d56234be
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/human.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: a7fb86bd0bbe797cf1a99630e2764b76f2a8c322acdb3fd3e32d9f5f52288246
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/i-ring.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 8a89b11945fad17cf70d3830685f646050122bba7c19ecca33a7feec4e7b73a6
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/iconv.m4: 
+  copyright: 2000-2002, 2007-2009 Free Software Foundation, Inc.
+  hash: 58adc1feb91f7df348f3072f3187d4b2487b22efb486a17366fdefadfe1e2453
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/iconv_h.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 4bf94c8ab903d28caab6ad4c0ff7f6976cff8aac193e26f06a4ef161ab7cfb7f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/iconv_open.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: cc6a4cffaeedc925c4b77d44679278ce74a324ae280a69086127a1244e575694
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/idcache.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 684c8544db4656472183f046dacda8f3db85963ccd23353fbcd5dfe988c1356e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/idpriv.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5b4a91d383eb4ddf7108b571d3eeead786ce2af3a1dc207b5b5faee7009db536
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/imaxabs.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 9ac282ca81021c035a86c34f143d6b7a49de4067e4b69b1b93f39a146447bfac
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/imaxdiv.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 5fadf938b03a5ea38a211bb8d57402bb672b551cbe5701a7d9db8d054dc16098
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/include_next.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: fc10e0ad2c9bd80b98f37d913b9021a9b6538bbcea1386183abe1a5b7ae89d0e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/inet_ntop.m4: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 2961f88ceca9369b98135b582ea275427282cf3cee5edefabe6510f3a36637a3
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/inet_pton.m4: 
+  copyright: 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 3f59e48fd6fa87c38851d0fb7f14d7fddeb46f50d526beeca3383d01002dfd06
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/inline.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 1ce32c0db262c643f6c513cf276d533c45afeea4b8f10681b2fd8d8c770f0e9e
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/intdiv0.m4: 
+  copyright: 2002, 2007-2008 Free Software Foundation, Inc.
+  hash: 3b41e9fe7c042186c2004a938b8f651898d683f34d60198d65048c00eaffe3aa
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/intl.m4: 
+  copyright: 1995-2007 Free Software Foundation, Inc.
+  hash: 0d7179b34d75a5812cc919c4190baf120690b0155fc61f344967c0805e0d566a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/intldir.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 612428195affe98a7d5441899325dd49d191670b691459bc02e12ab0cfbf966a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/intlmacosx.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 447c46fa3888adb2ccaab83f4cf703a630ef162e4933d79887ea9039a02729e0
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/intmax.m4: 
+  copyright: 2002-2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: c110fc0f8772eb14b1d5e4e98f3bb7a7973aee6a673907e18409a3e79e319b56
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/intmax_t.m4: 
+  copyright: 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 86248e08dfb3dbae4bf34645c7909fcfdc517fb975573a8f57f9fa11a9c47fb0
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/inttostr.m4: 
+  copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: e2b51832fe091eaf612d6dac65a6e704009d76fe68224aed958f392d2637a269
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/inttypes-pri.m4: 
+  copyright: 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 8649b8fa7043ccf53fdf62500bad888da4180ee519fb31fab64aaf8c8ce9ded8
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/inttypes.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: e5b427858f7a6dbbb30e7d900d76402ff9a42c6ec9c38bff2bfa3f59be20e3eb
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/inttypes_h.m4: 
+  copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: ca5eb68f1650e18a89c61c9ad23ecf5786ead724c985f8a06dc12877c9d326c4
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/isapipe.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 694aef61dce5554fcd26fb2c28e2544ba8e385f8d6e673c37164e578fd6dc342
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/isdir.m4: 
+  copyright: 2002 Free Software Foundation, Inc.
+  hash: e9d65c52fa170654224baaa1a9a48b18398df1b62c8f0595813ec62b53a55729
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/isfinite.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: c19d2f133ca402c36f7c2d02bb1793b8722b49205ea44e74e40e92cef27db4fc
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/isinf.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: fe9d10fd7eb4cd6bcb9b2cb63a4d24340313246a2d39faa8a63a5ca82998ff9a
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/isnan.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: e7b33f83d3ce859e8f1395ea66d91f251c145404b1b04abc907a4966f213aa24
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/isnand.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 51e8e66a3b57025d5bc688689425eb32e6c8e064ede078c4d6e080b56d3aab04
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/isnanf.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 595cb32bba81892f6ea7ddb98c352f5796a0535a6fa78a172cfb89437609af6b
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/isnanl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: f803ad5cf4c44855de734207bee9190902ea849cbb2b13dc2e61ae9733015193
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/javacomp.m4: 
+  copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 14e19c009a90dde63c919635e6c67c76ca1ea166444f296ba5e1841d14e51aba
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/javaexec.m4: 
+  copyright: 2001-2003, 2006, 2009 Free Software Foundation, Inc.
+  hash: 4918c3e11f2ea4072f3311b390e4ae81540c6a5adf57fb986a3fcf7dab7e771d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/jm-winsz1.m4: 
+  copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 301531f58811d581f72b13a77914c5ce9116ba7ee471486ae31a75aedd85f502
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/jm-winsz2.m4: 
+  copyright: 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc.
+  hash: 060d85fec2c0b5c74229e5cb538ab49a2731fdcf7d9af9cd2fa2e23e3f57357e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/lchmod.m4: 
+  copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
+  hash: f8d332af32afc5284f1da28186423c4b1f8df943fec36a1415936007a868b4e4
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/lchown.m4: 
+  copyright: 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc.
+  hash: 114159d41d1474abd908058b69f4373686342a1796d9f9f65bbbb9267cbc9d69
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/lcmessage.m4: 
+  copyright: 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: e2cc3d8b92945a9d0baa9a803ba03d5516916bfa463cb50f551414bc550edef9
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ld-output-def.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: e5ffc015c39b58438c1616034da6eecc2ac346360cd22575e51c5f72c4aa9ff7
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/ld-version-script.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: efaad515a17443f74a72ceef2bbbbb094f1e5a36515b84a35a66266ce54995ca
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/ldd.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 343928a20ff84e1b66ee2da65a5b896efdce4f69135b19e5df4de074a5f007b2
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/ldexpl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 7e93193fa9d20667368d04017e56f0514bc859b102b064aa96d292d53fc0b3ce
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/lib-ignore.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 16d25c2943c615eb393319fda49b7d52096e1b32ff542bb57aea0ffe1a566f1f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/lib-ld.m4: 
+  copyright: 1996-2003, 2009 Free Software Foundation, Inc.
+  hash: 5c208fa42b078f46f3d6aff909c14418be3e034817c1a91a5d6677bb6d143ac1
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/lib-link.m4: 
+  copyright: 2001-2009 Free Software Foundation, Inc.
+  hash: ddf8673d6148d43b50fa4e60fe33f19cfbf4fee56b6d017c9ff5f180b45b2247
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/lib-prefix.m4: 
+  copyright: 2001-2005, 2008-2009 Free Software Foundation, Inc.
+  hash: 670991582b722e16a12293d7f817562b4f6c9d6a8d034573c7d1b049a3f618e7
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/libsigsegv.m4: 
+  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+  hash: 417798efd6f0af14a61894f4f838a3188a159231210a7ac3cfb80dbcdd38bb04
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/libunistring.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 30e764db0ea63d7c4b4a6d5886a6417f11b355c04a873f4c97609a0975144b63
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/link-follow.m4: 
+  copyright: 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc.
+  hash: bfcaf0beba8f8e7b4b5b35b52c14f4f2074cfd8d85c0ad824c32f6a189b31dc9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/link.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0cdff13ae7180563eed4c0316a5c6f515ae921b3805f4cf6e8b642cc1c206498
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/localcharset.m4: 
+  copyright: 2002, 2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 00e8162fc6c53b329b35513aace655880fbf6e8c3f684923cff2b97e11eed3a3
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/locale-fr.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc.
+  hash: f37c0c563b84177f67f66c1c84aa0f80fae71061d5dd4f49cd60b7a0f12ad7e2
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/locale-ja.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 46355008a2c63f595d7c452c1f36c5f9e9b11bd8b469d5a16a2f4960b545d1e7
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/locale-tr.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc.
+  hash: 8f7943111b5706039847295a518091bf667a3ddd04727fee2858357e3659a0ee
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/locale-zh.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc.
+  hash: af44fa1110a57fb71f22d7f43efce6bb0b4d1ad67d39bb8a01e10b65ec282a7c
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/locale_h.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: df7aaa065eb91a465c6b5dec83ca26b2b8cb4e790cf0abc5c387326fbacd066c
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/localename.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 3fa8b3a4ca986ad17a8dc24d01300ad487fc51243c3d584d651327f08a15561f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/lock.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 591f64f47b0546c5ab1769dc5f6a995ac3c2c0846e4f37c456601638e8353127
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/long-options.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 90915cdfe1004a2676f30d1c36306db44f25076401bb5e07ce04d7c2f8e55396
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/longlong.m4: 
+  copyright: 1999-2007, 2009 Free Software Foundation, Inc.
+  hash: 31bf5606914914e2b190d30413b6ee86c190153a1ba10b6b71d66f9853693ad8
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/ls-mntd-fs.m4: 
+  copyright: 1998-2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 843fe15f5a9827e6d8388ec64749b6a3fadb7705147e34ecdb189c731ef849da
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/lseek.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 7f0502309efd6839c977e3419c2aee0f013e5a2541bcb22bdc6e04e4868dfd1c
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/lstat.m4: 
+  copyright: 1997-2001, 2003-2009 Free Software Foundation, Inc.
+  hash: 477d1ff15d11599304c8b73e8e2dbada5a9bf4c7057fdfe47cc5f23a66a66a66
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/malloc.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 2a8252ecabf5e3af574f01ee6254422f36889314949c50fc9245d94e857c3652
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/malloca.m4: 
+  copyright: 2003-2004, 2006-2007 Free Software Foundation, Inc.
+  hash: 574f23c6a3908adea4bc9f052f415c65e5b9c444ca4433a34c9120c94870b237
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/manywarnings.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: d8731a4a9dfaecf297b136b0f85f850c4519fc39a44680674853bba3644ad22c
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/math_h.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 821573f4fcedee707630697c2cf95ed24b271a9152c84dbc6bf920ee554afb56
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mathl.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+  hash: 6ce43398f3875ee3f91451cbf904c142813d768bd7a6e9cf330e3fe8dd62a27b
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mbchar.m4: 
+  copyright: 2005-2007 Free Software Foundation, Inc.
+  hash: b486f2469239c36107f6b2b0b0541b087405ba8fbc85d9256b4cf6454550c144
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mbfile.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc.
+  hash: e87810bc66d7019634d2b30038f24b16e1a9ef49c6c32e805f6f71360452cbb2
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mbiter.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc.
+  hash: a969e27c30aefb7073965ab1cd4bcee97268f6b82bf96522509e713eacc853a2
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mbrlen.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: a606b1ca8b598c52bfd7f233eb4984ca878fb179d80e06220d85b5d9b36d960d
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mbrtowc.m4: 
+  copyright: 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: d660822110548e8d7d79255d5ac60fe496a9e7f04a9de7397f3a6d5a8dbb54f1
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mbsinit.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 8d7472d2b364b4379c7f634f7a4f6800e19078099331fac228780eb697a2cd58
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mbsnrtowcs.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: a7a12a2e7dfec6902d1398d30ee7a15b86c159a0a1265611a5546ab220f7bc4c
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mbsrtowcs.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 5425f085251dacc43b461b2b77cdbc1fe485d1c81e33989687f213dfc3a1d389
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mbstate_t.m4: 
+  copyright: 2000-2002, 2008, 2009 Free Software Foundation, Inc.
+  hash: 59a390c7f53d4878a2370306835400bd423ea9dfa0b34e8e2a92fa00b0d70255
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mbswidth.m4: 
+  copyright: 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc.
+  hash: 2deb63d9fcc93ac349da112c631d337964c474754e5387a42d368f90157012cd
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/md2.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 130e33f82decb4d039a56ebd2b85e32c70de213b254873ac543bf5b7e0cb24d5
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/md4.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 7978358bc5de59163559a74cf8c7992190472b1269112e939f5ecf2a4e26f8fc
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/md5.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: aad43f86e0054029b846a78045d88f8d03aec67b5b6ad6f4b59b3a6e2d6d7c7a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/memcasecmp.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 479e27cf51cc18056b84824cad8a4ba0d97d0fc9116fd12b2e872c409c570ddb
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/memchr.m4: 
+  copyright: 2002, 2003, 2004, 2009 Free Software Foundation, Inc.
+  hash: d3882d0a7e536c7f6eca2a953e8a9a77d1e0486d3ccadb9b5a4a469c4c069bb8
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/memcmp.m4: 
+  copyright: 2002-2004, 2007-2009 Free Software Foundation, Inc.
+  hash: 449f2f83be3f02edb3e248d1e7ae3d7362782610e06dd191239165716870c19d
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/memcoll.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 9395ae323be423646eecb762e010a41756b958911635ef8a1f45bdd9db176663
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/memcpy.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc.
+  hash: 84c3b639c26e2935d10c98c4eca37254a25f95b6a8c2f8f1f3b626eae72595ff
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/memmem.m4: 
+  copyright: 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: aee6e80d6f3a27178e82414b2705d8b5824e26f352bcdbd457d309de9bd526c2
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/memmove.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc.
+  hash: 197891df3f9fd08854095f4665cc9dc917fe595d189a4f613d1575a3c9b43adc
+  license: ''
+  license_override: PD
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/mempcpy.m4: 
+  copyright: 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: 348c790aab8f85294c57e021f04e15befa7530aabb531a4f21fc10ddabb271b0
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/memrchr.m4: 
+  copyright: 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: e1b3e57cb26a5122045e5a65c1e06f24e2ce5a75cf6ce12f8992208e34b7e74d
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/memset.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc.
+  hash: e7937ae3941db76c84b41bc3aab29231fc5a0e57018a6fad797cd527f0578eaf
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/memxor.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: bef5cfa0b422bb86f6c6713336c527d14407c55ee8a792d0780bbab8a1233d98
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/minmax.m4: 
+  copyright: 2005, 2009 Free Software Foundation, Inc.
+  hash: 9377265286ad8108a58bb33b19f69b867035ff53bcbea4df3e6b0016347b90f9
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mkancesdirs.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 5636abd1471767ac9a49a328344cf3e04afc98405063b73cca8c95049d237a8e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mkdir-p.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: ac650e70d9346b2fb4df3ba6740e9aa14e1d5df373d1de3e080555faaf3aea47
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mkdir-slash.m4: 
+  copyright: 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: e49b5a74f72ac1bf48beee660429e250ce6c84debef307189bdde551178a40e6
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mkdtemp.m4: 
+  copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+  hash: e9d10a2443d799828ab3560664f80a1b3eeab2c1c44ff3a03343a8a6d559d246
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mkostemp.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: de670586ec4849c79719a5083d4615315bc12f021062c3f712dd943602f919c8
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mkstemp.m4: 
+  copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 68e1a719526a1664819987fb68462270a281870e6343e8f7ad24a6d0ecbbda1c
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mktime.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: a694524fe822949b46a4e4bc24861958d73ebb75afdf8c2b30a008b5e254c067
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/mmap-anon.m4: 
+  copyright: 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: fc74a563ed0275f38790da335f29a098d015f5246ea7765f0b7769ebe7b120d1
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mode_t.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: edba1bc2a5883adbb22efb7d249f1d36eb813483301ecc40cde9c2a6571f5837
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/modechange.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: ce44dcfc3a8e8574a4ef4d768d020e9829048e7f077112a3a6e8428e3e7b56d6
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mountlist.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: d152d842444b1deff2d4b4fd74538c7f5b1e00dff162d9ffdf6f933996d8e05b
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/mpsort.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 809791f443252bbfc151a010255ce7ec04024f6eb00f35995ab8faf19fd664fd
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/multiarch.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: b653258f3ce7cd64c7398d9233856eb610cb9f25c8220388ac8f8d69522e0093
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/nanosleep.m4: 
+  copyright: 1999-2001, 2003-2009 Free Software Foundation, Inc.
+  hash: 674b956f064d364a077586afb415cb25d57fc568f9fba0489cba169168844500
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/netdb_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: d08ed8e4f180214d652b09a8eaafd373f90309951733c48e677e83037b6ed4f2
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/netinet_in_h.m4: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: a85cc8fd45199ab9ef11d6ac7d13daa751abfde221865a0a73fe7cfe21c2f2f0
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/nls.m4: 
+  copyright: 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: e7e360a53812d679422ef6f4d1e35bb7646879dfcaf785927d7ac9095f8b7ec7
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/no-c++.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: 0b0031352efd05fda906a5128060bd0ae56b31d85f23def26558caef30481782
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/nocrash.m4: 
+  copyright: 2005, 2009 Free Software Foundation, Inc.
+  hash: 6adf83dadf8d1dcb76ced51fc0508c5debc83ec4ceed2c5f870a9fc82912bd39
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/obstack-printf-posix.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 7ba595af510c3e8cd2d9f3680cabbe5987b67bee7a5c830deea8a29b90e93e52
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/obstack-printf.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 6368c454be42588d8224ccee3a953a7b53f7ad95c71f7ee3740973a41f824199
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/onceonly.m4: 
+  copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc.
+  hash: 7ae946e07bc12c2ed2eb7a4a8c826cf7debadef975bffbf2cb04c5d8f27c6f38
+  license: ''
+  license_text: "This file is free software, distributed under the terms of the GNU\nGeneral Public License.  As a special exception to the GNU General\nPublic License, this file may be distributed as part of a program\nthat contains a configuration script generated by Autoconf, under\nthe same distribution terms as the rest of that program.\n"
+./m4/open.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 48fe6d09b376e833462ed32fe6065929561bff664179f71223340c481e677893
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/openat.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc.
+  hash: 1267346fb934ac50ef7887759e67e0545b095eb3e6566be665648aff87044f82
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/openmp.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: a545c428a801683ce74ede4d47c7cbeb6744eec734c6b68eec57751db85caf3b
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/pagealign_alloc.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 3f2dd3a771fa6b3fa816d2a6ef721ac63b3cd5a057cac1163026788956369502
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/pathmax.m4: 
+  copyright: 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 4a5873ef823f40afa9b33adebbe5392c0fc1d30d76eba4b657430e5f02ec0ece
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/perl.m4: 
+  copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc.
+  hash: eaec6e8145dda32d044eb5468e58bf0e13df68f863a2acc0cd81caf4731d3231
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/perror.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 6171e44ca4ed0431a2f8f57591ef3a383767b93b66f002363bd6a9099673b0b9
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/physmem.m4: 
+  copyright: 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: bb350fe56d68536870397663b7824edd4b945d8ca3696c879c0c4ba53dc95bdf
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/pipe.m4: 
+  copyright: 2004, 2008, 2009 Free Software Foundation, Inc.
+  hash: 7ec8856c90f4355e601693e33d8b18a4a41691fa9c4fa43d39f81766ccac21a4
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/pipe2.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f3be301c98df31830acfab4197dbc2dc8f6e0cb418d9d733192622f22c101c08
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/pmccabe2html.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: d45dc024d6753f4004ddaf9f6d235159c452d9b7d7c57432207d03d0d9c5e93e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/po.m4: 
+  copyright: 1995-2009 Free Software Foundation, Inc.
+  hash: ca8c03e98db7b6d5561401741d13196032accefca210b2a7526f814ec686348e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/poll.m4: 
+  copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 629b8155ef9034734706a637ca9b60025a6c7444057a99b02f7635b34b886f14
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/popen.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b8ce7c048df6b2fc3a6f11ed7eabff8c2dd0bf8009bb134de915c68c330baa80
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/posix-shell.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: cce92ab970bd18d6bc66e86dc66f01a7bc16b77a2c1543222fee39cbe9f902ae
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/posix_spawn.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 4ccf3aca29a25f057325f00cb8cab9ffb7f4a3503475529bf10ad4391d8673a2
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/posixtm.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 1b08ede3cabafa63d4dbcfce84463f53cb28d1fbf6d0b644a548ef4b6a60c1f5
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/posixver.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: 27aa6d893cf20144880953b6b445f87561cdb0e31bc9b60cb030a6ec5accd3e5
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/printf-frexp.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: c738950347dfbc774896c9b0ef0160a9d16a50ec5b9e4b29c7afe19b8c70b609
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/printf-frexpl.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: a493cf44285f516390a2b9eb2ad1cc36c11f71093eb74e7c3e8d5ca2dd14fcd2
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/printf-posix-rpl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: f4213c12c22486c51e995cbc0a9f55e9dd1c733fac30cb191d33ae57ab1d2ace
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/printf-posix.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+  hash: 4eb5f8f07750e884b5f4220c2b95cda187b6cd81bde447aeb413d684c514d5b2
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/printf.m4: 
+  copyright: 2003, 2007-2009 Free Software Foundation, Inc.
+  hash: 4fca85cb7811468dc8f84a7799c133cda593ab144a2c0889378f3795a95ddbb0
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/priv-set.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9a5807b3867d86d02784078b14f20e8ecec79dc64ad187bab11bca20e19faf9d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/progtest.m4: 
+  copyright: 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: 09334de09d3e23a27f655f7a3100e19ef96683339bad9621defeef669cf53b22
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/pthread.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 265b8582edae0ecc5f191cf2467aa5ed8c46e146649c4d56574377f70eeaf78e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/putenv.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc.
+  hash: cfd04c6acec3664269e09cc4df394fe9867d342ab357dc89253e1d39a1e68dde
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/quote.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 7ffb907d173b896d2a36a8e52aa4b8ecf251434ab83fc96696dbbae5e504f319
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/quotearg.m4: 
+  copyright: 2002, 2004-2009 Free Software Foundation, Inc.
+  hash: 854a2ee3e971d89ce829e16d546d384896d9e30e0d56dc00566b5258a417c5e9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/random_r.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 939838424d3346e2501950202577efffce7afa68ddebb50685b2e4fed9cd5248
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/rawmemchr.m4: 
+  copyright: 2003, 2007, 2008 Free Software Foundation, Inc.
+  hash: 7024edb1193d19e0b7cd589e12a26d7f04496a74c0fd6af161959ff04393e450
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/read-file.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 701de727d98bbec795fb137cbd0dda7bce40c10b48b4b639b9b3234236cc1c2a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/readline.m4: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 306d4bdcf575f32b920d548041595f6a25fb4dccda136654ae1fed59747c3f13
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/readlink.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+  hash: 79b1927a8bcf23b28a5cc28478dc3d6f950a99d190e08d2905f9a6f75f685c02
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/readtokens.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 6acb946573cfb59d9fd9e5abe494f8fbe2e82d0ee8aa14241255eeb9e695bbf6
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/readutmp.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc.
+  hash: 13e39ae48466c9d6aa29e3b518add10485fdb50c74bedfc98ae48e463dd6c0ae
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/realloc.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 3203f9e4584c814b1a0aba0d18d5bb7d602ddbc2180758ca81a03dcdcf06b8df
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/regex.m4: 
+  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 50d725ee6bfae6e6879133200a319aa551c76ee42b59bb3e5250356750508c4f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/relocatable-lib.m4: 
+  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 6c4a390de69c7b321b900f2958baa712e3add7837b874bebf5bcd13345311e3b
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/relocatable.m4: 
+  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 7904ef75bd84bfbb557af2cf86deab67f2dcbf7ea08c90ab00c96baf2df2d70c
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/rename-dest-slash.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc.
+  hash: 1030b715fefa3094ee7fcbf64ce0706064a84983eed1b4b60ee7ed860552d258
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/rename.m4: 
+  copyright: 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 3727e61e57c8da8fe778f71d8a8f9b0695955b2bd98f13525e02cafbfe02b528
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/rijndael.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: d469a617f466ee153eb791bc1baf7332f9496bc003ddfbf9588ec685c45cf79f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/rmdir-errno.m4: 
+  copyright: 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 82f75f1f04ed076254ed8791efc6e3913cb2ffb9bda1cdd17db04758b5ad50b9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/rmdir.m4: 
+  copyright: 2002, 2005, 2009 Free Software Foundation, Inc.
+  hash: 9f146503d645bcd65330d3382d22de8a0a4087be948ff0708262576c170266eb
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/round.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 9ed0939cc0bc62c08c7caaeb3ba6a8ae4966dec6012a7e5c1f8456f7bd7f284f
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/roundf.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 728510381d8789794d1603525bf92e099b51221002637804fe176d177d5cb5ad
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/roundl.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: b7f0e4329463736e5220c0e399eab82daa9435fd83c530b0d2f6b136d11e0869
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/rpmatch.m4: 
+  copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
+  hash: bdab7870b8c20ab0ea4e40b85ddc77ab1647f1f137f9c7fc0a7647cd5e46ffda
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/safe-alloc.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 413010db9362f28824c713f0f47b27ef75e4753f03a76613e49d8202ddd53a86
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/safe-read.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 476dd0e86a34ed7381cdbbea6186a965785622ace99ab7703e9be61e4019ecb1
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/safe-write.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc.
+  hash: 28152483a0fa11421395beab43c19554eab15267add044139559fcd463b47d34
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/same.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: fe78499501b2c0deee1cef23c7a6de78dea2f97c7c006c4a82cfe34634febdec
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/save-cwd.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: 2b070560df3e3154c5dbad3693e1c3b16f9b87cd0d77bcf1a76496e6dcd396f7
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/savedir.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 35d4b396e58ef3251d4ca921edb871afd2bbd4da5385903c2a08804ebdfe27a5
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/savewd.m4: 
+  copyright: 2004 Free Software Foundation, Inc.
+  hash: a7f3517138f4540f6fd6729e867b9b3aea6e5816996ecd19235dc669b62dcb10
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/scandir.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f62dae469db2be2c5aa610e2882be87dbfdcc84cadace38211e7bc734819bad1
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sched_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 5626e514b7b5c64bd9f1bdf4fa1c37bcbff1286524c62153db60ae3ecd91d7ec
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/search_h.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d6cd8150036593b84d4c4d12581f7f39c8a6978ba7cc8116c5d691c6ff7fc60e
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/select.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c0772bb6d91794c1312ebd0f3fb6f90dff9bcae093320dc8c253f548913bf2ce
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/selinux-context-h.m4: 
+  copyright: 2006, 2007 Free Software Foundation, Inc.
+  hash: f022e113eadd22af7edced97b3f1b6289856b6ba35c8da13736665221910d34f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/selinux-selinux-h.m4: 
+  copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: 63a4551cf14a0eea214ecbf472ef61294bad8e3c23d81decf5b981df46db633a
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/servent.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: d8abbdc489bcd9264fcadfb8b7dee9be3dc239d512e7796a83ddd48f85286b5b
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/setenv.m4: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
+  hash: 4b641ccd52cc1b86e45020d008a003b15aef914961b26426cf25f5c5ba714ad2
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/settime.m4: 
+  copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: 363d17c5d1dcf71322d552fde8d642ac641613cf211019c5b6d5df8bf176c37e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/sha1.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: b0b8e653e77e441a1327e5cc5eedc4d33e13ce74887bfb2299a070224b9d2310
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sha256.m4: 
+  copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: adc2fe832d2a4759e55c651b42169d33f24c32053f7515748e255052dd2d3b90
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sha512.m4: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 6a041f1d10fb35ab195140e844574a07dd5d6053918f4fd60ab8be21f949f069
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sig2str.m4: 
+  copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc.
+  hash: bdb3da52f346182e43b31c11fd3c962c84680a5371a57343ce224811e860387e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/sig_atomic_t.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc.
+  hash: 8740a92b3f85af3d8178fdeffb26883a7a2e43709a560f117045327cee0005ad
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/sigaction.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 942bae0f7e59cbdbd839bdd114df80a180753adfe2265673852caba753983e67
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/signal_h.m4: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: f195a17f93179f7442308dc8f19fca18a62277f9951cff0b47bf9d6282685a15
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/signalblocking.m4: 
+  copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
+  hash: 9675e385710eb500da44e7dc0b7dfeba96ca339daaea8e8a75be21e8b1ca1940
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/signbit.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 090599e0809b686c818f8870e466ddf1b1e8f85e13da7c88c4ad47433ed45479
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sigpipe.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 6589a9faf1c563d75e6001b20a2376598e62467f80ac99df43696aabd386d4d0
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/size_max.m4: 
+  copyright: 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc.
+  hash: 274e63ac0e607476b00e8fd52ecec9926865a0706eb1c15307249c8beb224094
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sleep.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 9ae4e28f795cced506809b2931038bf12f5d14f730ac5db4b564251d78d15ff1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/snprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e547253a212edd6b4044615bbc22655e0a4818d8f937f962adfc5e439e1d5301
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/snprintf.m4: 
+  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
+  hash: 5f7fbeef790dad54ac03ec944e2a45fda19bfb17da369aa9c2e8f4f4d40d4f0f
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sockets.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: d50a2dfb51a1c8b126cef59648b59553940f8192635e1f111fdd3babb93d74ff
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/socklen.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 85dbe7f87a9332ee77a25565add42e2c12aac7e29cdc58cde00ab978b11a42a2
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/sockpfaf.m4: 
+  copyright: 2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 1b8177a55958f8bf0898f45528ba4c08eddc3deac75871ca1a9a70fd98ce16fc
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/spawn_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 9b595c5f8fccef298fabfb159fe9b0cd7c2965a2388f8738ecc8dae8c87bb194
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 965f8b08288f9f0122559dd27581c39a9cd3182f9976f0b0fa1a7639e6c07c60
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ssize_t.m4: 
+  copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+  hash: 83b000495759790b16631fd82c8cc8126e7cbabbb484fa2a324fce5abf7030a0
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/st_dm_mode.m4: 
+  copyright: 1998, 1999, 2001, 2009 Free Software Foundation, Inc.
+  hash: e4230d99ce739fdfea2b6f9e534426e32367b91d82adb42e215c9ab63582ccb8
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/stat-macros.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 0e0d077f14daca1a98a036b872304dfa730067f1906786f8a64eed1b275c8edf
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/stat-time.m4: 
+  copyright: 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 6e44781ea55874bf9fd31759924207238aa4a99a01fc2d2cbf09e345c2fede85
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/stdarg.m4: 
+  copyright: 2006, 2008-2009 Free Software Foundation, Inc.
+  hash: e69d47aadd54239ff949f8ec2bd0cb0436b737ba6663b3c72e2266a01d2a42cf
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stdbool.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: 43abf0fdf4a37444e2d4e8fd6ec486c9eebe8e90a6e7ae1845d2e499d0a29df1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stddef_h.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c70f43db810289c46455f5b2b2b3ecbcb171fa0171d09e73ad2240e1d5bdac60
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stdint.m4: 
+  copyright: 2001-2009 Free Software Foundation, Inc.
+  hash: e9bb030f38c5c54c68cbdc8403016d05da6f6328ff69e4272d77e10820e438b7
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stdint_h.m4: 
+  copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: d60bbf3881f6e22ed2fb6dfee322f368978721175058446282e77eb42f543ccc
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stdio-safer.m4: 
+  copyright: 2002, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: ce00d79eaa9ab3c24483dbf666fdf1af476557c24f8fac41ccd6f1b39980db4d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/stdio_h.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 5279f85ff4aea689d0c384bbb577d873e5214e2b351a7f4aeeae85e8ebb960fe
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stdlib-safer.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 9a8abafa8a805182498c9212e370537b3d0964d913d3b7550e7ee8dc02b977d2
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/stdlib_h.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 97c8e01551bb911dd737aa6d57f937fbecc41dacaa9a6bb8086d8292fead4c36
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stpcpy.m4: 
+  copyright: 2002, 2007, 2009 Free Software Foundation, Inc.
+  hash: 6183753fe8a97fa0b9fdf0b1dbdce611077c78894a88b08aa016a358b26785e8
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/stpncpy.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: aa4c3046b85c5bc93ed41603a5a58dbcbb3281c604047231e2bd9df2deac2fee
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strcase.m4: 
+  copyright: 2002, 2005-2009 Free Software Foundation, Inc.
+  hash: fe5c1d6b65e6380dc44d958082105a90e9e4bdda2acd0874069ae5d440ce9b18
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strcasestr.m4: 
+  copyright: 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: e8fde0ec0800c5eafbe974aec107608e45a0455e252b6989480d50ddd9fecf05
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strchrnul.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+  hash: b20cc5ae07de6b6cb4f6cce803e713349ec527e29256225c91e80c2f5445cda2
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strcspn.m4: 
+  copyright: 2002-2003, 2009 Free Software Foundation, Inc.
+  hash: 69120ab7a86a050f7433f63fd1bfa6349dd8b7f10929f902bb3628e90ad587ca
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strdup.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc.
+  hash: fe737b962549dcee9d8390ff44f480c277ccf76b0e643fdfd2e04d06cd4b335e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strerror.m4: 
+  copyright: 2002, 2007-2008 Free Software Foundation, Inc.
+  hash: 43b8156f92eab0feb512dc43c24fdb2ae1b05f0c0aad8317af6384b9317ae1f8
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/strftime.m4: 
+  copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: efe49b1ba70db0a0b5b2067df6731e51e24c7b4c899928f18b8b9dc0a3b348e2
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/string_h.m4: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: e6a759b26fd667fc80f888975ad5360aacae9aa17704b9771e43634cef8b706d
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strings_h.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 9092e61439d73d058d4db2c78b740947b3de19e407de536cc8abb3b33dcbd658
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strndup.m4: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+  hash: de520713683d189d757c29f5cfdf12e2f063ec1a16abd534c9253233d845c1ea
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strnlen.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+  hash: 17c0880897960356780a1d18125984a4de5acffa88fa8f578c732f6a4deb2283
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strpbrk.m4: 
+  copyright: 2002-2003, 2007, 2009 Free Software Foundation, Inc.
+  hash: 3a3a46c86df5272af728492b47a253d0bc90d6c1304a9e6298c370a516ff5c7b
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strptime.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 36d8ffad63cd866a25244dc178c60c7c2eae106c2b22a5d088209d708e8ba17c
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strsep.m4: 
+  copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc.
+  hash: 12432bf70d8e7ddcd99132d6a90c074106038ae824dbed54f3e9f276d2a1abf7
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strsignal.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: b5bde205dfc38b3591ce316cfaa34ccbf70c14b043d4caa380a528317efbcabf
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strstr.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: c2991f687e1ccb40073d14aaf5c7b457490924ae87ddd7b93ad6df00bf1cd5c9
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strtod.m4: 
+  copyright: 2002-2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 803101b479ba543a87394c1ff647e72af6a1d42a70ad945e12d60d2fcc154cf6
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strtoimax.m4: 
+  copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 040b0f333be709208b820f7cf49bf3a6512b2d99d922e802976249b50b5f694f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/strtok_r.m4: 
+  copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc.
+  hash: 2d55470147f9526bfa3957ea4a72c1bf623ea9380b89265fa31a24746dbe54f5
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strtol.m4: 
+  copyright: 2002, 2003, 2006, 2009 Free Software Foundation, Inc.
+  hash: 1f93c8aa4afa52a6f1c91e6a6ff17106a2e6139db4658524516c8ee31793bf23
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strtoll.m4: 
+  copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: d0f856b5cd35656c32054ab66a5084a34e12ca0c10ccd48b50ff50928c6690f9
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strtoul.m4: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: fdf22d9455a3e2577c95316ab584023ae0c534bb7fb53cb935a0bfa05044d5fa
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strtoull.m4: 
+  copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+  hash: 39cb14122cb4c6ad802ffe8d4af7ff5bf3ddd2789ae6cd2220d2f74adc772b5c
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/strtoumax.m4: 
+  copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 5caaba51dce181aa188137ad40280074d7e3ef1070bdc5a0fbed47f94e5650a6
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/strverscmp.m4: 
+  copyright: 2002, 2005-2009 Free Software Foundation, Inc.
+  hash: 95826714352d22b394477acec68e36e8c32470733556f372ccd56f7ce71375bc
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/symlinkat.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 90930f5c7ee0ce10502b307af1282f0c1bafcd6f976b6c951960b431fe7952ea
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/sys_file_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 69f49396e6a189edfc61c2bd435d53a891dc6abce8dac43f78387906ab67b383
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_ioctl_h.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: f6a18a51ddc67c6c47b712c8f847e443beb6a918724a8234bac0d8132d08ebf6
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_select_h.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 38fdb36f5c8f4a2ade525a2c92c5b92a56afd18f75d14a63fbfcaa0aea9c2bc1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_socket_h.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 9e3fe619e71cd2142906cf6e71e9c7a811a7666b66bfd7b8d819f3bd0b440ee7
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_stat_h.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: e14f36fc61a996000fc53de8648fe9a8614162802f0d0767f0935aa5e38381df
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_time_h.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: f4fa044be9686af6cc3dca73c362217c35b7df004df156448d42e93f50005c21
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_times_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 65330cd4e4102a96c194270ad63a84f51e0c2434500f54a1d994c4e4ef67d43e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_utsname_h.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6297d018e2ce6557cfb1b69a8ad181b4b150a4b66d7da9988fc8b4b9e11141c4
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sys_wait_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 15694649678e6ed145b9468ef2af89fe024f914aa32d5e23f58210af6531261e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/sysexits.m4: 
+  copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
+  hash: bffb1617076a6e661ddf76f19df8cd972e0227ffcd9875916f5f7a7cc4fcb59f
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/tempname.m4: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: a3bf3fdb7afc9ed7e1115ebd5f6c297f474cd2ac9b47043fa5921526007b166e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/thread.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 966cea206c2dde9b0822e88fb5c7eb071d1e2a8b498b5f7584177992654e3b76
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/threadlib.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 0a3a72d652c01b057b2ec383380c48fb020f82e564e60ed9bd766a0d32066b2e
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/time_h.m4: 
+  copyright: 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc.
+  hash: 09adfda92c4df94c5a482b3ec5b39361004444a90836892de7f938ea85e27569
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/time_r.m4: 
+  copyright: 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 770d2efad291ac35edb3d39f8630a4709ef63528414495c9895426209a914244
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/timegm.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+  hash: 4596ca9d5a3d693c17a973d67f0516d289147d1ee01c7b528cc2f782dd26c491
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/timespec.m4: 
+  copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: a25be56d364ef5d14f369d901d2c05e5cbd2f43c14bc1268746e18e6f001c0a9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/tls.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc.
+  hash: 697de033bdbad89c040faa77a813d232afeefae98bb7c79cd3211e305ae79e07
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/tm_gmtoff.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc.
+  hash: 758ee2b8a8b4488ded650d22c745fbee1c698b5bbbbadab892035a0bbd133958
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/tmpdir.m4: 
+  copyright: 2001-2002, 2006, 2009 Free Software Foundation, Inc.
+  hash: 098577de87caf3dad7141f279bbfb44cd8b4a79600904bc59b19733b612ca9d3
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/tmpfile.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: a9f8b1f5f20e4f91f6a5a5c5ed38df62512f8d57a66bfc25276d50c2f40318ea
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/trunc.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 360b254b79427391f8b53e897c7f92fb3ace5d5ad105180f038e50671ea0f446
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/truncf.m4: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: c451a8be61a16dd51de9f147f9eea7b656aec20696e999962b9b2170aa973cd6
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/truncl.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 95d7249df03f9c1cbe96efe80cffba1e26271fab4a090c16e990b8f1375026af
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/tsearch.m4: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 1fdebc81816c7417d4f8f53047196acb683d0e3178f9bf7a4200af674a5a179d
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/tzset.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+  hash: 25f9ec1e09c194a7e31b97f55483b93552e2448766dd5c96e62359f399656763
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/uintmax_t.m4: 
+  copyright: 1997-2004, 2007-2009 Free Software Foundation, Inc.
+  hash: 5569fad1774ab8b961af00e03c545e378179e3d4ca1e5c23b3579e3ef6e61670
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ulonglong.m4: 
+  copyright: 1999-2007 Free Software Foundation, Inc.
+  hash: 5de3995e758929606b49effa12a5e72f32bdadb3ffa4a434c39a5fdbfcc42f33
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/uname.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 3c6482e00f6593d203a89f71ae22c02497f43ccfa98128c01c410a65baf0d9f1
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/ungetc.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 6d05898405c1b3e3c46040a9c38a59043c89a45cd3d411f28a20111f2483d280
+  license: ''
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/unicodeio.m4: 
+  copyright: 2002-2003 Free Software Foundation, Inc.
+  hash: 767bdadf5b3faabd031a93d59ca9ead2934926368aba57932cba97b9aa74fef0
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/unistd-safer.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc.
+  hash: d917dcd19ae1fe7e0e446c7cf29c1db1361a3abc2b5fda15c5da446442ce7a72
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/unistd_h.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 390f7c7544789ef3626c1d1de31a7c38de0b022276ea3bc19dd159fda1869c65
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/unlink-busy.m4: 
+  copyright: 2000, 2001, 2004, 2007 Free Software Foundation, Inc.
+  hash: ad70c286d0983ec8db389ea4785ef1730a651918d5fe5ffedda1c2810ef7d434
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/unlinkdir.m4: 
+  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+  hash: de6356bceeff6f0516f22ebe8454b552888b3aa9c126c43968c65dc5d20824a8
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/unlocked-io.m4: 
+  copyright: 1998-2006, 2009 Free Software Foundation, Inc.
+  hash: 7d036d1f045f2eecb342938a5e665fa8b4ab671900c00c44ea74f853e5cfca03
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/uptime.m4: 
+  copyright: 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc.
+  hash: a21b4be251dfc64d08f51f7f7c731e3c1b7316b82a9352318f3ac0248b8202e9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/userspec.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+  hash: 767025ad4c6d4041ef5a4fa50a0f59f305bf899b4e88261b263a58a11eecaa26
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/utimbuf.m4: 
+  copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc.
+  hash: 1cc7dfc2a7f30b77bc720ee587638964a5d095ca07f291a9157245265121a10d
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/utime.m4: 
+  copyright: 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc.
+  hash: daf708dbb1e4e20331f886285ee9bebbcba63a486ac5bd4d13d92c27f53b5d22
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/utimecmp.m4: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: a8b3ec86a04cb02154cbad4b5fdeecc06dd7b93dc54d96458f9d210949e68241
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/utimens.m4: 
+  copyright: 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: 68d63c14fa0327cf0e4c214194e62b6bbe553f441f81bd1d17d8c5597fe6fb88
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/utimes-null.m4: 
+  copyright: 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software Foundation, Inc.
+  hash: 3d1576bcb95cbe1177f919d74755dc2272345e607205d917139059158a3724d3
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/utimes.m4: 
+  copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+  hash: f0ce682e7fb31e73a0c02c54b4ea24a84f141f32e54af7498deef1f9dee7c4f6
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/vararrays.m4: 
+  copyright: 2001, 2009 Free Software Foundation, Inc.
+  hash: ccc97184c7bd4de12a6168086eff30eb1c15e473193a91d5a5e5d6a8824a9d40
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vasnprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: b48e0fece07a089a5f87d23a14cb5091c44b473d532c563041616c9dafcdc15a
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vasnprintf.m4: 
+  copyright: 2002-2004, 2006-2009 Free Software Foundation, Inc.
+  hash: 1cd0c36a78c6078d18cdb67a1554a4ac9f773b68dac016c0cbfa06ca03453024
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vasprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: db9712da8b53f1bb3ae158ba8595f902cebc0533a5511d997ebbe7eff79aae9c
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vasprintf.m4: 
+  copyright: 2002-2003, 2006-2007 Free Software Foundation, Inc.
+  hash: 15f05ac172c3ea6b1b2e8fdc74cd60991f82c845dcf820fcb5b868b38acbb0b5
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vdprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 8f5973dc5616cf37e7aec5dd9f4b90181762fdecd6864ebe71ba10e48fe33230
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vdprintf.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e1d6b72d4330fcfa0af92094cc075e09ba7fb9115bf9154641687e8310e4e1d8
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/version-etc.m4: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 14c2c6c298a204c97e8b5e47a299065d37b7c38ce4dc56125c443fb09a2cbdc1
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/vfprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: d1777edd2bd37a587f11a3a9aaff20710d8a239f5e4f42f49fb36342f5ec3619
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/visibility.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc.
+  hash: d8e75ab55dddf6b27703fb08e77f2e0e05d58c0e53aff9968eaf8f6a78def9cd
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 37a9b2f2e103f8396564a88abd0c5379afb40a6b46056d5afc1adce54162cbea
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vsnprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 411f99e3689d9c66c871e864c31df109b6fe645f6bef287b09871e54ff163299
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vsnprintf.m4: 
+  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
+  hash: 78bc63b8400f070466502f7f592939004f0204329bf1936e08db566f9efb4a63
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/vsprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 5de43c845cf229240686251cffa6ebc95a7ff8c99776f41b84e9ab73fd5d27dd
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wait-process.m4: 
+  copyright: 2003, 2008, 2009 Free Software Foundation, Inc.
+  hash: e95987f7301300836022c3c272ea0fd0f42750837bde9c7077eea97dd7c54f4e
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/warnings.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 2ea3219129fd3e764decacbe54defb2ac59c220191cb3dc2e751955671739c87
+  license: ''
+  license_override: other
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+./m4/wchar.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 82235dd92cbc686f19c162e681a3e2d2cd8712415ceb63502f96525e68b68801
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wchar_t.m4: 
+  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+  hash: e144a04745a6906677eeb9b8f3c9fb793754a3c55452125a6e24a9668ceb77bc
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wcrtomb.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 950cca49712f3c35b6801b3d14be1d94ecdfddaf783aa898b4c0a215c21d1a22
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wcsnrtombs.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: f1714d805e97204ef9c59bd5306dfb11726dd669488be35000b946750fd6f03d
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wcsrtombs.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: c97f36290b6a78023cc47f8d507dcd18ceec4a4d68fbf704e743231b8d2eb7f1
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wctob.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: d9b6ab0f44f04f22bde90b90ed5287b8f3503b07803bd2469f5e37e32682c1db
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wctype.m4: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: b223622a4d75488360819355855d86340ef0e7f18d4a3fd37bd74f65b7ef14a8
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wcwidth.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 454b784cd3681ceda96891b7832bf461581311bed5d7e6f8c98cbe7371e8da76
+  license: ''
+  license_override: LGPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/wint_t.m4: 
+  copyright: 2003, 2007-2009 Free Software Foundation, Inc.
+  hash: 542edc258897a8065d2ea6d285047c9e3ff04da8728e2fc4c3ce004076b1bf5d
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/write-any-file.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: c5ed5eaed6e0fe94e459ff78fb113b0ff81091be83ecaaeef17f0dfe0ea6b5c4
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/write.m4: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: c5c3bc26fbe2cb6fa61e259bcc8f1b0fdef708a454a07deb6712cb376c2d0b91
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/xalloc.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 5008bbce8cfeaf98f9413e19e47b1267a7d0d7d21ba9d97bc1bf984f234a4773
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/xgetcwd.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+  hash: 3b5d09234ad0a99b1fce1a5067ecc3c715989640845dd5c38e94d491e4e94090
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/xnanosleep.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: d11f4adf891d6c7746216e56ef22de12b2f4cdd9765e0f9d3630e52b02fae5f0
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/xsize.m4: 
+  copyright: 2003-2004, 2008 Free Software Foundation, Inc.
+  hash: 9d30e3c52072d3833efaf4d46c531c2b3f801281eb8aead4b3ae7ae011e2cff4
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./m4/xstrndup.m4: 
+  copyright: 2003 Free Software Foundation, Inc.
+  hash: 117f55c31df0fe5f1e79240d94a592eed4a47276060894633b84e8816a1d5056
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/xstrtod.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: 1ec2cd8d2c6b3de92b55a976bf17831b0daf8d2171c62cfad283954af9f4309f
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/xstrtol.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: ef06de197a5a3ac2001bb343095937dc6980e544003adc0f77f3d9f2be17fb82
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/xvasprintf.m4: 
+  copyright: 2006 Free Software Foundation, Inc.
+  hash: dae7786d5d9ab5954cee5d5c0847bed861d04af2a98ba67c5945d8085c9c85d0
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/yesno.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+  hash: b0dfeda80afab2a3259bde0be3a8994252fd438782e68ef024dfee9eae084ae9
+  license: ''
+  license_override: GPL
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./m4/yield.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc.
+  hash: 55ae2c6e8e758bd817c625c92a268f6d9e9eded98c0334cd4951f7f16c833c48
+  license: ''
+  license_override: LGPL-2+
+  license_text: "This file is free software; the Free Software Foundation\ngives unlimited permission to copy and/or distribute it,\nwith or without modifications, as long as this notice is preserved.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./posix-modules: 
+  copyright: 2002-2008 Free Software Foundation, Inc.
+  hash: a5ccaf8a1eb82ecf46eb6b2aa5c191573ba82514eb2a06faae04e262348940c7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/locale/fr/LC_MESSAGES/test-quotearg.mo: 
+  copyright: ''
+  hash: aa0b83acbe74a54fa3cd8a775c76808e83114c0a544170c7390bce7ef812a035
+  license: ''
+  license_text: ''
+./tests/locale/fr/LC_MESSAGES/test-quotearg.po: 
+  copyright: ''
+  hash: 78381df0a60b4cf5be4ba6df357926269fa34959f18832cdf96c0badc79895e4
+  license: ''
+  license_text: ''
+./tests/nan.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 0e920a53922496135430d09f3bfebfc1f03f63142e1f0ff761e842e96d506a56
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-alignof.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 8bf8f28addd7565ad3f4256848a2aed22f6b4d89ba5b501f5d3e45273b84af36
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-alloca-opt.c: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 7be92bd4805798798cc208871e587c60cff48c8fe695b08405cf2dcc866ddbfc
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-arcfour.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-arctwo.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-argmatch.c: 
+  copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
+  hash: 374d3cdd98263ea28ad0f3d8c21f8aaf953562d377316a56f32a69534d13603b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-argp-2.sh: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: aa582c3a737c286f43630868ea734856d5d74809aed1e967403b6d1e21a96ec6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-argp-version-etc-1.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 14124a44a2d4160fc8d3bde7bef3491c53725766368df8d5b97c5473869753bd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-argp-version-etc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9894dd1ed11fe0f5567b33d83bddb190020bbbb37e5792cd8a76a9145eb3e7cc
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-argp.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 3b0ecdaec3be7ac59ab04ba51095836c4843d5fe2016294aef19667d894b0503
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-argv-iter.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 87ef6b17b9a78fc466aa9cc85627af6f6e0ac63b0d7c82998d4dab47a9bd298f
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-arpa_inet.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 79ac8a737e1a83e3bad62ce1868e706a2b08bf46afa32c67681e91beb53462a1
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-array-mergesort.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f9c4ef4dc591cbeac70eba11e9533d59181f12cf12d362e00782f45ecd9c36ed
+  license: LGPL-3+
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-array_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: e03fc7928bfbe8781c744e1c21b70a907264b62c59bce976a7ac04694d5ff6a2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-array_oset.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: c0bae0da40c7a22d6504b362bb30545716f1f9ad8bd5ca4a817a809f88197808
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-atexit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 03e140710061dad22ceba20a744340059a599decc42a1f0a57061c370b674eeb
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-atexit.sh: 
+  copyright: ''
+  hash: e693dded1c3bbe595a21498a71264cec8bb24a8356518618974847660d760774
+  license: ''
+  license_text: ''
+./tests/test-avltree_list.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 7eda006f64201339fc1716ebf20c065d5bdad5b0c385ae538ed09804b9100628
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-avltree_oset.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 30f270cd2b85bb909eaa7bbd80590b7f31be418ab29815c404aa0266290f320a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-avltreehash_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-base64.c: 
+  copyright: 2004, 2008 Free Software Foundation, Inc.
+  hash: f1a00fd1ea70356a96758211f9ee6ac4b85a24414ac54c1d218c21c6df7f8a15
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-binary-io.c: 
+  copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+  hash: c45b392e94b4c908c583df305c095c968079bb2bbe726a7feefc0c7400de5a58
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-binary-io.sh: 
+  copyright: ''
+  hash: 1ed5b40114bb55012cd28394883f8711c6a892ec24cc5ae55877736ff7753a9a
+  license: ''
+  license_text: ''
+./tests/test-bitrotate.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: b31c900c0b50eeae92b228ab5590bb3f390daf91535632322fe28d791eb1e0b1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-btowc.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 5ebcafef18833867faa6529b403f9ea8209c5b226325a645d7f4213d0daf22c1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-btowc1.sh: 
+  copyright: ''
+  hash: b4bac8f44ded39802e8ffbefa260cde10c90ae2f9cb7a3639bcf747a93fe871e
+  license: ''
+  license_text: ''
+./tests/test-btowc2.sh: 
+  copyright: ''
+  hash: 0cc0919cbfb0a866d644d13cc08068596b5dac38fb9fe437415b812d0c3b0370
+  license: ''
+  license_text: ''
+./tests/test-byteswap.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 54ff0c61e08753f6557e58cbd5a9ec794ca5f2e7f51c605f4188f2803a5da67f
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-c-ctype.c: 
+  copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+  hash: 13becd45e283e22f97fac9aa9901241affa9a90f9e2e0a10efd1267cb9bada9e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-c-stack.c: 
+  copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+  hash: 3b31d9428c61805262bd02ba033b43f2e82e1152a2cc23f48bae221a7b86dce1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-c-stack.sh: 
+  copyright: ''
+  hash: 5ff4f37644ece982d306be694f3a8f1b7ab0be3f227b9134ed02bf92044cfd94
+  license: ''
+  license_text: ''
+./tests/test-c-stack2.sh: 
+  copyright: ''
+  hash: 0f27101d5e51c1531872dbbbfbb5b506368d7d6a144a87856a97f8c6ae1f4ab4
+  license: ''
+  license_text: ''
+./tests/test-c-strcase.sh: 
+  copyright: ''
+  hash: 08c6d116921579362a23059ad95ba47ee824ef9404b810f66d92b225af9669da
+  license: ''
+  license_text: ''
+./tests/test-c-strcasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-c-strcasestr.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-c-strncasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-c-strstr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-canonicalize-lgpl.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 75c8baa24049fa693e9d21c4e974cbf52f43450a5b050bec610517bc05fe9464
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-canonicalize-lgpl.sh: 
+  copyright: ''
+  hash: 81afe45f5b4980a73878cb5e648cd582ecf66655103424ffe60cb82e671243eb
+  license: ''
+  license_text: ''
+./tests/test-canonicalize.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7c61f923516c2bb3723a7449064aadf6b2ecf9568d3e1e05f1869841160852ad
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-canonicalize.sh: 
+  copyright: ''
+  hash: 179eb3794b8e41c6c38fb9483fc9591a1a45870367cf8694ab22293d2a6fb124
+  license: ''
+  license_text: ''
+./tests/test-carray_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-ceilf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-ceilf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-ceill.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e09b1df767b4364cee38177843c6dcd444e346b8bb5b5161b90d8acec2dbf97b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-closein.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: 60b704da91782d85057f15589b9adc2d33e1d034e212d4fe256a6e2bc65ffab7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-closein.sh: 
+  copyright: ''
+  hash: 24747fa1e687723c702708fb4c239cf6e54f59d0a1ba915784eb47e86e4c29ad
+  license: ''
+  license_text: ''
+./tests/test-cond.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: cdf0a1afb208f062d159f0bae1e25a2c661d41e33bae74c541e2bd6700dbd280
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-copy-acl.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-copy-acl.sh: 
+  copyright: ''
+  hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+  license: ''
+  license_text: ''
+./tests/test-copy-file.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-copy-file.sh: 
+  copyright: ''
+  hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+  license: ''
+  license_text: ''
+./tests/test-count-one-bits.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 0a1addad31c87ba1dc9b2149bec84703e74bf936dc6807f45f0df6c679c99eba
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-crc.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: e926964a3909208530797cd9796ec1651f592cdf9925dcc36e6e5a566968712f
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-des.c: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 2be8e95b0dea714ec5eea7bb03ba88c5768d2dc5376db963fa25bfaae842c979
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-dirent-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 5a22d0608d61b123ddda55784e14d7d257b9110344b8e19243968d9fa0fd2eff
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-dirname.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+  hash: 502e96f62d9a5b6ce322bbae2e2710d9e0d9865dbc4afa1e08fe7abf01fea73e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-dprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e6f0b4694e38d2d1e76dc966dd73d4afb089176883b07410a1b7f22f1e133b33
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-dprintf-posix.sh: 
+  copyright: ''
+  hash: 87cd228811d69c325ed0768128a0b3f461e85a1cf16115f64a097d662d3f21d1
+  license: ''
+  license_text: ''
+./tests/test-dup2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-dup3.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-echo.sh: 
+  copyright: ''
+  hash: 167c0f782ed61e0c577c8644fe6afd5a8c987ce1f93ba3f28228fe90928fddfe
+  license: ''
+  license_text: ''
+./tests/test-environ.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 7f9aff3986d989fd5967abe2d2b072d678411dd664064aef0639f7a7602921bd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-errno.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: ca54e2c0451c2ff331290635dc29a1c8f47a42e28a5e85dec52c78e70fa8e810
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 8ebd7047d8c758e1bb24cb360d2ab93d441a88f10b84384950d69c2977c4165d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude1.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude2.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude3.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude4.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude5.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude6.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-exclude7.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fbufmode.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: f8bb902cbd6174946430fea20f8b499d96ef441a74fe87b603adc43f53b24ba9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fchdir.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1ede59e2649f54965b96b11e3defba44f756e66e2f0c750d5f950f4dbe196fa7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fcntl-h.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 356ce47d3e2061b396a00244416fae41a78a4ff320458994f76699c2d5b742d2
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-fcntl-safer.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fdopendir.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9847782c540349bedfe816a98eff2e2a2b21de374b5eb0bbaa3f59cbb61ae561
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fflush.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 69eca960097ee5c280d159ba1477c6fdf640149e0e14e210b536524114a79618
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fflush2.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 0cb46425ac00337c0a55933b576d483da8c84792991892297731d9ffc746f4bd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fflush2.sh: 
+  copyright: ''
+  hash: 9d3df2d637b481f1d5f1437b111dc2061bcf8e995843af8856817103951b1483
+  license: ''
+  license_text: ''
+./tests/test-file-has-acl.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 6c2949f3e460929b2f8bf6c01aed469b5cc37a1eb1233352638770c3930df5df
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-file-has-acl.sh: 
+  copyright: ''
+  hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+  license: ''
+  license_text: ''
+./tests/test-filenamecat.c: 
+  copyright: 1996-2007, 2009 Free Software Foundation, Inc.
+  hash: 2421876d5280739ca72e375a556c1af16509b646f18f3217c4a71c9539b47234
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-filevercmp.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: e9a609c14b8dce43bffbf6d67ec08a74092aa14c279914cd27cf603657ead587
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-flock.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: ed2f3659a200c467c8c3c35b233e01ef87c935180aed9e91946bce9883ea62fe
+  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-floorf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-floorf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-floorl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 8dd61603c1d098520aa003282269b173ff24e36a22c995a82098236b60c0bd12
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-fnmatch.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0949276b897ba2ca32389bb684582366b42e011338d888e27529fe47643863a0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fopen-safer.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fopen.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fopen.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fpending.c: 
+  copyright: 2004, 2007-2008 Free Software Foundation, Inc.
+  hash: f674acf1725bc698a2a895260a0ed04e4e7d75079bc902bc25df4eda4626648c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fpending.sh: 
+  copyright: ''
+  hash: db7046a61b7536849f3d58ac4a230b874a449d61a4f33331d2a39e3eb40cf26f
+  license: ''
+  license_text: ''
+./tests/test-fprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 745ab000bd06f41a498df49ee0daf9fa7feaa93b9f16156e4b958405becd413b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fprintf-posix.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fprintf-posix.sh: 
+  copyright: ''
+  hash: 99530f369d42274f641c5404f05d6eac54cef4816643f576b94631d3bd50e8ab
+  license: ''
+  license_text: ''
+./tests/test-fprintf-posix2.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 61c448e81f453607a13ca6af87bb998cbde812213f3c001d9ad5bcff9cfe6f57
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fprintf-posix2.sh: 
+  copyright: ''
+  hash: 57de5c6be9adb4eb8e8cc416f2c47f934f82f4d3ce6256ce7e72fdfd6a727377
+  license: ''
+  license_text: ''
+./tests/test-fpurge.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: fc4f811164270032bce572b9c4f9537ea36963aa67e630a450c0258599c8ddec
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-freadable.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 8f818a6a890d5569df82559a4e62b02dfbceff150985e779e219669eebf9ec5a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-freadahead.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 9833934459a057c2572f209afac01879e5ca8a3efda95d6790d17ab9938d1917
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-freadahead.sh: 
+  copyright: ''
+  hash: 7d4e9892370ff589533c590bd88ec5f6aea65ce8126c798ab48f96d87cc0de4f
+  license: ''
+  license_text: ''
+./tests/test-freading.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 36417f8adf8660daefb24719abfcd2d6df61a952656fe82370e243753bce4bd6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-freadptr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-freadptr.sh: 
+  copyright: ''
+  hash: d77d62afd49fb9b006aa3f1b2e41fb246f8f4e6ed232637b8c5efb02e31f6e9d
+  license: ''
+  license_text: ''
+./tests/test-freadptr2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-freadptr2.sh: 
+  copyright: ''
+  hash: 9e8bf4b4fdad153f5bcaf5d3d9a51c2b362cc5e21262c769e87e36bf29f6f3d3
+  license: ''
+  license_text: ''
+./tests/test-freadseek.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: dd89379556b28cba841ae08e74f0d92b1739c31a7e399dcdec050f4e73a51430
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-freadseek.sh: 
+  copyright: ''
+  hash: 8c922bdee150c36bbbc68d2273511885bd4f54145ec4e0e0b74333e9ab68c5e1
+  license: ''
+  license_text: ''
+./tests/test-freopen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 1794fac0885679928991ce38c01ee4e5e23331ca73e89de6fa05c0d731ac9ae6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-frexp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-frexpl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 06e5c7a95b4f9162db1d74f609c89b24736a09affac663df79cce627cac4355a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-fseek.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: ae3126d4ce719f8e50ae5bd6defb067f936333ddd967e018d9d63614e1510ba7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fseek.sh: 
+  copyright: ''
+  hash: a221109e451414ff3596a9e2fc85ecad8dc9a4b5d41c4be22ca4e8d4bdaaedcf
+  license: ''
+  license_text: ''
+./tests/test-fseek2.sh: 
+  copyright: ''
+  hash: 9312e62b8100ef1a5c959e559f4347907430ddca9ad4854cd611110b0768ad4d
+  license: ''
+  license_text: ''
+./tests/test-fseeko.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 1560dd162ef0b3cfb7b9b2202b21bf9933c216776fc89f20361e521f162b3ce6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fseeko.sh: 
+  copyright: ''
+  hash: 5d1445019d710edf18f8405db195d0e08c95a9f8bb20b59f25e5f0d22e19dba8
+  license: ''
+  license_text: ''
+./tests/test-fseeko2.sh: 
+  copyright: ''
+  hash: 4c322333a62415b01f183b120936fc72916ad98c98b42ee36bc50c14d8651559
+  license: ''
+  license_text: ''
+./tests/test-fseterr.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 9573252bfae2fe4f10686e73eb86cc0d662f2e25a23b7a4f70036ae38ca30ddf
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fstrcmp.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: a7b983fc8ba0e4d673899f2631eae4461eeb11be8a5a01a6f57ff6790dde39f9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fsync.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: c3f28d94e1d2539f92e889ad3322fbc9b5fcb9c406f9840452cf355766627792
+  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-ftell.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: b7573164fb69e7149847239bf7ceb7db79f453822f1cbda04e22a52283b3281d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-ftell.sh: 
+  copyright: ''
+  hash: 86795dd7b612958804e50342aecbc2d23222542142f4e6a6408e4f10a1f6a2dc
+  license: ''
+  license_text: ''
+./tests/test-ftell2.sh: 
+  copyright: ''
+  hash: 9290b195ad04a0d882c97eea29fb2ce8c5a4a9eedd6b43841d516a027908ccd2
+  license: ''
+  license_text: ''
+./tests/test-ftello.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: e34687ed84f4523c387c8408a168176c62b7e3da1d7e5c51fd2dbfdd11b61cf9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-ftello.sh: 
+  copyright: ''
+  hash: 3fecd8a2adefe6f15a998f136266ef37222cf6273ba1da4cce7d097635bde45e
+  license: ''
+  license_text: ''
+./tests/test-ftello2.sh: 
+  copyright: ''
+  hash: d6d309f9866760abce0c773c476943b19b6201596ed4ce4b3163ca3c5510c760
+  license: ''
+  license_text: ''
+./tests/test-func.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: bc81ef2fd91ed0c929de4c4958fe9d6af9f4b08a310f02929b7244bc9c3821db
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fwritable.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 319d6c836c355f4f63122cc2f7ba0756183810d27488a8e5a4f09305d31c19d9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-fwriting.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 499f0954d31a94d7067eb0be27b75766f56ab69c0494e2845759fb24d1703f4e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-gc-arcfour.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-arctwo.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-des.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-hmac-md5.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-hmac-sha1.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-md2.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-md4.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-md5.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-pbkdf2-sha1.c: 
+  copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
+  hash: 7799cf357547a841ccf3afeb7e5d9143abc19ee0a898cb087d2de1bb492bae59
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-rijndael.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc-sha1.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-gc.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc.
+  hash: 8cb1d73b6c4bd47920f369b94539807ae13559bf31d128fea4584223d60675a0
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-getaddrinfo.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc.
+  hash: 97815c6bb90ea2860ebdfcd9dfc8554dcbfa522d7aa8ba38ddecbc126e096a8d
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-getdate.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 935427c30258eb6e5a9b394cc5d96c1427d7abe260fe0b81fe448b30a4171ba3
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getdelim.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: c90cc89f32a451ccbfe0910eb584fd389f60f2b051affa2dbe2bdc9d80097081
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getdtablesize.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 434e5606cbd9d33002d0e279a6af31645a13f37bf9492b61df63bdd7fac591ce
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-gethostname.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getline.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 324eb53650a3b992efd3fc0cce526be56e493dac9a686c8f32b40a845358556d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getndelim2.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: ad18c635ec03c40547062fe271ebb6703e1d91c537b7adf63937c9ae962c1913
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getopt.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getopt.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getopt_long.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-getpass.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 9a0c1937fde38c70927a4eeb336d442bd6127bc5eb69e09a5cd4deb09e2fc195
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-gettimeofday.c: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 5b419f77d9b7e6e89f7289f386cd548243e4e4adc21e9a52d41d21a027fdf8ee
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-glob.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 90a78aa60a23cad4495713152d6c476d4e43d510a6392ab6368173e374d14d04
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-hash.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a74fab88b5cf12f0e0d435a4a5e3fd5e55078cae553004def0998b9222616a24
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-hmac-md5.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-hmac-sha1.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-i-ring.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 6f100cd5549d218db3fc88df418a556f9aac62f0bcf54163da4ad21c84ccb129
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-iconv-utf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-iconv.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-iconvme.c: 
+  copyright: 2004, 2005 Free Software Foundation, Inc.
+  hash: d82c108598a30a83eb25992c35c31945f938c62e30203a312361e842c432d069
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-idpriv-drop.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 887a2d06234e0105a076274b1c0cb5a4b97b25977378f755f305ead016dae39e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-idpriv-drop.sh: 
+  copyright: ''
+  hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+  license: ''
+  license_text: ''
+./tests/test-idpriv-drop.su.sh: 
+  copyright: ''
+  hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+  license: ''
+  license_text: ''
+./tests/test-idpriv-droptemp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 036d78805f967b4753cdba6e50cac8854f7b24390bbf73b5a2d7f0fd6e1c903c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-idpriv-droptemp.sh: 
+  copyright: ''
+  hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+  license: ''
+  license_text: ''
+./tests/test-idpriv-droptemp.su.sh: 
+  copyright: ''
+  hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+  license: ''
+  license_text: ''
+./tests/test-inttypes.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: 8ca6a2b71d7f538cc79e407439bcd512ffca9203636f7cb336cd8c0d12d322fa
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-isfinite.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 192e0aefe852ad279cf33f30acbf1e6a5a685ea90a52bda5174baf39c06cd339
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isinf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 467c934361d927c8eb3bb47ae9844379ca009c7ebc4845dd28e567813ab1efcb
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnan.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: f1159b7f32f37a46e32fc884afa11c72818e02511e9332ee213bd99ffe3319f8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnand-nolibm.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnand.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnand.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnanf-nolibm.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnanf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnanf.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnanl-nolibm.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: d24217e860acd20ff34dacb3bc316ab34a3af4a1d47241da882a51348e4bc34b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnanl.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a6dad044535d0b8182f8331618c092ddc94769e6aee495678f102047711f05e7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-isnanl.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 1ccd58e1e4f6b9d59404fddbe589f2e34e40ea508081a567040c100b60b197c3
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-ldexpl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 7ee31a7a49ffebce6a7c8f0225d169567e0be429e67a89882ae1670f5ae9075c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-link.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  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
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-linkedhash_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-locale.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 13e3a273bd14c7064068652cb01722dab29c3661de434218afc58cf29f5900d8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-localename.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: 7695c1b31209fab6aba6c16e3b612f606d1eae1b0720f1781148cab7fd964e7e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-lock.c: 
+  copyright: 2005, 2008 Free Software Foundation, Inc.
+  hash: b995e7ccbf41d3f3ae5e9ed223ede35060a5c1ac152baaf9793fd8bd43210b93
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-lseek.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 67b2fb2011956d378309801b9f809b54658434eb8b2a5c6a77b87090bfbfa9ef
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-lseek.sh: 
+  copyright: ''
+  hash: 103b304131e87f84ebdf7fe51ddbca5d1de74d1b231c0e8d0f1f74edb60aacf4
+  license: ''
+  license_text: ''
+./tests/test-lstat.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 9cafdb021e073473c5f16a5b4f74a2ac31579de14aadebbdef5a0f625250d0e8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-malloca.c: 
+  copyright: 2005, 2007 Free Software Foundation, Inc.
+  hash: 687b864c60a0a939b2d06d15f71bedc6640551c5a46b9d97cf954b7b9dad01aa
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-math.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: 5e0b0077a9753a2a6ab13b7d12ba7a95c37cc998e3886d96a0c15b55bd951f48
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-mbmemcasecmp.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbmemcasecmp.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbmemcasecmp1.sh: 
+  copyright: ''
+  hash: 7304bc74f3d3a258e8210ea8a863f27aab54802b024dabb25a34b9549960b9f5
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecmp2.sh: 
+  copyright: ''
+  hash: d16fd0422c4a2d96385d5b90b9c0f2c8f969de1dd4a33c5bb02fa4ac381f6f4d
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecmp3.sh: 
+  copyright: ''
+  hash: eb492e8155da1b1de4e2250f06e478962793d6cabe9a519fd2384d15110677e7
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecoll.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbmemcasecoll1.sh: 
+  copyright: ''
+  hash: faed7a5be2e3810c0ffc7a90a52082c8f5cf3db405497a7e9010d2c719231ff6
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecoll2.sh: 
+  copyright: ''
+  hash: f4fab277f9f292c7d753f3600aff43593c48069a4a3f6265958aa87a8c312491
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecoll3.sh: 
+  copyright: ''
+  hash: 331ac5a20f06f5d44432e5fa4396101952cb6e60bbaf36beee49e11ca7933770
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 9e6ff6c6e393938dfae1ad3aa59b09a1aff3de7914e1d9b850ea0c62a2865a0a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbrtowc1.sh: 
+  copyright: ''
+  hash: aa376c39dd66d55e6cbbc2acb3c88909aef3ab2b5dd2b88b64237d1a5113a325
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc2.sh: 
+  copyright: ''
+  hash: d05e570292161c8c07a2800cbb86f2f1daad410c45f9cc4d75885cb775ef3edd
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc3.sh: 
+  copyright: ''
+  hash: a961e18d55829ef9ae6b5b67be607ed9c09ad44805d1958dec5a216b8b2d4dd2
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc4.sh: 
+  copyright: ''
+  hash: edcefd4d5f047e46e09c57c8f49fd8a5acf6198d6e1457b0b0f8d0a35c8acb36
+  license: ''
+  license_text: ''
+./tests/test-mbscasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbscasecmp.sh: 
+  copyright: ''
+  hash: c400cba3bdc37f57ff59514590ef1c1ffb525def25363dc057cb795350258088
+  license: ''
+  license_text: ''
+./tests/test-mbscasestr1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbscasestr2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbscasestr2.sh: 
+  copyright: ''
+  hash: 7625b9217b1cb7efd0991f90f4f63de80e96364a81c197d42ff0ea48ff92474a
+  license: ''
+  license_text: ''
+./tests/test-mbscasestr3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbscasestr3.sh: 
+  copyright: ''
+  hash: 7bea28d4bcddc0db1d408f47ea4d152507a19397c06a739f5f996b2dcbb95f8c
+  license: ''
+  license_text: ''
+./tests/test-mbscasestr4.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbscasestr4.sh: 
+  copyright: ''
+  hash: 7499e59252f59878b81950d351ed8786d455589a88cd005e7ff98abd521ae4b7
+  license: ''
+  license_text: ''
+./tests/test-mbschr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: e5d6bd10ed694e87f1e1f158fda3d9e3bfe798703c35c003123ad801a988cd9e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbschr.sh: 
+  copyright: ''
+  hash: 7a680a0884655b6591b91b98d2e0192e1defe778a12f3a5bf271aa6a761692a5
+  license: ''
+  license_text: ''
+./tests/test-mbscspn.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbscspn.sh: 
+  copyright: ''
+  hash: 15cc680a7cb6f0f0f80715a88a5c62b67c5ae2c99589420be9f5a7312d252e3a
+  license: ''
+  license_text: ''
+./tests/test-mbsinit.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 0a0f9a89e23f44ce8d21a21ec2345e1f3022ba9e3e35e2705f7347e5d3da89c9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsinit.sh: 
+  copyright: ''
+  hash: 104168895eecfbae80f96f8abd4c73822d9dcb2ce305f8020a0424fe2d55a660
+  license: ''
+  license_text: ''
+./tests/test-mbsncasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsncasecmp.sh: 
+  copyright: ''
+  hash: 50eadc9df534559ed5509be4a6af2522252ace74a00646bceff01daa139b622d
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsnrtowcs1.sh: 
+  copyright: ''
+  hash: 5db850b49c6897a60588a348aadf7f5ad696f27f58876613cb686088e82065ad
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs2.sh: 
+  copyright: ''
+  hash: c861368b11ee095bb6d9f0229cc3a369b8a0244e453dc686b3540a954bc1b155
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs3.sh: 
+  copyright: ''
+  hash: a8194d6aefb2a02a416354be9e9474c0c19403adf757cb21204119931c188056
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs4.sh: 
+  copyright: ''
+  hash: db2098f520d0c8aeebc9ec8e24bcb668e5ce3afd425e13c07d4bd7c3a7ab51d6
+  license: ''
+  license_text: ''
+./tests/test-mbspbrk.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbspbrk.sh: 
+  copyright: ''
+  hash: b68f5c5e76fdb5ff39f3a4b137f26afec83fbedd80132cb547663c5113395523
+  license: ''
+  license_text: ''
+./tests/test-mbspcasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbspcasecmp.sh: 
+  copyright: ''
+  hash: 0dc0b806a5fc1a9d2110db05246da688cf15390dc3d79948a5d6a2bbf2040af3
+  license: ''
+  license_text: ''
+./tests/test-mbsrchr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 336d238f34950347720810d4eba15e4d22a9aa84098f3ec41fd2856d8aedf6d7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsrchr.sh: 
+  copyright: ''
+  hash: f8f59a2913930da2af1851dc24468f2921742b6091b86a65e284b38b418a1397
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsrtowcs1.sh: 
+  copyright: ''
+  hash: fb24fa64654c7d2c588311970717aea290a3291349f8a5611aaa761713119cc6
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs2.sh: 
+  copyright: ''
+  hash: 8d030f6028e543b4d93dfb8f14b84edd1541dc11d65ce84d512191a78bc1b4fe
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs3.sh: 
+  copyright: ''
+  hash: b23b005a9360d7365bfc10ca426905259d2d38be17a55283e063f01a62ec8332
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs4.sh: 
+  copyright: ''
+  hash: 207d7ee682369340ed853b46675579d3be4a2707c2299493f560022e518ab334
+  license: ''
+  license_text: ''
+./tests/test-mbsspn.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 2708b6a1359116604ffd1f0488e510bef6ee687588f481e0cad37ed0ec848913
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsspn.sh: 
+  copyright: ''
+  hash: e0bd7e62a91c072db88164046ecd6f42c88ce44a634a76eb1c83c248831dd936
+  license: ''
+  license_text: ''
+./tests/test-mbsstr1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsstr2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsstr2.sh: 
+  copyright: ''
+  hash: 1d805ef1e6eab2c44e8668fa623a5d246869cb3f39a685c4a3135996e45ead77
+  license: ''
+  license_text: ''
+./tests/test-mbsstr3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-mbsstr3.sh: 
+  copyright: ''
+  hash: 880ac90918e954ae500cce18004a2592619063b0cb6de41740f197f38df9d415
+  license: ''
+  license_text: ''
+./tests/test-md2.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: abf2f70a1887b653b034add8c99c0436a2e3751e63f73929660b24930fa9f795
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-md4.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: GPL-2+
+  license_override: LGPL-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"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-md5.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-memchr.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-memchr2.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 8d79550f65f0123da4f6be14234e0fe15616b4ddea78f81d77dd51fd37973be6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-memcmp.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: e18a4806f468c3a8e062e5dce871b138ea023af8f3f3aecc2830380fc2d28f6c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-memmem.c: 
+  copyright: 2004, 2007-2009 Free Software Foundation, Inc.
+  hash: 382e52373b1850a70886e1a8b5e6036b56dc71e1a7308522c9bc833e27a18406
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-memrchr.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-netdb.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: cf4bf72aa3b66b389ba6ec0da06aefe83c95f0654339a77a8704612bb9599120
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-netinet_in.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: a848df8c2e882b20250b3a4d479e8fada3d528f8fce8c5627355d6304c80b4dc
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-obstack-printf.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 9feff5ec7cbb16735b6c9d63f6b8c2bd3d3f4c5553f9b996be3f8cfe4240e4c4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-open.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-open.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-openat-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d06869d5a44b4d7270af94cdbbb1d4190957d4292c3af8b9564002d4e4d1c985
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-parse-duration.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 35362dc2615751df013220bee2763c001ae65724f6a65a56708d422de57273a8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-parse-duration.sh: 
+  copyright: ''
+  hash: 2fe603e83804acfadc681a8ed77a25f4146601c1502c37ef8ee8714cfba3919b
+  license: ''
+  license_text: ''
+./tests/test-perror.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 63d18ff5d46be6478f9569c7270da67595712bcaf5d1057c6948359c2cc04bf5
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-perror.sh: 
+  copyright: ''
+  hash: 83349ba638f6ffc10680f2e78e438f0e6f20a812237b89ded57d8b48a10ffc79
+  license: ''
+  license_text: ''
+./tests/test-pipe-filter-gi1.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe-filter-gi1.sh: 
+  copyright: ''
+  hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+  license: ''
+  license_text: ''
+./tests/test-pipe-filter-gi2-child.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 00ffadb86a75c8f0e27d3d9e7c2c7061b6f4fd0bf9f0ab3ea26323aa6824c621
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe-filter-gi2-main.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c786b65d8861d3f3889afb7eb1b454ce25bce48f093eee46d8d331939cc7ba71
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe-filter-gi2.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe-filter-ii1.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe-filter-ii1.sh: 
+  copyright: ''
+  hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+  license: ''
+  license_text: ''
+./tests/test-pipe-filter-ii2-child.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: bac3649c854de7b46c60ca030b7a379e4abe24edddb70e3dc6e6cf9f1bfc7e8c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe-filter-ii2-main.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 8c157d6df939e6d434fec71cdf844cfe366d062d871530d04c05a4f12ae9559d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe-filter-ii2.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 87b0ce6f07c7dc998dccca7755d36b68474a4fa9fa1c5479346bbd2a228eeaf9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-pipe.sh: 
+  copyright: ''
+  hash: 5dbadef404d16dd74e75f251acc266a81438820ea0ab58d558a96804b6d1dd30
+  license: ''
+  license_text: ''
+./tests/test-pipe2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 73c73a849418178f4ce6c9ad2e85a4a66257efbeeb4c1848901ab0c3bcd6a2cd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-poll.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 7970e5d5d232352391d076f73881bb98e1eaa9346930e8f191a49ce549b152eb
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-popen-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-popen-safer2.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-popen.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-popen.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-posix_spawn1.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-posix_spawn1.in.sh: 
+  copyright: ''
+  hash: 7e7d5c66755ac83d083956f83bfe65ca2c9536cd8b0bd4555a6ba2a03e118aae
+  license: ''
+  license_text: ''
+./tests/test-posix_spawn2.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-posix_spawn2.in.sh: 
+  copyright: ''
+  hash: 781d49e1169694f7f7b1db78fc097258bfd1c59d1af21f695f2159606a696251
+  license: ''
+  license_text: ''
+./tests/test-posix_spawn3.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-printf-frexp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-printf-frexpl.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d9ae7fb6f3efade21dd6bd4f8e39296b78ebe14a2b6904928a9ef5f08847f210
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-printf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: e0609f5e2368ee405f7f4a205a106a397a6c889e06ede598f31189fd2786ea64
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-printf-posix.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-printf-posix.output: 
+  copyright: ''
+  hash: 213315ade646809669a3e177d40a9b01d9430eb55ba1cd18dbc5b5e154433a5a
+  license: ''
+  license_text: ''
+./tests/test-printf-posix.sh: 
+  copyright: ''
+  hash: 239e312ff4456b546521d2f0bd0ef84e7286d685ba3477b95b13b0f8aa071f84
+  license: ''
+  license_text: ''
+./tests/test-printf-posix2.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: f0fff3bfac69b0e70b8370a65b5668bb8c0049c0bd3c7d673c22591f45effae1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-printf-posix2.sh: 
+  copyright: ''
+  hash: 5c422546366bb292df14233c6829abd4a7154bbc5b7dbf1b21fe2dd4601b8f6f
+  license: ''
+  license_text: ''
+./tests/test-priv-set.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 459b0d2a4e2ca34dd43609ddf4f6fc9da4ac8485be1f363e50eac88501417fcc
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-quotearg.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 104703e4201fb5c043c5e3504cebdaf76bee31f82635cd179c12eb576cb8e015
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-quotearg.sh: 
+  copyright: ''
+  hash: 7e0d01aab336e5acc014edc2ff951d5234d4e4bad05e5680cca7931c706e5172
+  license: ''
+  license_text: ''
+./tests/test-random_r.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 6a99ec02e3274e3054358cfae33be3f646de66a86a4c1190e2459dd79154f0c5
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-rawmemchr.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-rbtree_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-rbtree_oset.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: e04eacd107bad187ffb5fdb4d4955f66622e0e7f6cee9eb82e80d40657f6cffb
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-rbtreehash_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-read-file.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc.
+  hash: fe25f8bab073df345c729dec8f6148396d6926783db8a074ab9b9f120ebacd68
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-rijndael.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-round1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d481632fac56dafed412331dc1d3c962088c31ca9c3b36086d3667160fd6d480
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-round2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 78cd3c59fce9fcf77a9e67787f5add6ab91b27cb39939cec7db1472ba23e07da
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-roundf1.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: 3d1da36b9e0486cd4e508d505e52d43a8e69194525626087e0570a15fb56bd69
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-roundf2.c: 
+  copyright: ''
+  hash: 2b662978b800617f406056d17c4f610c9ac9a637fe6b41e53db7b8728d9a3386
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-roundl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 78692de38971d672500f95f537d99c3625af5e163292a68f569e9b1c0db3deba
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-safe-alloc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 06fa48a371192b3703bb2e5e10ccd93a9034d93b7dcff205253b40547dc5f425
+  license: LGPL-2.1+
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sameacls.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 1df2ca38b822fca6b61b6dc422c4b420e8b7ef60e85c53952d92ac21156b8c65
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sched.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: a1d056a4d72baa204719a7171a5f9cb61426312897c83f8d72c0d329008fe2a6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-search.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: a75b46b1de8003eaa9822f8ee5de3e28bfd9dfa3808094ed1476e96a9f8b0d9b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-select-fd.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: c39dad9c674c2b86a8b6fabc120a1231d76298f5616852e8ca555a36d57dd057
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-select-in.sh: 
+  copyright: ''
+  hash: 900e4c2984ffcf50df1cf8f155327f6fc7f9fb45b05e89a8e6117c6615fa0bef
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-select-out.sh: 
+  copyright: ''
+  hash: 81a7eb6dd45c11e05d7d72c30afe3a86103b6f785beccfede7592fbece606a1f
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-select-stdin.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 2233f158677785767dc09bb2110060927bc2c348fc26ffc95bc44b538dd69287
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-select.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 919c5a7db661553ac0cd6de0a423e3fc6d9c988e0a86fa524fae055862fd6ec8
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-set-mode-acl.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: cd6ee6081a51d9b3f3794b017a6b074ff3bc14d6825fd5f251c5fd2d46841250
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-set-mode-acl.sh: 
+  copyright: ''
+  hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+  license: ''
+  license_text: ''
+./tests/test-sha1.c: 
+  copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
+  hash: e18f52207f18a229817e86984ad67f9af48bc951d8a18ad1ba9665584fa5d716
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sigaction.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 26868ca82f9158a85f3775c877b40da4441122e03a940c9d02dfc347ff66b161
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-signal.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a2a63d1070f8da740d3d59dd751aef9681d8f4a1b47d41d92c5258448a7902a0
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-signbit.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: fa9d9d09e834d032dab7e5344a9125bc3a844d179a74b3eac76bc464ca94566e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sigpipe.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 8babbc5c4c5cf6baadd089082b26b393e84a3d336446bdf26c6170bb3b86fd55
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sigpipe.sh: 
+  copyright: ''
+  hash: d27845fc8088e77081e32717c8dd8327ed122194c62751c93ef8faff8ee9218c
+  license: ''
+  license_text: ''
+./tests/test-sleep.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: c4c76435bbec1e1ae7a9b8292a1bf834366e04668c11ff07e19eda173e195eb2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-snprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7fce32e7bb5b8d3bda5a1df8212fb1d14ec7a02dc5e72ebb28dd9225dad5e397
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-snprintf-posix.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 9c968e1b41c6112dfd570d39aae8c0902a54036c53b751224852c002c65aada0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-snprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a8fc7710afcd71af941318a653e85e172eb11dcf342d0362c2bee74cc1361c0a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sockets.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: bfa4989be540f363296df2cabc7bf499303561023475f1a5272b0a1898cf4746
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sprintf-posix.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 643c16861240bef0649dd4bcefe6ef1d9996a7d9bf4e16d3f70ecd7d22619764
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-stat-time.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 13ed608bac62ec91a2526f569107d3f2c029da8a2935eca78a4cc53839419da8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-stdbool.c: 
+  copyright: 2002-2007 Free Software Foundation, Inc.
+  hash: c84624aac5e8ef0d17ac6cfba2d9902112d8652ff84f75943bbaab5483a15104
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-stddef.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a7f33ad88ddc3e59c999ce92e4d5c33162876f2dbd2f812612f5f875e098a0e1
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-stdint.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc.
+  hash: 23f2d98a74e19ebc217c7540652a726c29f8393ff93360bc7d491d73ef222896
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-stdio.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 2ac4b9dd417d2756a7b7531075a8de408eaa834699dcacc33968d0acd485708a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-stdlib.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 054829fa60196e2c3f2af8a2ae7f5906b69a5ca770ea3f67f4bf20e58459cc39
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-stpncpy.c: 
+  copyright: 2003, 2008 Free Software Foundation, Inc.
+  hash: f0900ada3225a1fce15fe1f412789c086482da205d663e8d29b7d44f0a74ff6c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-stpncpy.out.aix433: 
+  copyright: ''
+  hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+  license: ''
+  license_text: ''
+./tests/test-stpncpy.out.glibc: 
+  copyright: ''
+  hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+  license: ''
+  license_text: ''
+./tests/test-strcasestr.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc.
+  hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-strchrnul.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-strerror.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 14a1d27bf7519c28518b2fa09cdbff600099f8fbbdcdd31d19f1e17abd42eec1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-striconv.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-striconveh.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: d58780303b58b650191816c9c6f6d31acc192c6b06da016cd940a1daaad76347
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-striconveha.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 5613eb13fd03278f3cfae673d2742357a77a24e39aa5464290122bd1f5cc17e9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-string.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 0ba6f6d137f27b2f588c41cd0dd4a7f44a8611d2b5650a7623304eb04f2a985c
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-strings.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 1218735581f6fd81e89c932786b84ad7efdb3fd0a98b512cfb6ef7179ee629b9
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-strsignal.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 911cff60ea0d2142906a8b6e37b8e316a82700ce9dc6f4419abb1544eeb16255
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-strstr.c: 
+  copyright: 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
+  hash: 921b584d5b441ef5314ef79cacb914b5734b212d15a5d3e34d83a3cac45985c7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-strtod.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 94d0b9d07d2cb7df156fa576ff2f5508151924b4eec0f0394e315fc6c43fde83
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-strverscmp.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 73715c12c4e50afe8feb14d326eb9d0092f449850bf20bda4a2a09965c37fd2d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-symlinkat.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 688324a6ce6943ee6fcd5c4bbc12a6ed11ead304de5c082acac34fa5d620244a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sys_select.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: e6cbee138afbf2346834176c831267687d1d62f0cc1c182a06b826921c4a2a0b
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-sys_socket.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 27b064bea275a251fd55f12386c38305cfa83d0e2ce5d9b781fc898d400773c6
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-sys_stat.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 04013ed74812f946e4b59b34d20190ec2cd9ceb8574f5fc52edcd6eac76c352a
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-sys_time.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 3ebfc9d43b3f8649e84a73cd567fca4c7ae4d825da72da4ed90e6e5a99d94fff
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-sys_times.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: b4313ff79695d9b7f87cdd1971b9abde2045f25322923a3e6489c6feea1eacdc
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-sys_utsname.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b1a0f7f5778c07e508753fb8758e87eccbf547386a4590bc130135b051293a38
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-sysexits.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 7c3f18282922b3f9c1ebb90c97f14450d340a78ca9e554109d2696866155c1d4
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-time.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: e2a57979e9a7175aef1b8845af8f151674553744316aac9805c8db52cbb6dfb2
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-times.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: f96de125f14181292c4c8e2e4c0974b25583ad38f9ef6a77d6460b0a6be47bb8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-tls.c: 
+  copyright: 2005, 2008 Free Software Foundation, Inc.
+  hash: a371f1638584ea868f8774f0863ed063f15ec220e756dc6cd961ac59be40da55
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-trunc1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-trunc2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-truncf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-truncf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-truncl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 503c95b4810a0f30ba1704d1103337c932b495da73ef6c06c21d7a26583b3d60
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-tsearch.c: 
+  copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
+  hash: 5fc9ed83fc429236699dce56057e9d206682791a0228c09393bd282e8874f20b
+  license: LGPL-3+
+  license_override: LGPL
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-tsearch.sh: 
+  copyright: ''
+  hash: 4a91b1aa51229c44027a90338ac75c18482cd83b1c5a42abbbd5e586cc77bdde
+  license: ''
+  license_override: LGPL
+  license_text: ''
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-u64.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e479b4ed53ff1ef1ddb7c68c062cc0b016685511ba81a14bfa6c2971d06cab71
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-uname.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 95dd080068a87ec7a8f8dd8f9c52cfcc3eb411fdc69747e76099b7f55491e9e0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-unistd.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc.
+  hash: 9dec8ae8ec34dede0933ebdae6fea6044297491dfbba7df3544444a73b7cf7fb
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-update-copyright.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 31a6cf464a511c9f798d56d6107ef0eb41dafac06037c8e04649f9ae2d9f2e67
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vasnprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 4033ae875db9b7dec68ccfb88dc9e8ac872f79ccd3ff8c1bbf475994065a67a3
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vasnprintf-posix2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 264ce034a6a0e2af38dd9a7f56d3fc621770b161c40e4868673d2197175d7e9d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vasnprintf-posix2.sh: 
+  copyright: ''
+  hash: a2853f3c4b9322d67eeb514a02f551027226143c613f10e2f07141cea27ef400
+  license: ''
+  license_text: ''
+./tests/test-vasnprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 61a80e32eb8210bc664d982ac7156c97f5b068023f47eeef9b2712eaa0cf5358
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vasprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: ec33ca31cf67dba4a443c9cd11bebb34a58110f2c2c15ffb891f9d22b628f47a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vasprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 2bd69a93dc485bffe1c49f3d6e4b411651ed41f823fb47f163b9487c35df55e9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vc-list-files-cvs.sh: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 5592779105d6e3c84009c3743f19ba267e3c947df43bd05fce6250d51d38acd8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vc-list-files-git.sh: 
+  copyright: 2008, 2009 Free Software Foundation, Inc.
+  hash: cba59ad2fc05be9c59e16bb50f191c185f4d87a147deb9477fab63dbeaba6169
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vdprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 8fc71c626ad4e8b2da0fb5b1661b55fc288ffc3242744e43fd24edf0b22d8d03
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vdprintf-posix.sh: 
+  copyright: ''
+  hash: f3166adb33bacdb3b2da94ac726284ed8403a179c0f69b2e9490d82210ef3ed6
+  license: ''
+  license_text: ''
+./tests/test-verify.c: 
+  copyright: 2005 Free Software Foundation, Inc.
+  hash: 17fec5a9ababc4561b627d90f689ea9e12ae05c2cabf962750d3472bb98dcc3c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-version-etc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 166966c01aec43b6eea70f77889719b4ca98d4f9333c9e7b8ff9fb10235eaf2b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-version-etc.sh: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c2dcff71edecfe89df84edb38bc7cf657c88b91a82456014937488b7eed9cf8c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vfprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vfprintf-posix.sh: 
+  copyright: ''
+  hash: 51b6714415c10dd04271db0038eb39b1bd3c5881b43025900606e5ae92334fc2
+  license: ''
+  license_text: ''
+./tests/test-vprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vprintf-posix.sh: 
+  copyright: ''
+  hash: a6ebb7e5988deb06cbc675b3be4c82c3366db7423e770607fdb9e5079331a9bc
+  license: ''
+  license_text: ''
+./tests/test-vsnprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 08921df8083c6cf72f8107df0955a905c1cfc1a7639420651e479889b858372f
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vsnprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 38a886365a5b7333bcddff2e6f7e078b4ccd8affc79c69d525fb628b81e77163
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-vsprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 5ff40ad8122a4316b3880b33fa58711292cfe9daf80cf886bc3bf7b4c8b8f7b6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-wchar.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: b9f590d320dde15ebc89d1b241f7f1affa3e77afaf21eb72b9d0d848c666aa15
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-wcrtomb.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: a7e09560f0d1bcf0d97e0961f8aea91e910f34af271cf323261f13ffa0ae7711
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-wcrtomb.sh: 
+  copyright: ''
+  hash: a44d114e1ecf5712c05a7280fb46e7eed4ba1d93c1afbd19f628ee14485c0f17
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-wcsnrtombs1.sh: 
+  copyright: ''
+  hash: 33a1c921605c916d076531d447e2cd6371d22857bb403db1f372526fb35fa98f
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs2.sh: 
+  copyright: ''
+  hash: 4ee200893e30f53de0d3366bbac9c7e8524cc201b1d9debd643ad7c3acb63aba
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs3.sh: 
+  copyright: ''
+  hash: a593e2317d40fa30cf64732ee7d952ddc68ef2f69e9d9130b17b10f28e8d3d6f
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs4.sh: 
+  copyright: ''
+  hash: de5e3b2ff8be87faf053ba51d5846ac4e10322c76bc4b4f2a20357eae2a0489b
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-wcsrtombs1.sh: 
+  copyright: ''
+  hash: 7f6c7ca6878d2632a37f8f54060bcc41aa415a85487a76f7a374ba03a218e71a
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs2.sh: 
+  copyright: ''
+  hash: 738099bbea2049911db3bee0ae7d1cba4043ff740759d77197cfca1f5743d55a
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs3.sh: 
+  copyright: ''
+  hash: b5b4068a795461636f1fca1ce581a918e6298eb6d915f6fd5f9ec34597d9397f
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs4.sh: 
+  copyright: ''
+  hash: a3a4b7ceb64d8c8d819c6552cc46779e6264e5dd6bf3e0774d71504aeb22a135
+  license: ''
+  license_text: ''
+./tests/test-wctype.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 3913b2dadee190c3c7363a11f4698e6dc6e54e77ff0f6f815989f716687b8c66
+  license: GPL-3+
+  license_override: LGPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany 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 GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
+./tests/test-wcwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 621775bd4bf289a67327498e46edf2e12d578a8ba977b62f871f1957de3e43c5
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-xfprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 2a603870f561fd13002c29e2de6553989048d747097638326de087abc5d9c70d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-xmemdup0.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc.
+  hash: 4b2575757caf38d863f415b5079c56fd838ffe4a807c81bc83bd296dcbfcaee6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-xprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a3af7c6b24629c4787aa5231313b8f64c3b33cf955dc694a5294ae299c3d0ca5
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-xprintf-posix.sh: 
+  copyright: ''
+  hash: 1ce067e6f56dcb6a5a56ce1246d36be56fcc7f66b31106e803156fd220d3e1d0
+  license: ''
+  license_text: ''
+./tests/test-xstrtoimax.c: 
+  copyright: ''
+  hash: c5c3852fa55a1f51008c37b7783d23de2f4d137cf90ff959870b62f6e59587ac
+  license: ''
+  license_text: ''
+./tests/test-xstrtoimax.sh: 
+  copyright: ''
+  hash: 5d15991c8b4c13c05fc12f220e26c34f702a317d8998b1d016379ce9e18b3565
+  license: ''
+  license_text: ''
+./tests/test-xstrtol.c: 
+  copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+  hash: de7b5c726b634ae4f59358f375b594790755ca1a9cc5ca12cd7192f7ad89d763
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-xstrtol.sh: 
+  copyright: ''
+  hash: 79873e8a91e9b9088083cb4ef4d0909822f0d7ba1ecbbc98bcb63322735abcbf
+  license: ''
+  license_text: ''
+./tests/test-xstrtoul.c: 
+  copyright: ''
+  hash: 54c2b16099a222e6bc15d83a1911f4725f1e7ba22a3f302408dacfd3bd5c05a5
+  license: ''
+  license_text: ''
+./tests/test-xstrtoumax.c: 
+  copyright: ''
+  hash: 257441d9c0f1b24b0d758658b014fae6ae1c9f17a4453ccd246dde4897eaa45a
+  license: ''
+  license_text: ''
+./tests/test-xstrtoumax.sh: 
+  copyright: ''
+  hash: 4ad7ec4f7631fa5d7ab92d91e1ff3b565a3a8b6f75e0f1b86d89d8030d8252c8
+  license: ''
+  license_text: ''
+./tests/test-xvasprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: ac9ad8e875af014830c20d9e09da1311639c83e409ad8db3f4ffebd240e713f4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-yesno.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 3f971eee932cdc6643afc7e82875800dbd694b7d7cce5e5898866d3838e5f8e6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/test-yesno.sh: 
+  copyright: ''
+  hash: 6d197acd4b62c8295898322d0a74a7d9b6af375c6612d23e8c718d7d3e034d32
+  license: ''
+  license_text: ''
+./tests/unicase/test-casecmp.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 087298e7ab0c96019fc4bbda3234ee52643b112a91685571bec731d121ff32a9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-cased.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-ignorable.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-is-cased.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 77f0f5c8da18d68e55012ca31cd200ccaaf62ce13a0437f969525b324746cab9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-is-casefolded.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 8a64df7d2b39cf72a790f65a4380a5257f3906c479a5c7ff2866e2caf521459e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-is-lowercase.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e780f461c5ab26573a2f7a337d9dea72d1b535ce9b8c99aa74286904c35e5350
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-is-titlecase.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ed0e9f7db4df9c5e31d50ff099af7ffd491810832336d9a7b1fa2af8405d927b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-is-uppercase.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c166575b45c29d58756309538901f3ca2bc4976a7afe7bc9d5c96c2a940702a6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-locale-language.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 7902cd50a3a989d21413e91019f1101ca387732e3a3549e9ee5142a2968122a2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-locale-language.sh: 
+  copyright: ''
+  hash: 028ff70d75eaa2008146f1da86917178198eacf5cd2951201c91392e88636645
+  license: ''
+  license_text: ''
+./tests/unicase/test-mapping-part1.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-mapping-part2.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-predicate-part1.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-predicate-part2.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: fbaf1cf87ef4e2cb6c22e345726fbeca61d4f4fde17fe328cd36f69e383210ff
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a478780b48f6135ed858b897f9cd56b995fa2bea4331f359e845712e7a921b9b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 780d80975734f219ef2f735b4735e8977dca243032a3d46705d14bea69577b74
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4234fb2ee9a3330beba45d579838054b73cb027a32343e6a5bfecb31cb63b5a0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f43cf1df76813ed4ff41af0649ec88984148a1a58474b0510aaef5991f58e476
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 41ab69760cda76f92490056f713aa78ab1fc91f29b6e85dc11364f4d52cea2cd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 7082f5c82633a0a232479102690aec07d560deb2fa2febf9433eb417b2893b6e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: beeb3d8e2907686e31ae7bcacffa24dabd5b8341e95e71008118a27c965127a9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ec459a8224c2ed7f817f50477cce68cd280caadf3f43fdc758e094ba738dad44
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 364955699731118e15b5c015a5b0e2a0ca481108df690c7d2ca72113bdef9bbd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u16-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 256d31e7737c279ab0a7fe336bbc2d8a3b2f5c3646a923645408fb5cd647232f
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9179bf8a4dd90067464a8a095910c5a6f53ff0c8b7d4d4d970fb9905caeccab6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 46cde4ad2bde5e77ddf09650e34490837d03ffa5566c3665745417de0e7d3a1f
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4d907542dd3a62d941844298dfe70f36057246c130a8906db2071703fcc5ea26
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: afdd64c3cbdb2db2a6d0a0385c23cadd7acde81fe68ef08c39d1af0e65c1c302
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 406ff64a31f1889065d2f75d3e1352d13da79827438f5af6f72920b26e01be5e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 925d3f074e4eba6fd371968cdf931e8f266dc18f42c4da065890ec4059e99eb9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 7093a37ec59985094b8e3315f0f3195d83b1656d652ebc113e5d419c996cf396
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1378c386b1283dfea9232ebf982922c37fc43e31aa750dbcae3a513d599a37f6
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d7cfcd257ced2d32004af0d357e3e5dfcd9299fdc83447b6fd59f2b0430cb2b9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 54ba07d46dd17204c8df179dae285eae06fc47dac38440471866ccfb285780b7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u32-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9517acce3a3c32363be5998282902d14b76512c2d95007ae0426073b0ae3e66d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e55c357f7afbc9a0cfe0f69c8736e09ac327cf0efa110bd54358b26552c15d91
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: cb8087d7a4cd6f72c7df00d9b74cbb14bbe7ff92f76de65ad5e2688c4008f1cc
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 46aa95b956c978d68693a6a7d28e6119e702da6d5852b422cae8ac60feb56e7a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d2e06421cfef63befc22d5867d91edcde0be66c6e5da6ab56407c62655210ad4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 8847ed4d063cb5ef6b9ad3824c768719bf92ceb9dc999867a7e22fe80da46a62
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 40b3b6176251c3ba3f01a9dfd5ad1e90fc294c6d2187e04c7623d12dbd036e75
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4addcc8d4a006652f4e0af349822acb9ceabab38e19f7bf45f2264ce526c734e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d647fd8d839c47edffa85a2edc6a9b5f9d740295d42b861e2097069fc1d973cd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 40ee18dae3078615adcadd02bc1525436c511d80eb00a52c9c7e44cb0e260d19
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: daea8586484638f8dff9c0f3972a5e1cc4632eb4c26528f93972f8ba9f1c0435
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-u8-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 92775e814bc7c28fd54cd36641f38bacbb6e32645a9901abb6d77a7dd3266e15
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-uc_tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-uc_totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-uc_toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-ulc-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a70362d42f608ae8519496f614eab7f6840506198a7b35a54688aae06f8ec537
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-ulc-casecmp1.sh: 
+  copyright: ''
+  hash: e11e26a26c3195042709f1c53297ff0ee32afb9250cee9144746a30ed82ac770
+  license: ''
+  license_text: ''
+./tests/unicase/test-ulc-casecmp2.sh: 
+  copyright: ''
+  hash: c5f5915062ac34dd725d099fa932f794f216eb1ba89a42b3c10f1c017f83e698
+  license: ''
+  license_text: ''
+./tests/unicase/test-ulc-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4889e501871ae3a0ada5fb5a8099116bbf289c47ced06d26b7d1bcb98f805e51
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unicase/test-ulc-casecoll1.sh: 
+  copyright: ''
+  hash: 60778acf09ad204d99a6e1e57b880e68d7f53c81bc1dc0473c865922ff99020b
+  license: ''
+  license_text: ''
+./tests/unicase/test-ulc-casecoll2.sh: 
+  copyright: ''
+  hash: 085a2bd9d34dba3e6eb2f389ff01804bfde543909a631b591f44799a8632ce0c
+  license: ''
+  license_text: ''
+./tests/uniconv/test-u16-conv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u16-conv-to-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: ee723fe33867bbe1788462de1e330317d6949f49144cabd6e8e38efca0d447cb
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u16-strconv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u16-strconv-to-enc.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 7cc68dc5f7b4f76a27bf80ef26a988398dd0a4288934033f8e604467ebbbddc1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u32-conv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u32-conv-to-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 9d55d78e2f579b4085948278faa02c153cf2889171a763786c40a320053fefb9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u32-strconv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u32-strconv-to-enc.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: f046bf7ce16400906bfb439be832a1e91647af489a78820eb57d0b4ca94f0810
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u8-conv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u8-conv-to-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: b699c5da15c5e1fdb4bf45482b3895de5a4bdf4febbf595cfe241f5eca8d335a
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u8-strconv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniconv/test-u8-strconv-to-enc.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 92b274f28c6b1980e1ffc2bce550639bea47dd069072090dfbbf3db06ee6ab96
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-bidi_byname.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-bidi_name.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-bidi_of.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-bidi_test.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-block_list.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-block_of.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-block_test.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_C.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Cc.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Cf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Cn.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Co.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Cs.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_L.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Ll.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Lm.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Lo.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Lt.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Lu.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_M.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Mc.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Me.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Mn.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_N.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Nd.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Nl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_No.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_P.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Pc.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Pd.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Pe.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Pf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Pi.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Po.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Ps.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_S.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Sc.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Sk.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Sm.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_So.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Z.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Zl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Zp.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_Zs.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_and.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_and_not.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_byname.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_name.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_none.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_of.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_or.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-categ_test_withtable.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-combining.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_alnum.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_alpha.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_blank.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_cntrl.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_digit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_graph.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_lower.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_print.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_punct.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_space.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_upper.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-ctype_xdigit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-decdigit.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-decdigit.h: 
+  copyright: ''
+  hash: d15c2fbaf8a835d6cbc0c2da37cd84fba9905ba6199f021dd4def95e741aeb94
+  license: ''
+  license_text: ''
+./tests/unictype/test-digit.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-digit.h: 
+  copyright: ''
+  hash: 08530a09f8d458d98e4012b13ec2ab5df415027736aa50e44d5bce7643faffb1
+  license: ''
+  license_text: ''
+./tests/unictype/test-mirror.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-numeric.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-numeric.h: 
+  copyright: ''
+  hash: d6f23324b218034f2f4c008b20dc43866a71580a56841aac37368dc517c0ea52
+  license: ''
+  license_text: ''
+./tests/unictype/test-pr_alphabetic.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_ascii_hex_digit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_arabic_digit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_arabic_right_to_left.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_block_separator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_boundary_neutral.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_common_separator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_control.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_embedding_or_override.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_eur_num_separator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_eur_num_terminator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_european_digit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_hebrew_right_to_left.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_left_to_right.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_non_spacing_mark.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_other_neutral.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_pdf.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_segment_separator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_bidi_whitespace.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_byname.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_combining.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_composite.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_currency_symbol.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_dash.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_decimal_digit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_default_ignorable_code_point.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_deprecated.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_diacritic.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_extender.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_format_control.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_grapheme_base.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_grapheme_extend.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_grapheme_link.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_hex_digit.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_hyphen.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_id_continue.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_id_start.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_ideographic.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_ids_binary_operator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_ids_trinary_operator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_ignorable_control.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_iso_control.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_join_control.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_left_of_pair.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_line_separator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_logical_order_exception.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_lowercase.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_math.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_non_break.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_not_a_character.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_numeric.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_alphabetic.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_default_ignorable_code_point.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_grapheme_extend.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_id_continue.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_id_start.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_lowercase.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_math.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_other_uppercase.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_paired_punctuation.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_paragraph_separator.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_pattern_syntax.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_pattern_white_space.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_private_use.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_punctuation.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_quotation_mark.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_radical.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_sentence_terminal.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_soft_dotted.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_space.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_terminal_punctuation.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_test.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_titlecase.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_unassigned_code_value.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_unified_ideograph.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_uppercase.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_variation_selector.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_white_space.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_xid_continue.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_xid_start.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-pr_zero_width.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-predicate-part1.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-predicate-part2.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-scripts.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-sy_c_ident.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-sy_c_whitespace.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-sy_java_ident.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unictype/test-sy_java_whitespace.c: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-u16-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-u16-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-u32-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-u32-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-u8-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-u8-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-ulc-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unilbrk/test-ulc-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc.
+  hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniname/UnicodeDataNames.txt: 
+  copyright: ''
+  hash: a1676b8b73689618daa1662cabf719b5da50cf74a63224111534949d3e4297fb
+  license: ''
+  license_text: ''
+./tests/uniname/test-uninames.c: 
+  copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+  hash: 75aa6d9c3dd3d7292e5386895029004117b7bb082ce4f21227c105dc6af43b00
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniname/test-uninames.sh: 
+  copyright: ''
+  hash: 853dcc547f6774df0e14d3d22621c60a885132801e94352425dc0992f91b1fb4
+  license: ''
+  license_text: ''
+./tests/uninorm/NormalizationTest.txt: 
+  copyright: ''
+  hash: 886760af898381620a8980841c646ae70e894b5292c3138e6dfd75b6904deffb
+  license: ''
+  license_text: ''
+./tests/uninorm/test-canonical-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a448e6e47900ce6ef19b5c003b18e330f376cd946cbd71d73028af86abe135dd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-compat-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1a1be0d3a07610958181e24240ac9a5ecbf2ab378eee5f10e83361662f9c4846
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-composition.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a9cfc5518ecd4051f86fd4d69f17642c965db52574d6e05e7a6c48d910e863b8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-decomposing-form.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 69576c1fa17d13a8886c698b7d02742d961e36583f54b708bbd69ad096c32a93
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e098c1a33862ac43c6a81a23842bcc036bc222abd16cabf7585b40c5ffa9f13b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e9e561889a62796cb7a20a6a9044b31b813500f2a501e285020f9150b1bd8e9b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 9e4d1ad511a5edfbe76247e671aeba2f3a2ccb7d048d408440d9d64a2b6bfd86
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f852f8cc0ef2cc1d6145b5040910d25bad300da7f4f217b441bf42f48c5b684f
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 996838de5e25b4e10b7be70b8e0139e15b9852eec680d7813b7ac0e9cd4a4254
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u16-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b698b4d1c028fb6ecf50c5fbd520583195bbb1d0e55ad4b6e098487c6ad28d38
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u16-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4c837d69f99444f70aa8a5a6b4ac325ffcca6a95ec60cb4fc052a53d8bbe2a44
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u16-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 498eacf1ec13365c3b4a66b32f14a6a10374555a75e6a3a68916446e76c2b146
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u16-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0b13b0dddc12354427fafcf78195149905174c48a77bdfea7de548c164de9ec8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u16-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u16-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u16-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ceee340b1298ce1b06479da651ec2099f4356abfe07c42a2cf75b2f3ccc53855
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfc-big.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 0d2777874284fe0a8c91d2b3b2a5399b823cb2dad79d585383eb83c79b57c81c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfc-big.sh: 
+  copyright: ''
+  hash: 756efd18ad52a52ef3c82289a3036f7c5fff9304a556162298fa05572b3ad8d5
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1b33b266858f6f5526266ebd1602fa80e26475d58bdeb7e6c376bfb53ba04963
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfd-big.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 63854a2632b7cbc28cf0082fff71e81449b3459399888d8c59085994b440fbd1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfd-big.sh: 
+  copyright: ''
+  hash: 7df6600ba689632b1923565f4cea0c349205eb81ab54e48adbe2b4f19f1a0710
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1d11efc667f9a1a96ae0c1cf7a7ff48efeb6343fd34d5bf65bc009926b652e1b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfkc-big.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 03584a064142db823aa30f198f34140a95768d7cb752d9bc2b4fd2b5064d9967
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfkc-big.sh: 
+  copyright: ''
+  hash: 9c1bbb4dc3679b54e635a3f50ac29520d1bdf8fcff118b56b01b7760af61a802
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 4cb74b532545362c81ed6ff3a88bc7ae33d0663e9262942ee6c264d1190e1fbd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfkd-big.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 12acb786931e36a2d9a6ba2d9807d967a72b06b659b6e37181b20b6168235f5f
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-nfkd-big.sh: 
+  copyright: ''
+  hash: 59c7882b0d8e4cb0a3f3b3d4deceaed6b01da8bcd5dcd430931782d394e9a581
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 35ed77ced7909ca500b2c08af6836d013992774deafe0846b72ecfa13d6f031c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-normalize-big.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-normalize-big.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u32-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 3b3591a744117db52df87ebfee1374c242580690a9d38dd72b9264d47d519b12
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u8-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1cc025cec921d4f28a082455f5ee5c4c03ba8293305aa7b8c3b0c1fbba30c4fa
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u8-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: ab1a65db2659f7732acdd205f0b1ea3117f4b85013e5c38a9f46d225ad2ae0f0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u8-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d7082ba6f4b74e4554c6653e18151eb793cdda74f1b47770530230295d2e3e2e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u8-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: a813ff37ff6161e75f5290a0fc5a2e80284c57f42d059e4ba9bd16159a1fdfc8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u8-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u8-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-u8-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: d7aa94f225cc5310484036b430a51f201b05b9bc7784316c1d21f6a605a339ea
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uninorm/test-uninorm-filter-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: b66d309ad83a237d8d0a247cedfab3884798bad886cc15f3a6ba1d9f5e13b9ad
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 4cd1fc1c179cccfb1ae23beba8905574b7607b734ca02cb70a1267216322a5a4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 76a1f62bd7c8d5161add6df04b31cd91ada3814cc0ca69bd9753a73a17dfcea4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 909d6f0cefa405afb2e1072bb26eb4df9ba77e176f713b5f446a0c35b6b45ee7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 3d425ccab1f150ddf5f5b81607ce8bfcfdd0c2ccb574609fe36a93297b08258e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: c42edbef700ece3826498e7ec7562a528f72171d32e1dcadd5589aade0a62cc1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u16-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 6b80497faada59178ae32663d8cc7aac6607d31f69c43bd2ab2a411492bfa495
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u16-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d559b3310501b16f524c4cf845f697c47b883582976b38184410d2f88971682c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: bbea74e4dfbebb15cf5bdf3dae5d9e5b9c0fecf7b81cd5d597686a27b8e12570
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u16-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 51f1b19e6f03063d8833db2914a0b59598e146143ff42eb5789564b39888d994
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: d249b9b64091c3e4f41e6e9b0e7e856c278716eb4db6a989f603c9859fedf963
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 8b746d35a6ed28682834e7bd2e553b62a12e899d022589df093e016b38fb03af
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 2aa402941192f63adcad98959781ac2774070979f335f1332164a3863cc54404
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 2d05aa67379ffb2f79eb2308a4bc06bfd43b048ee90b89ae18730279e363c524
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: b083a2377405a07fe51eb035ad09a0489bf65067207a0566910712abcb30726b
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u32-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 4fcf74ce885ab101762032b20b3ad9f1cfbfb52430e736add8c65743ec40eade
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u32-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: eabc0bb1a9dbe71c93902c4a1490621caad6c67d3e03f4ac411b05807cb595e4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 2fb5c97c1868ff9f912aae2bc8784dbe759e65cfcb02ac8263da73868a208a49
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u32-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: 36cf2e191798aa14ab7c7a791b0d61357029ec015af3c1feb99aaf853e1b8803
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: f2754ecea17ff7e997c7ba8312c71a022f600e49807de5f420c8bb62f0871cd8
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 46bdc3f468fe19b87aaacbecbd84f662c90c6ab838125defd47e5412c9bd67c1
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 1b1973376c0d8b5d5f884d50b7b1ab402e3e31243b03bc3f8e9c3251e39c66ec
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: feffbb7a585c58b542b866102777167000d487253536607fd7500a6f21c5a1d5
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 6964834677d5fd9d5fcec4e56ebc23c309ef467f98ae1827e81e9739de99eaa2
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u8-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 59c1d2cbfeabd9ca557c7c72f2f556faab45e78c6113db11244cbe00eafb4c91
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u8-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 005e299ef65aa2dfd2c981e1fb5ae933957acfc190152132b9bd9da6b75afc68
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: f0f1a7e874f9cdb481d2920816076e14198c8279ed8878458668578ce82643d5
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-u8-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: ecfe8f24ee3cdd3323a0192f09dd50590f4201122e5b203aa84879ae682ff319
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: f460de9dace19bfa0b9e79f25557bd411248db7e9c41ded07d1b450087c5e1cb
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: cd00792dc677501bacb09b04f578ee318c85955822b7e39b71f20ded701252f9
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc.
+  hash: 52719b059d0fe4592ec7de9c12156520eacdf740e6a9b43edaf32d1650a8c992
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 38f11760c3832f5b714de061118c87e63e5e70c624e5f25bb835676b6055e6b4
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: be7efc5b5cb950d1b005d9fe5af23b12c0eb89bc049db7294d999044a6329e1e
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-ulc-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 90ffc7b3f6cb85309a0e342f0f768c7a4c2c729a08d2b831a0f549e8e01718d0
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-ulc-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 0db7617d589e3703964119869d14691abb2498a1fc25d64a755eec64dfd07413
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: bb840d45e39a1be31b0b4daad61d03d30d8376f10220704e06c94f655cc3a564
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/unistdio/test-ulc-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc.
+  hash: d062894ca1aa3e3cc138093e10d57c39a38df1464ffcf75538249c801da83c35
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwbrk/test-u16-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 11ab1e7ac1c6c7ba08cea587aadb03a6aa110a3169c7bf643d0ea2764e240537
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwbrk/test-u32-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f49f7bebcb1395a7fa915f963b4a677a3698fc1d2e5ff93f955be0299357baee
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwbrk/test-u8-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: bb82bf9821127ceb2c7da498d0c101d05faef0dd319c018e41d56ed0f3ac1c31
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwbrk/test-ulc-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: 1609df8eadc7abda56ce3dec4a2ec747326360d74afb059c522331d5b242533c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwbrk/test-ulc-wordbreaks.sh: 
+  copyright: ''
+  hash: d1d3525c27882f7ded09b3b5fa177ebddcfb16a75b19ef3804ae6f4731f2962c
+  license: ''
+  license_text: ''
+./tests/uniwidth/test-u16-strwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: e5c07a0d8d419dff0b836a33748dee1cc6e0f9d71808ca383caefda4c8f0d551
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-u16-width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 6874b1458a692740482ff6e7172bf490f6dcc01985040b888e7bd2d7f7243261
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-u32-strwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: a4d26a909a61a615cf5aa5b183b291ca10258e5123a9eea0aec24856da402b1d
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-u32-width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: e651f14a8b91f79e7b9cbf7403e88af982c9d37e0b1a5327c89da40f1bde988c
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-u8-strwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: fcf5c6c2c481b0375772edb286bed88b0ca421d6736214ae4e0a64567beb75c7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-u8-width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 9e7db4127bec42b0e97fa3a07242099cb818e1e533c208c158bcc2969c7d7c31
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-uc_width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-uc_width2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc.
+  hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./tests/uniwidth/test-uc_width2.sh: 
+  copyright: ''
+  hash: 26f58b4ef6788b773c28c79baabad9e1739f820166b24458450bfa7cd542370f
+  license: ''
+  license_text: ''
+./tests/zerosize-ptr.h: 
+  copyright: 2009 Free Software Foundation, Inc.
+  hash: f1e50a6aba1af63593fff7b9ec71317ade999e0e10d738a6594aa3de16536da7
+  license: GPL-3+
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./top/GNUmakefile: 
+  copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc.
+  hash: 1db2e4a3959febe32d5c70280a5b28547600d854b8d1b61ec85d3a9b670a2b23
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./top/maint.mk: 
+  copyright: 2001-2009 Free Software Foundation, Inc.
+  hash: eef091164cb5f26dc538fb6b3940b82d779d05390f32dffea43d1161be06adc1
+  license: GPL-3+
+  license_override: GPL
+  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 3 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, see <http://www.gnu.org/licenses/>.\n"
+  license_text_override: "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 3 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, see <http://www.gnu.org/licenses/>.\n"
+./users.txt: 
+  copyright: ''
+  hash: f5c05b7f2c33b93dcda0aa8f108195721e70410ef027614d4e342b00ccd15536
+  license: ''
+  license_text: ''
diff --git a/debian/clscan/new.txt b/debian/clscan/new.txt
new file mode 100644 (file)
index 0000000..5ef211a
--- /dev/null
@@ -0,0 +1,127366 @@
+File: ./COPYING
+Hash: 60c25a32bddb8e12cdd819cc29ec9a6d941431c6a013a71e2878536fa16d4dd7
+Copyright:
+License:
+#Header:
+#$Id: COPYING,v 1.3 2006-10-26 16:20:28 eggert Exp $
+#The files in here are mostly copyright (C) Free Software Foundation, and
+#are under assorted licenses.  Mostly, but not entirely, GPL.
+#
+#Many modules are provided dual-license, either GPL or LGPL at your
+#option.  The headers of files in the lib directory (e.g., lib/error.c)
+#state GPL for convenience, since the bulk of current gnulib users are
+#GPL'd programs.  But the files in the modules directory (e.g.,
+#modules/error) state the true license of each file, and when you use
+#'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
+#the files to have an LGPL header as part of copying them from gnulib
+#to your project directory, or fails because the modules you requested
+#were not licensed under LGPL.
+#
+#Some of the source files in lib/ have different licenses.  Also, the
+File: ./ChangeLog
+Hash: 0fc0c9c0235be8c8ba21d40facf534e03437b77886effa77a634fc9a1929b3e8
+Copyright:
+License:
+#Header:
+#2009-09-07  Eric Blake  <ebb9@byu.net>
+#
+#      rename: modernize replacement
+#      * modules/rename (Depends-on): Add stdio.
+#      (configure.ac): Declare witness.
+#      * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
+#      stdio take care of replacement.
+#      * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
+#      * modules/stdio (Makefile.am): Substitute them.
+#      * lib/stdio.in.h (rename): Declare replacement.
+#      * lib/rename.c (includes): Allow cross-compilation to non-windows
+#      machines.
+#      * doc/posix-functions/rename.texi (rename): Improve
+#      documentation.
+File: ./DEPENDENCIES
+Hash: 3c8640aeff44fe6c30a27836e926fcaa6f6a5f4d35d8c540f71f7c568cf60d4f
+Copyright:
+License:
+#Header:
+#The following packages are needed by maintainers for using
+#'gnulib-tool'.  In general, Gnulib prefers the latest stable
+#version of each package, but in some cases it also supports
+#older versions; this caters to commonly-used software
+#distributions that may lag behind the latest stable package.
+#Support for older versions is not guaranteed, though, and
+#the version numbers in the following list may be incremented
+#at any time.
+#
+#* A C runtime, compiler, linker, etc.
+#  + Mandatory. Using the platform's native 'cc' gives good portability
+#    exposure, but you can also use GCC 2.95 or newer.
+#  + GCC Homepage:
+#    http://gcc.gnu.org/
+#  + Download:
+File: ./MODULES.html.sh
+Hash: 30633aa046887d3d7c2edee238d5e009b260d8eaec001809cdcdcef205089d59
+Copyright: 2002-2009 Free Software Foundation, Inc.
+License: 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 (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.
+##
+## 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: ./Makefile
+Hash: 7ad5a3ccd8892f7a29384dd4ed455a2c57cdadf2624c943f51127745751ffbe7
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License:
+ Copying and distribution of this file, with or without modification,
+ in any medium, are permitted without royalty provided the copyright
+ notice and this notice are preserved.
+#
+## Produce some files that are not stored in the repository.
+#all:
+#
+## Produce the documentation in readable form.
+#info html dvi pdf:
+#      cd doc && $(MAKE) $@ && $(MAKE) mostlyclean
+#
+## Perform some platform independent checks on the gnulib code.
+File: ./NEWS
+Hash: 141ae5843fb9df760bf1e31402eb714cf1261d9c6db16e4db30aeba3acf9e663
+Copyright:
+License:
+#Header:
+#Important notes
+#---------------
+#
+#User visible incompatible changes
+#---------------------------------
+#
+#Date        Modules         Changes
+#
+#2009-09-04  link-follow     The macro LINK_FOLLOWS_SYMLINK is now tri-state,
+#                            rather than only defined to 1.
+#
+#2009-09-03  openat          The include files are standardized to POSIX 2008.
+#                            For openat, include <fcntl.h>; for
+#                            fchmodat, fstatat, and mkdirat, include
+#                            <sys/stat.h>; for fchownat and unlinkat,
+File: ./README
+Hash: 3da1ae1f2de3a84a70abca2325e281203ffe123afbc003420697463b56efd35c
+Copyright:
+License:
+#Header:
+#Gnulib
+#======
+#
+#While portability across operating systems is not one of GNU's primary
+#goals, it has helped introduce many people to the GNU system, and is
+#worthwhile when it can be achieved at a low cost.  This collection helps
+#lower that cost.
+#
+#Gnulib is intended to be the canonical source for most of the important
+#"portability" and/or common files for GNU projects.  These are files
+#intended to be shared at the source level; Gnulib is not a typical
+#library meant to be installed and linked against.  Thus, unlike most
+#projects, Gnulib does not normally generate a source tarball
+#distribution; instead, developers grab modules directly from the
+#source repository.
+File: ./build-aux/announce-gen
+Hash: 9ebe62448e2c3a71f08521ec64d65dd561761e446347edc914f396fe810040ba
+Copyright: 2002-2009 Free Software Foundation, Inc.
+License: 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-01 06:47'; # 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/bootstrap
+Hash: f97568fc9b26977bf8aa781f26a1f5df7c9e5dc7c8d9a4e54e2c8d7892765096
+Copyright: 2003-2009 Free Software Foundation, Inc.
+License: 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
+#
+## Bootstrap this package from checked-out sources.
+#
+## Copyright (C) 2003-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: ./build-aux/bootstrap.conf
+Hash: 95cc00b43d60d3bff61561355253d777ac82e105338bf23faf29168086d392c2
+Copyright: 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+## Bootstrap configuration.
+#
+## Copyright (C) 2006, 2007 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
+File: ./build-aux/compile
+Hash: 1a1d949ff906c036a902a8021154e8f127f6bdeaa7b22843a9bd13badc24253a
+Copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##! /bin/sh
+## Wrapper for compilers which do not understand `-c -o'.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009  Free Software
+## Foundation, Inc.
+## Written by Tom Tromey <tromey@cygnus.com>.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2, or (at your option)
+## any later version.
+##
+## This program is distributed in the hope that it will be useful,
+File: ./build-aux/config.guess
+Hash: 1fc09da52d50a533ff9166226320f69603e3c5189271118a66d0cc514e6a3d71
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##! /bin/sh
+## Attempt to guess a canonical system name.
+##   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+##   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+##   Free Software Foundation, Inc.
+#
+#timestamp='2009-08-19'
+#
+## This file 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
+File: ./build-aux/config.libpath
+Hash: ac72222f705d2427683a67b643cf25045db2915ab66319cf535c68b847472ad3
+Copyright: 1996-2008 Free Software Foundation, Inc.
+License: 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
+## Output a system dependent set of variables, describing how to set the
+## run time search path of shared libraries in an executable at run time.
+##
+##   Copyright 1996-2008 Free Software Foundation, Inc.
+##   Taken from GNU libtool, 2003
+##   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+##
+##   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
+File: ./build-aux/config.rpath
+Hash: c52259321cfea86c34876e34db5356168f319d7f0dda0fd76efa9dce5e6fea4d
+Copyright: 1996-2008 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:
+##! /bin/sh
+## Output a system dependent set of variables, describing how to set the
+## run time search path of shared libraries in an executable.
+##
+##   Copyright 1996-2008 Free Software Foundation, Inc.
+##   Taken from GNU libtool, 2001
+##   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+##
+##
+## The first argument passed to this file is the canonical host specification,
+##    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
+## or
+File: ./build-aux/config.sub
+Hash: 6e2b7e1143d443ea670be8edea2db4d9a6ac57e6f22aa4a88443959ab8ad42c7
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##! /bin/sh
+## Configuration validation subroutine script.
+##   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+##   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+##   Free Software Foundation, Inc.
+#
+#timestamp='2009-08-19'
+#
+## This file is (in principle) common to ALL GNU software.
+## The presence of a machine in this file suggests that SOME GNU software
+## can handle that machine.  It does not imply ALL GNU software can.
+##
+## This file 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
+File: ./build-aux/csharpcomp.sh.in
+Hash: 13d53b69f8e2663d2abeb4053b3cd45b2b3f99563e826a5fd67abcf4ac201e22
+Copyright: 2003-2006 Free Software Foundation, Inc.
+License: 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
+## Compile a C# program.
+#
+## Copyright (C) 2003-2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+## 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/csharpexec.sh.in
+Hash: 08e6e1564fcf7509ae893ac7b3121aa831344458a4ff420c1994918d9792b151
+Copyright: 2003, 2005 Free Software Foundation, Inc.
+License: 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
+## Execute a C# program.
+#
+## Copyright (C) 2003, 2005 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+## 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/depcomp
+Hash: ab3cbcc8d9b25ff49daba60a573055149a8330158ab61b0602538a1cdf27e9f8
+Copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##! /bin/sh
+## depcomp - compile a program generating dependencies as side-effects
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1999, 2000, 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 2, or (at your option)
+## any later version.
+#
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+File: ./build-aux/elisp-comp
+Hash: 650765cd58e0b384cc47b3c257ea4955be8b26117eb05106cd7a39ef002314ed
+Copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##!/bin/sh
+## Copyright (C) 1995, 2000, 2003, 2004, 2005, 2009 Free Software
+## Foundation, Inc.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Franc,ois Pinard <pinard@iro.umontreal.ca>, 1995.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2, or (at your option)
+## any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+File: ./build-aux/gendocs.sh
+Hash: 203ece29ab9caad64ebd3b3a75725444676b43bd66f2f22b8fc836c5bab0ec78
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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-04-08.09
+#
+## 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: a08c7e5c0619d75de3d15e0bdf4ff226dc7f5a89a1e3c6f7b1d5b664b96cf692
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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=2008-04-08.07
+#
+## Copyright (C) 2007-2008 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, 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/gitlog-to-changelog
+Hash: 9cca6130908ff793b8a1af70cc476f55970e378cddd4177d5a602decbeb94542
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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
+## Convert git log output to ChangeLog format.
+#
+#my $VERSION = '2009-08-12 16:49'; # 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) 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.
+File: ./build-aux/gnupload
+Hash: bff7381ec4c19e81634ea630fca8a053cfe1333142662cd70b32c4fe46f3e36e
+Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##!/bin/sh
+## Sign files and upload them.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 2004, 2005, 2006, 2007, 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 2, or (at your option)
+## any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+File: ./build-aux/install-reloc
+Hash: 613894d1c2a2855e0f3eb82986175598d077c45c05dbac2f339031487a83f4e4
+Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+License: 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
+## install-reloc - install a program including a relocating wrapper
+## Copyright (C) 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+## 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.
+##
+######################################################################
+### UPTOHERE
+######################################################################
+File: ./build-aux/install-sh
+Hash: 5dcf8a8dd376f4c95767a2dcb626e89a66d6f2fda2352f534a296ac6cc9a20b3
+Copyright: 1994 X Consortium
+License:
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to
+ deal in the Software without restriction, including without limitation the
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+ X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+ AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
+ TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ Except as contained in this notice, the name of the X Consortium shall not
+ be used in advertising or otherwise to promote the sale, use or other deal-
+ ings in this Software without prior written authorization from the X Consor-
+ tium.
+ FSF changes to this file are in the public domain.
+#Header:
+##!/bin/sh
+## install - install a program, script, or datafile
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## This originates from X11R5 (mit/util/scripts/install.sh), which was
+## later released in X11R6 (xc/config/util/install.sh) with the
+## following copyright and license.
+##
+## Copyright (C) 1994 X Consortium
+##
+## Permission is hereby granted, free of charge, to any person obtaining a copy
+## of this software and associated documentation files (the "Software"), to
+## deal in the Software without restriction, including without limitation the
+## rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+File: ./build-aux/javacomp.sh.in
+Hash: a2fa68883ebe7994ced1edf628a9c6cb6d79ef3edfd0c14996e1e14ef0d7c4c6
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: 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
+## Compile a Java program.
+#
+## Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+##
+## This program is free software: you can redistribute it and/or modify
+## 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/javaexec.sh.in
+Hash: 8b8c346d69504f34a6426de103455a52b09deb2a0c5a74bb8d4368cad9d6b8d4
+Copyright: 2001, 2006 Free Software Foundation, Inc.
+License: 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
+## Execute a Java program.
+#
+## Copyright (C) 2001, 2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+##
+## This program is free software: you can redistribute it and/or modify
+## 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/ldd.sh.in
+Hash: 6bfa3933015b9b05e431eb13f03e5297cc73bb56bc426d811f1fa41ec7844650
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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
+## Determine the dynamically linked dependencies of a program.
+#
+## Copyright (C) 2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2006.
+##
+## 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/link-warning.h
+Hash: cb78032cfaf626adb1bc97576502516519b4888988a51aaa1c4963817b48b0e2
+Copyright:
+License:
+#Header:
+#/* GL_LINK_WARNING("literal string") arranges to emit the literal string as
+#   a linker warning on most glibc systems.
+#   We use a linker warning rather than a preprocessor warning, because
+#   #warning cannot be used inside macros.  */
+##ifndef GL_LINK_WARNING
+#  /* This works on platforms with GNU ld and ELF object format.
+#     Testing __GLIBC__ is sufficient for asserting that GNU ld is in use.
+#     Testing __ELF__ guarantees the ELF object format.
+#     Testing __GNUC__ is necessary for the compound expression syntax.  */
+## if defined __GLIBC__ && defined __ELF__ && defined __GNUC__
+##  define GL_LINK_WARNING(message) \
+#     GL_LINK_WARNING1 (__FILE__, __LINE__, message)
+##  define GL_LINK_WARNING1(file, line, message) \
+#     GL_LINK_WARNING2 (file, line, message)  /* macroexpand file and line */
+##  define GL_LINK_WARNING2(file, line, message) \
+File: ./build-aux/mdate-sh
+Hash: ae36e3c36cd08de4a5aaadc7311d0863108cbc4fcda21b18e902f6218e675035
+Copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##!/bin/sh
+## Get modification time of a file or directory and pretty-print it.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free
+## Software Foundation, Inc.
+## written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2, or (at your option)
+## any later version.
+##
+## This program is distributed in the hope that it will be useful,
+File: ./build-aux/missing
+Hash: d8c7220550f4985316cb4c11d4c304b84debd55902b7528ad3f944a478f0c90e
+Copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##! /bin/sh
+## Common stub for a few missing GNU programs while installing.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
+## 2008, 2009 Free Software Foundation, Inc.
+## Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
+#
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2, or (at your option)
+## any later version.
+#
+## This program is distributed in the hope that it will be useful,
+File: ./build-aux/mkinstalldirs
+Hash: fbad76aa017d3ccba0cfd78db353d5c15c571f4617320fd53b7ee67c788cbc65
+Copyright:
+License:
+  Original author: Noah Friedman <friedman@prep.ai.mit.edu>
+  Created: 1993-05-16
+  Public domain.
+#Header:
+##! /bin/sh
+## mkinstalldirs --- make directory hierarchy
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Original author: Noah Friedman <friedman@prep.ai.mit.edu>
+## Created: 1993-05-16
+## Public domain.
+##
+## This file is maintained in Automake, please report
+## bugs to <bug-automake@gnu.org> or send patches to
+## <automake-patches@gnu.org>.
+#
+#nl='
+#'
+File: ./build-aux/mktempd
+Hash: 5c32320b58d10b6b74af578eb9a1bf5015360211ac2b2932f4303648b3e7a354
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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
+## Create a temporary directory, much like mktemp -d does.
+#
+## Copyright (C) 2007-2008 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: ./build-aux/move-if-change
+Hash: 804812198e7aadc810a167cc8015b32770e16ac23315a92f8ce3bba2c1ecbfe1
+Copyright: 2002-2007 Free Software Foundation, Inc.
+License: 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
+## Like mv $1 $2, but if the files are the same, just delete $1.
+## Status is zero if successful, nonzero otherwise.
+#
+#VERSION='2007-09-28 23:10'; # 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-2007 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
+File: ./build-aux/ncftpput-ftp
+Hash: 462b4e7cc8f6796fd32420382ed3f3f5e2246d58bd186469614dcd8d3a89a239
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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 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/pmccabe.css
+Hash: 0d101dc42f369f71b997fc77eb3bc11d765e5c437b6824ef244bda483f9a1c48
+Copyright:
+License:
+#Header:
+#body {
+#
+#    font-family: Helvetica, sans-serif;
+#
+#}
+#
+#.page_title {
+#
+#    font: 18pt Georgia, serif;
+#/*    font-size: 1.5em;
+#    font-weight: bold; */
+#    color: darkred;
+#    border-bottom: 2px solid darkred;
+#}
+File: ./build-aux/pmccabe2html
+Hash: a93c5cea3b0bf8641cfbe982861478458a8419d5adffa3e4e88c5c5450d54ebe
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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/awk -f
+## pmccabe2html - pmccabe to html converter
+#
+## Copyright (C) 2007, 2008 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: ./build-aux/po/Makefile.in.in
+Hash: 5580fc36bc0f59414a3844a04f9f2f4185bddc3a262525fa98898da44a4a9e95
+Copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+License:
+ This file can be copied and used freely without restrictions.  It can
+ be used in projects which are not available under the GNU General Public
+ License but which still want to provide support for the GNU gettext
+ functionality.
+ Please note that the actual code of GNU gettext is covered by the GNU
+ General Public License and is *not* in the public domain.
+## Origin: gettext-0.17
+#GETTEXT_MACRO_VERSION = 0.17
+#
+#PACKAGE = @PACKAGE@
+#VERSION = @VERSION@
+File: ./build-aux/po/remove-potcdate.sin
+Hash: ff1cc3a86fdab7c5764e80f794afd6f5e81d05421c0e52dc27c4cc93e9546f19
+Copyright:
+License:
+#Header:
+## Sed script that remove the POT-Creation-Date line in the header entry
+## from a POT file.
+##
+## The distinction between the first and the following occurrences of the
+## pattern is achieved by looking at the hold space.
+#/^"POT-Creation-Date: .*"$/{
+#x
+## Test if the hold space is empty.
+#s/P/P/
+#ta
+## Yes it was empty. First occurrence. Remove the line.
+#g
+#d
+#bb
+#:a
+File: ./build-aux/reloc-ldflags
+Hash: 7455efaa7fbcc667838f3599223fba7bddc4873e38527f938e7168c709602ffb
+Copyright: 2003 Free Software Foundation, Inc.
+License: 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
+## Output a system dependent linker command for putting a relocatable library
+## search path into an executable.
+##
+##   Copyright 2003 Free Software Foundation, Inc.
+##   Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+##   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
+File: ./build-aux/relocatable.sh.in
+Hash: 9999da027001765970462a1eefc6bb884cbed4f8e7c548585f0b21c86e9851da
+Copyright: 2003, 2005-2007 Free Software Foundation, Inc.
+License: 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:
+## The functions in this file provide support for relocatability of
+## shell scripts.  They should be included near the beginning of each
+## shell script in a relocatable program, by adding @relocatable_sh@
+## and causing the script to be expanded with AC_CONFIG_FILES.  A
+## small amount of additional code must be added and adapted to the
+## package by hand; see doc/relocatable-maint.texi (in Gnulib) for
+## details.
+##
+## Copyright (C) 2003, 2005-2007 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/texinfo.tex
+Hash: 6e6bda9f2252f034e86fb076cb53b27dbe4b35c676205310c46642a86d6bf51d
+Copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#% texinfo.tex -- TeX macros to handle Texinfo files.
+#%
+#% Load plain if necessary, i.e., if running under initex.
+#\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
+#%
+#\def\texinfoversion{2009-08-14.15}
+#%
+#% Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
+#% 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+#% 2007, 2008, 2009 Free Software Foundation, Inc.
+#%
+#% This texinfo.tex file 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/update-copyright
+Hash: a49986e631d5bcdc1ae01896d48c4012ff114f92427b2290dc166a7512804b56
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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 -0777 -pi
+## Update an FSF copyright year list to include the current year.
+#
+#my $VERSION = '2009-08-14.18:56'; # 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: ./build-aux/useless-if-before-free
+Hash: 3328c2c72241c0c23c28e4c19a5a353b08e308334956478cce81534a6a5cf7e2
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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 -T
+## Detect instances of "if (p) free (p);".
+## Likewise for "if (p != NULL) free (p);".  And with braces.
+## Also detect "if (NULL != p) free (p);".
+## And with 0 in place of NULL.
+#
+#my $VERSION = '2009-04-16 15:57'; # 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) 2008, 2009 Free Software Foundation, Inc.
+#
+## This program is free software: you can redistribute it and/or modify
+File: ./build-aux/vc-list-files
+Hash: 37cfcaca7e77bc33ad04c6bc2f69980b41136c6610fa24b30dd929126d28e8eb
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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
+## List version-controlled file names.
+#
+## Print a version string.
+#scriptversion=2009-07-21.16; # UTC
+#
+## Copyright (C) 2006-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
+File: ./build-aux/x-to-1.in
+Hash: 435c01c15a67e002b489e7cd3ceaa0680f4817e6410f07f8209bc67a061f9498
+Copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
+License: 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 (C) 2001, 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
+## 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: ./check-module
+Hash: 0773e749793f3ec28522fb356985b4f51ce4d7f17b99c7f1ec92a80bfff8b026
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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
+## Check a gnulib module.
+#
+## Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#
+## This file 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.
+##
+######################################################################
+## UPTOHERE
+######################################################################
+File: ./config/argz.mk
+Hash: 6931c96d920bb98e9705beea49aa8e61ce728439d16bcc702289e9f16d04fe90
+Copyright:
+License:
+#Header:
+## Generate argz.c and argz.in.h from glibc sources.
+#
+#glibc_dir = ../glibc
+#glibc_dir = /mirror/d/glibc
+#
+#argz_names = \
+#  append addsep ctsep insert next stringify count \
+#  extract create delete replace
+#argz_files = $(patsubst %, $(glibc_dir)/string/argz-%.c, $(argz_names))
+#
+#define print-header
+#  printf '%s\n'                                                               \
+#"/* Functions for dealing with '\0' separated arg vectors."           \
+#"   Copyright (C) 1995-1998, 2000-2002, 2006 Free Software Foundation, Inc."\
+#"   This file is part of the GNU C Library."                          \
+File: ./config/srclist-update
+Hash: 07d2f67dd25798899d772b1db8639368147e43615c175443b9d8720f7ae0d428
+Copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
+License: 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
+## $Id: srclist-update,v 1.19 2007-03-30 23:44:27 karl Exp $
+##
+## Check for files in directory $1 being up to date, according to the
+## list on stdin.  Don't actually make any changes, just show the diffs.
+##
+## Copyright (C) 2002, 2003, 2005, 2007, 2008 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
+File: ./config/srclist.txt
+Hash: 82bb09655cee0a765f990da640454c5099c5e49f722a0d14d35fde12270d2983
+Copyright:
+License:
+#Header:
+## $Id: srclist.txt,v 1.152 2007-06-21 18:41:50 karl Exp $
+## Files for which we are not the source.  See ./srclistvars.sh for the
+## variable definitions.
+#
+#$GNUCONFIG/config.guess               build-aux
+#$GNUCONFIG/config.sub         build-aux
+##
+#$AUTOMAKE/lib/compile         build-aux
+#$AUTOMAKE/lib/depcomp         build-aux
+#$AUTOMAKE/lib/elisp-comp      build-aux
+#$AUTOMAKE/lib/gnupload                build-aux
+#$AUTOMAKE/lib/install-sh      build-aux
+#$AUTOMAKE/lib/mdate-sh                build-aux
+#$AUTOMAKE/lib/missing         build-aux
+#$AUTOMAKE/lib/mkinstalldirs   build-aux
+File: ./config/srclistvars.sh
+Hash: 009a6f6d36cf2b47a67c2e404d912b491cb310a8653631b8302a8691da1b7f6b
+Copyright: 2002, 2003, 2004 2005, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+## $Id: srclistvars.sh,v 1.28 2006-08-22 19:38:57 eggert Exp $
+## Variables for srclist-update and srclist.txt.
+## Will change for each user.
+#
+## Copyright (C) 2002, 2003, 2004 2005, 2006, 2008
+## Free Software Foundation, Inc.
+#
+## This file 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
+File: ./doc/COPYING.LESSERv2
+Hash: c5e2ab2668641c2e13afa9e23551ae614f835ac715d30aec90e5d7bada5ecbff
+Copyright: 1991, 1999 Free Software Foundation, Inc.
+License:
+  Everyone is permitted to copy and distribute verbatim copies
+  of this license document, but changing it is not allowed.
+#
+#[This is the first released version of the Lesser GPL.  It also counts
+# as the successor of the GNU Library Public License, version 2, hence
+# the version number 2.1.]
+#
+#                          Preamble
+#
+#  The licenses for most software are designed to take away your
+File: ./doc/COPYING.LESSERv3
+Hash: f5b4a69119b8d0acfc04d77831874f339432846e9ed129e412b15fb328c9d2c6
+Copyright: 2007 Free Software Foundation, Inc.
+License:
+  Everyone is permitted to copy and distribute verbatim copies
+  of this license document, but changing it is not allowed.
+#
+#
+#  This version of the GNU Lesser General Public License incorporates
+#the terms and conditions of version 3 of the GNU General Public
+#License, supplemented by the additional permissions listed below.
+#
+#  0. Additional Definitions.
+#
+#  As used herein, "this License" refers to version 3 of the GNU Lesser
+File: ./doc/COPYINGv2
+Hash: 2b241f6064bd3616cb72a4d0c6dae9821c891d4c8fd63493b6ad9933c3be72c9
+Copyright: 1989, 1991 Free Software Foundation, Inc.
+License:
+  Everyone is permitted to copy and distribute verbatim copies
+  of this license document, but changing it is not allowed.
+#
+#                          Preamble
+#
+#  The licenses for most software are designed to take away your
+#freedom to share and change it.  By contrast, the GNU General Public
+#License is intended to guarantee your freedom to share and change free
+#software--to make sure the software is free for all its users.  This
+#General Public License applies to most of the Free Software
+File: ./doc/COPYINGv3
+Hash: cbf8d8990150fe3b4cd5e988bb081217b05d988766f352fed4de6d2e5a35a58e
+Copyright: 2007 Free Software Foundation, Inc.
+License:
+  Everyone is permitted to copy and distribute verbatim copies
+  of this license document, but changing it is not allowed.
+#
+#                            Preamble
+#
+#  The GNU General Public License is a free, copyleft license for
+#software and other kinds of works.
+#
+#  The licenses for most software and other practical works are designed
+#to take away your freedom to share and change the works.  By contrast,
+#the GNU General Public License is intended to guarantee your freedom to
+File: ./doc/Copyright/assign.changes.manual
+Hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+Copyright:
+License:
+#Header:
+#The way to assign copyright to the Foundation is to sign an assignment
+#contract.  This is what legally makes the FSF the copyright holder so
+#that we can register the copyright on the new version.
+#I'm assuming that you wrote these changes yourself;
+#if other people wrote parts, we may need papers from them.
+#
+#If you are employed to do writing (even at a university), or have
+#made an agreement with your employer or school saying it owns text
+#you write, then you and we need a signed piece of paper from your
+#employer disclaiming rights to your changes.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license manuals produced there will do.  Here is a sample wording:
+File: ./doc/Copyright/assign.future.manual
+Hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+Copyright:
+License:
+#Header:
+#The way to assign copyright to the Foundation is to sign an assignment
+#contract.  This is what legally makes the FSF the copyright holder so
+#that we can register the copyright on the new version.
+#I'm assuming that you wrote these changes yourself;
+#if other people wrote parts, we may need papers from them.
+#
+#If you are employed to do writing (even at a university), or have
+#made an agreement with your employer or school saying it owns text
+#you write, then you and we need a signed piece of paper from your
+#employer disclaiming rights to your changes.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license manuals produced there will do.  Here is a sample wording:
+File: ./doc/Copyright/assign.manual
+Hash: fc744c2d1b5aa2c596922b17b46b760d852e99717883fe9fd547d5f5bd318a9c
+Copyright:
+License:
+#Header:
+#The way to assign copyright on this manual to the Foundation is to
+#sign an assignment contract.
+#
+#In addition, if you have made an agreement with an employer or school
+#to give them rights to such work, or if it might be considered part of
+#your job, then you and we need a signed piece of paper from your
+#employer or school, disclaiming rights to the manual.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license works produced there will do.  Here is a sample wording:
+#
+#  Digital Stimulation Corporation hereby disclaims all copyright interest
+#  in the manual, "The Automatic Manual", written by Mr. Write, including
+#  both the present version of the manual and his/her future changes and
+File: ./doc/Copyright/assign.translation.manual
+Hash: 5fd32468982f7402a68b288a2906b1351ffe45a2bb839b5ae13ab97a63827460
+Copyright:
+License:
+#Header:
+#The way to assign copyright to the Foundation is to sign an assignment
+#contract.  This is what legally makes the FSF the copyright holder so that
+#we can register the copyright on the new version.  I'm assuming that you
+#did all the translating yourself; if other people wrote parts, we may need
+#papers from them as well.
+#
+#If you are employed to do writing (even at a university), or have
+#made an agreement with your employer or school saying it owns text
+#you write, then you and we need a signed piece of paper from your
+#employer disclaiming rights to your changes.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license manuals written there will do.  Here is a sample wording:
+File: ./doc/Copyright/conditions.text
+Hash: a0ea940fa380501407151c5ccd168afabc1749eab7ed1ccda3b32b2b85b9255a
+Copyright:
+License:
+#Header:
+#Legal Issues about Contributing Code to GNU   last updated 8 Feb 2009
+#
+#Project GNU has to be careful to obey copyright laws, even though
+#these laws are wrong when they stop people from sharing generally
+#useful published information such as software, because we are in the
+#public eye.  We also use copyright to defend users' freedom, by means
+#of copyleft (though this does not excuse copyright law for helping
+#to make software proprietary).
+#
+#This means that if you want to contribute software to GNU, you have to
+#do something to give us legal permission to use it.  There are three
+#ways this can be done:
+#
+#* Assign the copyright to the Free Software Foundation.
+#This allows the FSF to act to stop violations of the GPL.
+File: ./doc/Copyright/disclaim.changes.manual
+Hash: 757e8f68162152a11f39cc06de884e60f95476ecd4cd382194c22af4d7c2dbfe
+Copyright:
+License:
+#Header:
+#I'd like to ask you to sign a disclaimer for your changes,
+#thus putting them in the public domain.  (For small to medium changes
+#such as this, that is just as good for us as assigning copyright.)
+#I'm assuming that you wrote these changes yourself;
+#if other people wrote parts, we may need papers from them.
+#
+#    I, <name of person>, hereby disclaim all copyright interest in my
+#    changes and enhancements to the manual <manual>.
+#
+#    I affirm that I have no other intellectual property interest that
+#    would undermine this release.  I represent that these changes and
+#    enhancements are my own and not a copy of someone else's work.
+#
+#    <signature and date>
+File: ./doc/Copyright/disclaim.manual
+Hash: 8bb37e0674a0a2ffd0a89682057126b8e58280dde15573436bf8b307c5db7c92
+Copyright:
+License:
+#Header:
+#I'd like to ask you to sign a disclaimer for the manual, thus putting
+#it in the public domain.  (For a small manual such as this, it's not
+#worth our trying to assert a copyleft.)
+#
+#    I, <name of person>, hereby disclaim all copyright interest in my
+#    manual <manual> which does <one-line desription>.
+#
+#    I affirm that I have no other intellectual property interest
+#    that would undermine this release, and will do nothing to undermine
+#    it in the future.  I represent that the work is my own and not
+#    a copy of someone else's work.
+#
+#    <signature and date>
+#
+#*Don't forget to include the date.*
+File: ./doc/Copyright/disclaim.program
+Hash: 1004a718603464ea52341822431714f6de8c4bdcf58f20f53f418a13c0457c30
+Copyright:
+License:
+#Header:
+#I'd like to ask you to sign a disclaimer for the program, thus putting
+#it in the public domain.  (For a small program such as this, it's not
+#worth our trying to assert a copyleft.)
+#
+#    I, <name of person>, hereby disclaim all copyright interest in my
+#    program <program> which does <one-line desription>.
+#
+#    I affirm that I have no other intellectual property interest
+#    that would undermine this release, and will do nothing to undermine
+#    it in the future.  I represent that the work is my own and not
+#    a copy of someone else's work.
+#
+#    <signature and date>
+#
+#*Don't forget to include the date.*
+File: ./doc/Copyright/request-assign.changes
+Hash: 2ba32591db9fee4f110bdbcbe22f674ab921b555585aa905d212b9c56b4c01c4
+Copyright:
+License:
+#Header:
+#Please email the following information to assign@gnu.org, and we will
+#send you the assignment form that covers the changes you have already
+#written.  That form will cover subsequent corrections to those
+#changes, but it will not cover other unrelated future changes to the
+#same program.
+#
+#Please use your full legal name (in ASCII characters) as the subject line of the message.
+#---------------------------------------------------------------------
+#REQUEST:  SEND FORM FOR CHANGES ALREADY MADE
+#
+#[What is the name of the program or package you're contributing to?]
+#
+#
+#[Did you copy any files or text written by someone else in these changes?
+#Even if that material is free software, we need to know about it.]
+File: ./doc/Copyright/request-assign.future
+Hash: 9ba7d169c4fc06b01a773daf5ff5c2a9b2e52ac0b79a3d41aa123c51c9755a03
+Copyright:
+License:
+#Header:
+#Please email the following information to assign@gnu.org, and we
+#will send you the assignment form for your past and future changes.
+#
+#Please use your full legal name (in ASCII characters) as the subject
+#line of the message.
+#----------------------------------------------------------------------
+#REQUEST: SEND FORM FOR PAST AND FUTURE CHANGES
+#
+#[What is the name of the program or package you're contributing to?]
+#
+#
+#[Did you copy any files or text written by someone else in these changes?
+#Even if that material is free software, we need to know about it.]
+File: ./doc/Copyright/request-assign.program
+Hash: f1c1a0ce3e67f88c09551e5dde215d5bf03022945d5fce5d47eb781f971a6699
+Copyright:
+License:
+#Header:
+#Please email the following information to fsf-records@gnu.org, and we
+#will send you the assignment form that covers your program.
+#
+#Please use your full legal name (in ASCII characters) as the subject
+#line of the message.
+#
+#
+#[What is the name of the program or package you're contributing?]
+#
+#
+#[Will this become part of a larger GNU package?  If so, what package?]
+#
+#
+#[Did you copy any files or text written by someone else into the
+#program?  Even if that material is free software, we need to know
+File: ./doc/Copyright/request-disclaim.changes
+Hash: 5d1569edac388e95ffe46d8a867730615f1a0ff33075596038d3e7a3eb06ee36
+Copyright:
+License:
+#Header:
+#Please email the following information to assign@gnu.org, and we will
+#send you the disclaimer form for your changes.  This form is preferred
+#when your changes are small, they do not add any nontrivial new
+#files, and you are finished making them (aside perhaps from small bug
+#fixes).
+#
+#If you would like to make further contributions to the same package,
+#and you would like to avoid the need to sign more papers when you
+#contribute them, you have another option: to sign a copyright
+#assignment covering your future changes.  If that is what you want to
+#do, please tell the maintainer you would prefer to sign an assignment
+#of past and future changes.
+#
+#
+#Please use your full legal name (in ASCII characters) as the subject
+File: ./doc/INSTALL
+Hash: 71a35b239f3b448ef8b27fd63a6722f5cbec0a5bc5f700deb5038afa3caa84ba
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License:
+ Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved.  This file is offered as-is,
+ without warranty of any kind.
+#Header:
+#Installation Instructions
+#*************************
+#
+#Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+#2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   Copying and distribution of this file, with or without modification,
+#are permitted in any medium without royalty provided the copyright
+#notice and this notice are preserved.  This file is offered as-is,
+#without warranty of any kind.
+#
+#Basic Installation
+#==================
+#
+#   Briefly, the shell commands `./configure; make; make install' should
+File: ./doc/INSTALL.ISO
+Hash: 6e5a01010be07ff0d4d534b3b790b151a8e39cbc596c45033bf1d82ec269eed6
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License:
+   Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved.  This file is offered as-is,
+ without warranty of any kind.
+#Header:
+#Installation Instructions
+#*************************
+#
+#Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+#2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   Copying and distribution of this file, with or without modification,
+#are permitted in any medium without royalty provided the copyright
+#notice and this notice are preserved.  This file is offered as-is,
+#without warranty of any kind.
+#
+#Basic Installation
+#==================
+#
+#   Briefly, the shell commands './configure; make; make install' should
+File: ./doc/INSTALL.UTF-8
+Hash: 0b6f2758c270e39f2120bc2beb256a3dcdd878e3ab6f36c81cfe1110d4a65fbb
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+License:
+#Header:
+#Installation Instructions
+#*************************
+#
+#Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+#2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+   Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved.  This file is offered as-is,
+ without warranty of any kind.
+#
+#Basic Installation
+#==================
+#
+#   Briefly, the shell commands â€˜./configure; make; make install’ should
+File: ./doc/Makefile
+Hash: e588412f4808f445922802b7c5310650b2edc4fc1d22da096884812313562f82
+Copyright: 2004, 2006-2009 Free Software Foundation, Inc.
+License:
+  Copying and distribution of this file, with or without modification,
+  are permitted in any medium without royalty provided the copyright
+  notice and this notice are preserved.
+#
+#doc = gnulib
+#
+#MAKEINFO = env LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo
+#TEXI2HTML = $(MAKEINFO) --no-split --reference-limit=2000 --html
+#
+#%.info: %.texi
+#      LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo --no-split --reference-limit=2000 $<
+File: ./doc/README
+Hash: 5eb4b0ac21e256e6b201f1d6038cfc9fe8c0d168484e6471bda54699c84b88c9
+Copyright:
+License:
+#Header:
+#Misc notes
+#----------
+#
+#regexprops-generic.texi is generated via a utility in findutils.
+#
+#How to update gnulib manual on www.gnu.org
+#------------------------------------------
+#
+#1) You need a non-anonymous checkout of the web pages directory.
+#
+#   $ cvs -d :ext:jas@cvs.savannah.gnu.org:/web/gnulib \
+#         checkout gnulib
+#
+#2) Get familiar with the instructions for web page maintainers.
+#   http://www.gnu.org/server/standards/readme_index.html
+File: ./doc/acl-cygwin.txt
+Hash: 7512950629f04d795e20ac566c5fc7f846b829a09031acfd3ba424841e3f6e71
+Copyright:
+License:
+#Header:
+#$ getfacl --help
+#Usage: getfacl [-adn] FILE [FILE2...]
+#Display file and directory access control lists (ACLs).
+#
+#  -a, --all      display the filename, the owner, the group, and
+#                 the ACL of the file
+#  -d, --dir      display the filename, the owner, the group, and
+#                 the default ACL of the directory, if it exists
+#  -h, --help     output usage information and exit
+#  -n, --noname   display user and group IDs instead of names
+#  -v, --version  output version information and exit
+#
+#When multiple files are specified on the command line, a blank
+#line separates the ACLs for each file.
+#For each argument that is a regular file, special file or
+File: ./doc/acl-resources.txt
+Hash: 65da96ac4e110970dd7bee204441e94d575e83310791c7f95365082981b55962
+Copyright:
+License:
+#Header:
+#General introduction:
+#  http://www.suse.de/~agruen/acl/linux-acls/online/
+#
+#
+#POSIX ACLs
+#
+#Documents from POSIX.1e (headers & functions) and POSIX.2c (utilities):
+#  http://wt.xpilot.org/publications/posix.1e/download.html
+#
+#
+#Linux ACLs
+#
+#Introduction:
+#  http://www.suse.de/~agruen/acl/linux-acls/online/
+#Hands-on tutorial:
+File: ./doc/agpl-3.0.texi
+Hash: 77c3f2a9718accc065836d61cf2575b50220f1f3c121e281fec0a06ee3ad8b46
+Copyright: 2007 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#
+#@heading Preamble
+File: ./doc/alloca-opt.texi
+Hash: ba0ad6232fbf3ba81b9dece15497df973cbcf4a4b7e2295ca66b0bed803d82da
+Copyright: 2004, 2007 Free Software Foundation, Inc.
+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.
+#
+#The alloca-opt module provides for a function @code{alloca} which allocates
+#memory on the stack, where the system allows it. A memory block allocated with
+#@code{alloca} exists only until the function that calls @code{alloca} returns
+#or exits abruptly.
+File: ./doc/alloca.texi
+Hash: abaafa45b821b2064d735be4848a476c92e67742811e7c991eefbf8b0314210c
+Copyright: 2004, 2007 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'alloca'.
+#
+#@c Copyright (C) 2004, 2007 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The alloca module provides for a function @code{alloca} which allocates
+#memory on the stack, where the system allows it. A memory block allocated with
+#@code{alloca} exists only until the function that calls @code{alloca} returns
+#or exits abruptly.
+File: ./doc/c-ctype.texi
+Hash: 02681cc5ffcc4bb503782c8ce7f5b053f524a61d77b10dfd3c8d29e8696a8cd5
+Copyright: 2008 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'c-ctype'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-ctype} module contains functions operating on single-byte
+#characters, like the functions in @code{<ctype.h>}, that operate as if the
+#locale encoding was ASCII.  (The "C" locale on many systems has the locale
+#encoding "ASCII".)
+File: ./doc/c-strcase.texi
+Hash: 12a8966489a243d56b5727a843e8d199ce1be4cbddf810d6e0546fc0d47c0db9
+Copyright: 2008 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'c-strcase'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strcase} module contains case-insensitive string comparison
+#functions operating on single-byte character strings, like the functions in
+#@code{<strings.h>}, that operate as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+File: ./doc/c-strcaseeq.texi
+Hash: 07a09de098c41135d2b8c252e34d16942a2df705d4165259604efc2bc89f32df
+Copyright: 2008 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'c-strcaseeq'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strcaseeq} module contains an optimized case-insensitive
+#string comparison function operating on single-byte character strings, that
+#operate as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+File: ./doc/c-strcasestr.texi
+Hash: 28f551e29d750587564a6c9d605d880b4adc908e73ba20486dad95089bcbe988
+Copyright: 2008 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'c-strcasestr'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strcasestr} module contains a case-insensitive string search
+#function operating on single-byte character strings, that operate as if the
+#locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+File: ./doc/c-strstr.texi
+Hash: dc0b4e2b4ae14f6c0b231a1cb517386171cdd2e79bad16e5c8468a6d3f05d863
+Copyright: 2008 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'c-strstr'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strstr} module contains a substring search function operating
+#on single-byte character strings, that operate as if the locale encoding
+#was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+File: ./doc/c-strtod.texi
+Hash: f12b034c095af6fedebe50970c03692a308cd6d76c710040021e05e14111d0e6
+Copyright: 2008-2009 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'c-strtod'.
+#
+#@c Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strtod} module contains a string to number (@samp{double})
+#conversion function operating on single-byte character strings, that operates
+#as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+File: ./doc/c-strtold.texi
+Hash: acd8d275bc49ba09e74845ef9ab62f76fe1ec2a82b7358a85790af57c33de3eb
+Copyright: 2008 Free Software Foundation, Inc.
+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:
+#@c Documentation of gnulib module 'c-strtold'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strtold} module contains a string to number (@samp{long double})
+#conversion function operating on single-byte character strings, that operates
+#as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+File: ./doc/ctime.texi
+Hash: c54a4356bb5de6dc3dd73b82b8ba0e40975a2cf465b639f8cf8456097c6f8658
+Copyright: 2005 Free Software Foundation, Inc.
+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:
+#@node ctime
+#@section ctime
+#@findex ctime
+#
+#@c Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{ctime} function need not be reentrant, and consequently is
+#not required to be thread safe.  Implementations of @code{ctime}
+File: ./doc/error.texi
+Hash: a5f78c9c537fb0dbb6b9d6740073f5c7cf4f1bc3af0531c33806fbfd624de688
+Copyright: 2007 Free Software Foundation, Inc.
+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:
+#@node error and progname
+#@section error and progname
+#@findex error
+#@findex progname
+#@vindex program_name
+#
+#@c Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+File: ./doc/fdl-1.2.texi
+Hash: 6f673a8c0082124229a9a100543bd41368cfe3db307ab0db0b89cf84c611cf1b
+Copyright: 2000,2001,2002 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#
+#@enumerate 0
+File: ./doc/fdl-1.3.texi
+Hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+Copyright: 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#
+#@enumerate 0
+File: ./doc/fdl.texi
+Hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+Copyright: 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#@end display
+#
+#@enumerate 0
+File: ./doc/func.texi
+Hash: f8cd19fcf35037aa6fd49e493bd85eb6f696afa87e1bc56fbf2ee045329f20e7
+Copyright:
+License:
+#Header:
+#@node func
+#@section func
+#
+#The @code{func} module makes sure that you can use the predefined
+#identifier @code{__func__} as defined by C99 in your code.
+#
+#A small example is:
+#
+#@smallexample
+##include <config.h>
+##include <stdio.h> /* for printf */
+#
+#int main (void)
+#@{
+#    printf ("%s: hello world\n", __func__);
+File: ./doc/gcd.texi
+Hash: aa4594d335a46b562a96ebd76cabc7451a3ba2737bf0b032f1b66f18ab3fc5cb
+Copyright: 2006 Free Software Foundation, Inc.
+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:
+#@node gcd
+#@section gcd: greatest common divisor
+#@findex gcd
+#
+#@c Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{gcd} function returns the greatest common divisor of two numbers
+#@code{a > 0} and @code{b > 0}.  It is the caller's responsibility to ensure
+File: ./doc/gendocs_template
+Hash: 61dc5a61685d6ce9d5377c109bba5dc71089a86add68e14628f17ca13697d849
+Copyright:
+License:
+#Header:
+#<!--#include virtual="/server/header.html" -->
+#<title>%%TITLE%% - GNU Project - Free Software Foundation (FSF)</title>
+#<!--#include virtual="/server/banner.html" -->
+#<h2>%%TITLE%%</h2>
+#
+#<!-- This document is in XML, and xhtml 1.0 -->
+#<!-- Please make sure to properly nest your tags -->
+#<!-- and ensure that your final document validates -->
+#<!-- consistent with W3C xhtml 1.0 and CSS standards -->
+#<!-- See validator.w3.org -->
+#
+#<address>Free Software Foundation</address>
+#<address>last updated %%DATE%%</address>
+#
+#<p>This manual (%%PACKAGE%%) is available in the following formats:</p>
+File: ./doc/gendocs_template_min
+Hash: 8599a5f69e6110fe324e413e04c4920db1f37a9becf5db55f27a6d132bbfb8b2
+Copyright:
+License:
+#Header:
+#<?xml version="1.0" encoding="utf-8" ?>
+#<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+#    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+#<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+#
+#<head>
+#<title>%%TITLE%% - GNU Project - Free Software Foundation (FSF)</title>
+#<meta http-equiv="content-type" content='text/html; charset=utf-8' />
+#<link rel="stylesheet" type="text/css" href="/gnu.css" />
+#<link rev="made" href="webmasters@gnu.org" />
+#</head>
+#
+#<!-- This document is in XML, and xhtml 1.0 -->
+#<!-- Please make sure to properly nest your tags -->
+#<!-- and ensure that your final document validates -->
+File: ./doc/getdate.texi
+Hash: b49cb20e0eb9f85da9aeb64338b8442bd47b45259faf2e6fce118e6c90af6579
+Copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+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:
+#@c GNU date syntax documentation
+#
+#@c Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+#@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#@node Date input formats
+#@chapter Date input formats
+File: ./doc/glibc-functions/accept4.texi
+Hash: b17ebc577f3ee392f19100a7b506ff1a38cc1328a92bea909d6d34690aa2bed2
+Copyright:
+License:
+#Header:
+#@node accept4
+#@subsection @code{accept4}
+#@findex accept4
+#
+#Gnulib module: accept4
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/acct.texi
+Hash: d37daf7575d441486ace90191eefb3bea667e4d10eff5e8a14a8c41493b0fab8
+Copyright:
+License:
+#Header:
+#@node acct
+#@subsection @code{acct}
+#@findex acct
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/addmntent.texi
+Hash: 859dc5755ca851474f5acfa8db53055f59573e5bbaf332b8dd8e5754fda11b50
+Copyright:
+License:
+#Header:
+#@node addmntent
+#@subsection @code{addmntent}
+#@findex addmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/addseverity.texi
+Hash: 6e44d5223f4987a83f8c4db55cfdc1f9e81c6d998c1853716aba498d5d9a1535
+Copyright:
+License:
+#Header:
+#@node addseverity
+#@subsection @code{addseverity}
+#@findex addseverity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/adjtime.texi
+Hash: cbc4f68c7f77addbdc16bd13629e75db5fcff64a0567488ceb04a9459e6b992d
+Copyright:
+License:
+#Header:
+#@node adjtime
+#@subsection @code{adjtime}
+#@findex adjtime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/adjtimex.texi
+Hash: 5c618ea0205407dfab68f9bf13e88e944c25e7be821a02d1e42f49998b5ed63b
+Copyright:
+License:
+#Header:
+#@node adjtimex
+#@subsection @code{adjtimex}
+#@findex adjtimex
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/advance.texi
+Hash: 83424853aeaa0dbc7252aa0ae47b7e9f9b633576a94942c0519d53e8e4fbf526
+Copyright:
+License:
+#Header:
+#@node advance
+#@subsection @code{advance}
+#@findex advance
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/aio_init.texi
+Hash: 9776ff627d5968a12d86d200038f926555e224daed04cde21769fc19b58856f7
+Copyright:
+License:
+#Header:
+#@node aio_init
+#@subsection @code{aio_init}
+#@findex aio_init
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_err_exit_status.texi
+Hash: 5ad7e936e9599c8501ca2844805be318d773b5d5c7e96714c730596e5bf02292
+Copyright:
+License:
+#Header:
+#@node argp_err_exit_status
+#@subsection @code{argp_err_exit_status}
+#@findex argp_err_exit_status
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_error.texi
+Hash: 72fdeba016c2e94cd219221fd18adfb4d13c5ba9759e2a0ec006c587799f0239
+Copyright:
+License:
+#Header:
+#@node argp_error
+#@subsection @code{argp_error}
+#@findex argp_error
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_failure.texi
+Hash: 0f61197bb59045af63a046f1456ddcc1efe393b7d73e170c2c112ac960feedd3
+Copyright:
+License:
+#Header:
+#@node argp_failure
+#@subsection @code{argp_failure}
+#@findex argp_failure
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_help.texi
+Hash: 773dd3780b48dabb78efa3e3f644e7c823f67de3b7e87ec93b0ec5cac2323bfc
+Copyright:
+License:
+#Header:
+#@node argp_help
+#@subsection @code{argp_help}
+#@findex argp_help
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_parse.texi
+Hash: 3ca5263fc5663150b7dc9362a3114bd350d03d1e3e5be932c07299810577ebe2
+Copyright:
+License:
+#Header:
+#@node argp_parse
+#@subsection @code{argp_parse}
+#@findex argp_parse
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_program_bug_address.texi
+Hash: 3abb0a66f95fb062ec1970dbc8bf29e7fbf683b64d7334d38c1c58e2e175a8ec
+Copyright:
+License:
+#Header:
+#@node argp_program_bug_address
+#@subsection @code{argp_program_bug_address}
+#@findex argp_program_bug_address
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_program_version.texi
+Hash: ff08b5d2808dc3501de2605f1631bd2e0a60676ba06b47d3a6faa09728c9989f
+Copyright:
+License:
+#Header:
+#@node argp_program_version
+#@subsection @code{argp_program_version}
+#@findex argp_program_version
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_program_version_hook.texi
+Hash: 7a8f425b15b7e6abda323db20c96f40c5b56729b1bd3ddb9ab1f2130c590935c
+Copyright:
+License:
+#Header:
+#@node argp_program_version_hook
+#@subsection @code{argp_program_version_hook}
+#@findex argp_program_version_hook
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_state_help.texi
+Hash: 10e9a562637cf6c60d5b43a4e8512e74cd9a74db87707e628300d49e0e4f2512
+Copyright:
+License:
+#Header:
+#@node argp_state_help
+#@subsection @code{argp_state_help}
+#@findex argp_state_help
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argp_usage.texi
+Hash: ece258de9630be5b079b97514e35aca806a96c4ebff29277d1c07379649f5e7d
+Copyright:
+License:
+#Header:
+#@node argp_usage
+#@subsection @code{argp_usage}
+#@findex argp_usage
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/argz_add.texi
+Hash: 18f2bcea93aa6152c099688d18a0b6ae9f76590ab025af5ec39e16865f55f96c
+Copyright:
+License:
+#Header:
+#@node argz_add
+#@subsection @code{argz_add}
+#@findex argz_add
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_add_sep.texi
+Hash: 3cdf339fc9645ea7cdac7064100ed6a6fecefa47e48581d2c75e8335220b9fcd
+Copyright:
+License:
+#Header:
+#@node argz_add_sep
+#@subsection @code{argz_add_sep}
+#@findex argz_add_sep
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_append.texi
+Hash: ae244a6da5f6ca8ef7107924f21425880f8154ab51c14f8fb43be0f5bb7c4f52
+Copyright:
+License:
+#Header:
+#@node argz_append
+#@subsection @code{argz_append}
+#@findex argz_append
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_count.texi
+Hash: 599ba24548a6631c721c4a913df6101ad0f19f0f7bfecd4549cc20fba44c1252
+Copyright:
+License:
+#Header:
+#@node argz_count
+#@subsection @code{argz_count}
+#@findex argz_count
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_create.texi
+Hash: 6b7edc8f20ff0749926679da311d9d61a120537cb7e071ee58074a4646d19ca8
+Copyright:
+License:
+#Header:
+#@node argz_create
+#@subsection @code{argz_create}
+#@findex argz_create
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_create_sep.texi
+Hash: ecd63dedd9dabcd06f22d5430d23801af84b2cfd41025684200edc2f9f951256
+Copyright:
+License:
+#Header:
+#@node argz_create_sep
+#@subsection @code{argz_create_sep}
+#@findex argz_create_sep
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_delete.texi
+Hash: c5327fcde9bb049ceb161f6953d623b95ee853ed45e9616599b6acc5b2097039
+Copyright:
+License:
+#Header:
+#@node argz_delete
+#@subsection @code{argz_delete}
+#@findex argz_delete
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_extract.texi
+Hash: a09a50dff90d595c24ae23bdccfbb09746c37bffdc88cc2b94d1864b1a9e738b
+Copyright:
+License:
+#Header:
+#@node argz_extract
+#@subsection @code{argz_extract}
+#@findex argz_extract
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_insert.texi
+Hash: 85103c1f755497213b705dcb1ecf79bf4d7564fe11243f89c5a611b642a6dde3
+Copyright:
+License:
+#Header:
+#@node argz_insert
+#@subsection @code{argz_insert}
+#@findex argz_insert
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_next.texi
+Hash: 254e88751b133e09414abfe834861a0459847c67e138f81405303735f07fdf9e
+Copyright:
+License:
+#Header:
+#@node argz_next
+#@subsection @code{argz_next}
+#@findex argz_next
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_replace.texi
+Hash: f9fc8e8e0ef61fb433d129ebe214dbceab9d516d9500a9721fccc477e35cd882
+Copyright:
+License:
+#Header:
+#@node argz_replace
+#@subsection @code{argz_replace}
+#@findex argz_replace
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/argz_stringify.texi
+Hash: 2e019d0347b285bd91926d5e328effc134b65090ca4bdb5bed2e6ec696baea24
+Copyright:
+License:
+#Header:
+#@node argz_stringify
+#@subsection @code{argz_stringify}
+#@findex argz_stringify
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+File: ./doc/glibc-functions/asprintf.texi
+Hash: 4d17afdfffec5aaf5d84729b98b8b39011e25b70ce4a732557fcbb77ec8941e9
+Copyright:
+License:
+#Header:
+#@node asprintf
+#@subsection @code{asprintf}
+#@findex asprintf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+File: ./doc/glibc-functions/authdes_create.texi
+Hash: af49562730f4bc1eae2bf729db613caedd3c19062f2e837d3c451c9dbbe0bf6d
+Copyright:
+License:
+#Header:
+#@node authdes_create
+#@subsection @code{authdes_create}
+#@findex authdes_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/authdes_getucred.texi
+Hash: 3962401affaa1079d18bf6751923e893ff9ad89ac80ef2a1e4319d506af10472
+Copyright:
+License:
+#Header:
+#@node authdes_getucred
+#@subsection @code{authdes_getucred}
+#@findex authdes_getucred
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/authdes_pk_create.texi
+Hash: 49a5ec10bf2dcafa8d0765e2c3399c5485bda1fe79ab9e8b963d5b9b448df435
+Copyright:
+License:
+#Header:
+#@node authdes_pk_create
+#@subsection @code{authdes_pk_create}
+#@findex authdes_pk_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/authnone_create.texi
+Hash: e2755104eebcd1c86babce2250ea655d235714bacc7ac9af5fff656edbb4ff04
+Copyright:
+License:
+#Header:
+#@node authnone_create
+#@subsection @code{authnone_create}
+#@findex authnone_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/authunix_create.texi
+Hash: 2249d61f5ba791a25990c863209b5e439f4be7bacaa22901a17fca65ff57c5d9
+Copyright:
+License:
+#Header:
+#@node authunix_create
+#@subsection @code{authunix_create}
+#@findex authunix_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/authunix_create_default.texi
+Hash: e2042c8ffb02a472907f345c6a79e7d47ebdb04ccdeda8fcc0d8e0247419d5ef
+Copyright:
+License:
+#Header:
+#@node authunix_create_default
+#@subsection @code{authunix_create_default}
+#@findex authunix_create_default
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/backtrace.texi
+Hash: 9218fc11f85121754f3dce8759f4abfc2e96678cdcde0b64b8c5bc1dac4784fc
+Copyright:
+License:
+#Header:
+#@node backtrace
+#@subsection @code{backtrace}
+#@findex backtrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/backtrace_symbols.texi
+Hash: 8cd5973763a4a86ca3d03a9cd93b877ccae2393c527f1c27316b5179d6d4a5c9
+Copyright:
+License:
+#Header:
+#@node backtrace_symbols
+#@subsection @code{backtrace_symbols}
+#@findex backtrace_symbols
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/backtrace_symbols_fd.texi
+Hash: 568caed6a6ac65d5fd1787fd3dffafa08ff544cb3fab9405ebefa12bbe3a264f
+Copyright:
+License:
+#Header:
+#@node backtrace_symbols_fd
+#@subsection @code{backtrace_symbols_fd}
+#@findex backtrace_symbols_fd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/bdflush.texi
+Hash: c9d58ca272a569549bccbc6cf430bbd0e3766a2fd96f4f85d28b264e7c3aac4f
+Copyright:
+License:
+#Header:
+#@node bdflush
+#@subsection @code{bdflush}
+#@findex bdflush
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/bind_textdomain_codeset.texi
+Hash: 99bf7d082540b4e76c5810e19f258198590dcbd8ed95ba7f249e11e2385ebbe5
+Copyright:
+License:
+#Header:
+#@node bind_textdomain_codeset
+#@subsection @code{bind_textdomain_codeset}
+#@findex bind_textdomain_codeset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/bindresvport.texi
+Hash: 407362b84b67ca56f509dfede5907a628e1dbc66d95aaf1fade0d8278be1ab76
+Copyright:
+License:
+#Header:
+#@node bindresvport
+#@subsection @code{bindresvport}
+#@findex bindresvport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin 1.5.x, mingw, BeOS.
+File: ./doc/glibc-functions/bindtextdomain.texi
+Hash: 893f7472a65a60adec27ff2fd59fc1b10ef4c8c79721df77b684108c5bd4b3c6
+Copyright:
+License:
+#Header:
+#@node bindtextdomain
+#@subsection @code{bindtextdomain}
+#@findex bindtextdomain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/brk.texi
+Hash: 79f13ae11705a8f029f92450cb76d735a551947e2dc605f30eb41181253dcbfd
+Copyright:
+License:
+#Header:
+#@node brk
+#@subsection @code{brk}
+#@findex brk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw.
+File: ./doc/glibc-functions/bswap_16.texi
+Hash: 8637c5832585d431bfc3e334d7b4f7b28dba3867e892c9bb3212b23a83fd7832
+Copyright:
+License:
+#Header:
+#@node bswap_16
+#@subsection @code{bswap_16}
+#@findex bswap_16
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/bswap_32.texi
+Hash: 45c27263a3c7a55e61f4965f1a769c37aec80440fea88a85fac0c011a534fab0
+Copyright:
+License:
+#Header:
+#@node bswap_32
+#@subsection @code{bswap_32}
+#@findex bswap_32
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/bswap_64.texi
+Hash: 0c90737dd8475488dfe04bdea14b07139f68b9db3ffe7ef7413b6d0c90aa050f
+Copyright:
+License:
+#Header:
+#@node bswap_64
+#@subsection @code{bswap_64}
+#@findex bswap_64
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/callrpc.texi
+Hash: b20e0a5aabcff3296d32c26431ce49c9d028ceed0945caea1ac15b3c39b11cc1
+Copyright:
+License:
+#Header:
+#@node callrpc
+#@subsection @code{callrpc}
+#@findex callrpc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/canonicalize_file_name.texi
+Hash: 88ff6a4a9c1a9c691748ecbfc050f992518fae1d30dc880577caea53f2fd759c
+Copyright:
+License:
+#Header:
+#@node canonicalize_file_name
+#@subsection @code{canonicalize_file_name}
+#@findex canonicalize_file_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/capget.texi
+Hash: 30ca364f553845f7411c9144e8fc54534e63b47c00f1d2d8b7d42651556ee971
+Copyright:
+License:
+#Header:
+#@node capget
+#@subsection @code{capget}
+#@findex capget
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/capset.texi
+Hash: 0d46ec1a25dc5ae5c2a09e23c6df148f90bc4f6a3f339202728bc731521a79bc
+Copyright:
+License:
+#Header:
+#@node capset
+#@subsection @code{capset}
+#@findex capset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/cbc_crypt.texi
+Hash: 2fafbda5215452dabaecd6ae338b1b42292fc7649957d7dfd53298e125c73aff
+Copyright:
+License:
+#Header:
+#@node cbc_crypt
+#@subsection @code{cbc_crypt}
+#@findex cbc_crypt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/cfmakeraw.texi
+Hash: e17dc832db4056f94397e2cca5eebec2b7e7ebbf4dfd1961d7d04c2a54348d78
+Copyright:
+License:
+#Header:
+#@node cfmakeraw
+#@subsection @code{cfmakeraw}
+#@findex cfmakeraw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/cfree.texi
+Hash: 3bf2ea530728c4bf2675d2c138bc897e2c61fb86e52eb1aaa5f595ee3ac1334f
+Copyright:
+License:
+#Header:
+#@node cfree
+#@subsection @code{cfree}
+#@findex cfree
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/cfsetspeed.texi
+Hash: 3fa0159499537d1d12632e4721c20870e24b362744100c8ebf05001ac60def9a
+Copyright:
+License:
+#Header:
+#@node cfsetspeed
+#@subsection @code{cfsetspeed}
+#@findex cfsetspeed
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/chroot.texi
+Hash: 939c1364cb648d6985389a66cee0f7eafea4bbfeb9d87202357b7a923da9c3c6
+Copyright:
+License:
+#Header:
+#@node chroot
+#@subsection @code{chroot}
+#@findex chroot
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, BeOS.
+File: ./doc/glibc-functions/clearenv.texi
+Hash: 45a56cc1e9cf0437cab4c9d9ef7939585bcd832ff2630a99ac47277be6afa7ea
+Copyright:
+License:
+#Header:
+#@node clearenv
+#@subsection @code{clearenv}
+#@findex clearenv
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/clearerr_unlocked.texi
+Hash: 18ac3bd638d52e5eea084f0693462f14b38c9236ffa469c9d3523413afead17a
+Copyright:
+License:
+#Header:
+#@node clearerr_unlocked
+#@subsection @code{clearerr_unlocked}
+#@findex clearerr_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/clnt_broadcast.texi
+Hash: 1c8663af16571cdf3d9365225d9a0e98784cc856191f3febbc639bd263193ca9
+Copyright:
+License:
+#Header:
+#@node clnt_broadcast
+#@subsection @code{clnt_broadcast}
+#@findex clnt_broadcast
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnt_create.texi
+Hash: 9b8db11b5c1ea0786cad25ac17504a90a35d649d816e719443ded731822eebc4
+Copyright:
+License:
+#Header:
+#@node clnt_create
+#@subsection @code{clnt_create}
+#@findex clnt_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnt_pcreateerror.texi
+Hash: eb667a76af61d29859afcfdcbfe23a1ba8685a7697247f375d88458d6272bd60
+Copyright:
+License:
+#Header:
+#@node clnt_pcreateerror
+#@subsection @code{clnt_pcreateerror}
+#@findex clnt_pcreateerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnt_perrno.texi
+Hash: ad17b85da3516ff2f72cb23d033c48e8b7a2aac5a02c5d7a01d41c6aa6600db0
+Copyright:
+License:
+#Header:
+#@node clnt_perrno
+#@subsection @code{clnt_perrno}
+#@findex clnt_perrno
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnt_perror.texi
+Hash: 82cd26d158a5d3c44dece6a886244ce36c49ebeffa26673909de77d5a788b10e
+Copyright:
+License:
+#Header:
+#@node clnt_perror
+#@subsection @code{clnt_perror}
+#@findex clnt_perror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnt_spcreateerror.texi
+Hash: 209e1e3f9cdb5fb2ae93d82626397a91f86fc5de7e053a4e9dd9ee984590ac29
+Copyright:
+License:
+#Header:
+#@node clnt_spcreateerror
+#@subsection @code{clnt_spcreateerror}
+#@findex clnt_spcreateerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnt_sperrno.texi
+Hash: 85facf37092f224547c9b22de2ce7120f6223b123880955f9741d4f1192ef962
+Copyright:
+License:
+#Header:
+#@node clnt_sperrno
+#@subsection @code{clnt_sperrno}
+#@findex clnt_sperrno
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnt_sperror.texi
+Hash: 3c5cb03e7db0c9890413fb8274e3e0825571fe513b5c3c4a8a1f381da141440a
+Copyright:
+License:
+#Header:
+#@node clnt_sperror
+#@subsection @code{clnt_sperror}
+#@findex clnt_sperror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clntraw_create.texi
+Hash: 369e8f51ad73920a35f5bb49c46788c9676a78b5c1efd70b19cfd8bacfc2e9ea
+Copyright:
+License:
+#Header:
+#@node clntraw_create
+#@subsection @code{clntraw_create}
+#@findex clntraw_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clnttcp_create.texi
+Hash: 4d775bbea4f66563fecb2274103849755071792c5af93c5f597ecc85ab8899f3
+Copyright:
+License:
+#Header:
+#@node clnttcp_create
+#@subsection @code{clnttcp_create}
+#@findex clnttcp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clntudp_bufcreate.texi
+Hash: a962c5041725d4a71eba817fb867bd2533442b43a7b467916e11b4d2fcfb6abd
+Copyright:
+License:
+#Header:
+#@node clntudp_bufcreate
+#@subsection @code{clntudp_bufcreate}
+#@findex clntudp_bufcreate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clntudp_create.texi
+Hash: b7e0dbcfcc8ab25b818f1f10021ffb0ffe9346f911c9a9d2e6c3831177732fe5
+Copyright:
+License:
+#Header:
+#@node clntudp_create
+#@subsection @code{clntudp_create}
+#@findex clntudp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/clntunix_create.texi
+Hash: 9e698ad851ba6e1fd147fe815aaf57881ff7dc062416604dbf2d545352bfcfff
+Copyright:
+License:
+#Header:
+#@node clntunix_create
+#@subsection @code{clntunix_create}
+#@findex clntunix_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/clog10.texi
+Hash: acd1d6d0a6a71603c0428c8498650814dd43eb9d6baabdc9fd80237f71c3516b
+Copyright:
+License:
+#Header:
+#@node clog10
+#@subsection @code{clog10}
+#@findex clog10
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/clog10f.texi
+Hash: 203698100193133e3bf5e65d9190cc87f10ec2adb8ad31f194c46c6bc5dd8f7c
+Copyright:
+License:
+#Header:
+#@node clog10f
+#@subsection @code{clog10f}
+#@findex clog10f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/clog10l.texi
+Hash: 82e4a4440dbf9ba56b1f888e1715adc2e915ae8648ef4e9f1e7f35416ed36343
+Copyright:
+License:
+#Header:
+#@node clog10l
+#@subsection @code{clog10l}
+#@findex clog10l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/clone.texi
+Hash: a8582f08a00c2362dd1296178cbbf88992b956c0c3b535cf196b0bc2936a9a6b
+Copyright:
+License:
+#Header:
+#@node clone
+#@subsection @code{clone}
+#@findex clone
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/crypt_r.texi
+Hash: cac89bde4b8094201459b5c860197e43c9d19a1edd5f4d19e61f5ae2388e36c2
+Copyright:
+License:
+#Header:
+#@node crypt_r
+#@subsection @code{crypt_r}
+#@findex crypt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/cuserid.texi
+Hash: 0a6b5bac9d5e7c8e6bb2e247a67c1a11e93e5a19c3ae107a8a7f6ec904f7da68
+Copyright:
+License:
+#Header:
+#@node cuserid
+#@subsection @code{cuserid}
+#@findex cuserid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw.
+File: ./doc/glibc-functions/daemon.texi
+Hash: 2fd4f418d424f8b9ec2b30aef1ee09500ac5b4be47c7188da99adceaacfbe873
+Copyright:
+License:
+#Header:
+#@node daemon
+#@subsection @code{daemon}
+#@findex daemon
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw, BeOS.
+File: ./doc/glibc-functions/dcgettext.texi
+Hash: 905acd2a435ee383e3a90021092c71b1e0353a4d830f8b3368f44b7e0f16621b
+Copyright:
+License:
+#Header:
+#@node dcgettext
+#@subsection @code{dcgettext}
+#@findex dcgettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dcngettext.texi
+Hash: 25fe3abe9d3c981d8e134eb1eac98ed4d5431cb316b695e9f394e1730882e212
+Copyright:
+License:
+#Header:
+#@node dcngettext
+#@subsection @code{dcngettext}
+#@findex dcngettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/des_setparity.texi
+Hash: 25d06dfb2357289c755d22b55b35fc27d29e2cbd1890ff499f26685f4fd63577
+Copyright:
+License:
+#Header:
+#@node des_setparity
+#@subsection @code{des_setparity}
+#@findex des_setparity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dgettext.texi
+Hash: 77128e568c7dc65aa42f7e606fa4877bc5ed42b1e00fca2a430f035f9cebc529
+Copyright:
+License:
+#Header:
+#@node dgettext
+#@subsection @code{dgettext}
+#@findex dgettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dl_iterate_phdr.texi
+Hash: 62ea16c0513d25faf9ec94dacddf8fd09577503f95ac512b43dd64272f621007
+Copyright:
+License:
+#Header:
+#@node dl_iterate_phdr
+#@subsection @code{dl_iterate_phdr}
+#@findex dl_iterate_phdr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dladdr.texi
+Hash: a3b59426c942a6c73ba2a3ab0fdca76a02287d69dcd0af66101519b5c9f9d90f
+Copyright:
+License:
+#Header:
+#@node dladdr
+#@subsection @code{dladdr}
+#@findex dladdr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dladdr1.texi
+Hash: e173046f4a96855e31bf1e8a5e8c06752872379e66c84803e099a466f56dc35c
+Copyright:
+License:
+#Header:
+#@node dladdr1
+#@subsection @code{dladdr1}
+#@findex dladdr1
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dlinfo.texi
+Hash: cce858a4949abfcaf32a9011a7bc103723a2e8c5f3f68484d8771ba6041580c4
+Copyright:
+License:
+#Header:
+#@node dlinfo
+#@subsection @code{dlinfo}
+#@findex dlinfo
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dlmopen.texi
+Hash: 88c9a180c401ca6f03ae86e95becba54896b826306370ca3b8a8507fc8e60f07
+Copyright:
+License:
+#Header:
+#@node dlmopen
+#@subsection @code{dlmopen}
+#@findex dlmopen
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dlvsym.texi
+Hash: 26ff4f9d467ee71d017515429de5fbfa4882051545692dbcb1c41de7af914f5f
+Copyright:
+License:
+#Header:
+#@node dlvsym
+#@subsection @code{dlvsym}
+#@findex dlvsym
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dn_expand.texi
+Hash: 63ce3292ca5569aa0366ad9c7de252d6fe18bafa7a89a5a2df6a635d5803e33f
+Copyright:
+License:
+#Header:
+#@node dn_expand
+#@subsection @code{dn_expand}
+#@findex dn_expand
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+File: ./doc/glibc-functions/dngettext.texi
+Hash: ab37ed0effb5751971a1b3250c420469fd3bf15abc3ddfcd104904dbeb4580c1
+Copyright:
+License:
+#Header:
+#@node dngettext
+#@subsection @code{dngettext}
+#@findex dngettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/drand48_r.texi
+Hash: 2b593e3e6fd04f9338b7138257ca7619720da7ed3fd534ee3e3a1e430c2785d6
+Copyright:
+License:
+#Header:
+#@node drand48_r
+#@subsection @code{drand48_r}
+#@findex drand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/drem.texi
+Hash: 568abf399954900f4cff6dd482ab33c057fe68b9a59bafe4bec9ae73f7865399
+Copyright:
+License:
+#Header:
+#@node drem
+#@subsection @code{drem}
+#@findex drem
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, mingw.
+File: ./doc/glibc-functions/dremf.texi
+Hash: aff887dbc137c68938b4349c5ed83048621700344ed2835c697e57fc4be7ffbb
+Copyright:
+License:
+#Header:
+#@node dremf
+#@subsection @code{dremf}
+#@findex dremf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, mingw.
+File: ./doc/glibc-functions/dreml.texi
+Hash: 5e5742ed947607742512dfd05cc9ec610d696663893755f51adbce805ccdd0a3
+Copyright:
+License:
+#Header:
+#@node dreml
+#@subsection @code{dreml}
+#@findex dreml
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/dup3.texi
+Hash: 16c23e59c857fb99c7bb7b25fe21d101a640baae3518a4cf20d572e9434992eb
+Copyright:
+License:
+#Header:
+#@node dup3
+#@subsection @code{dup3}
+#@findex dup3
+#
+#Gnulib module: dup3
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/dysize.texi
+Hash: 47a7fd72f74631c010e68a98e309a73c1c98bf25571524e582306739c239555b
+Copyright:
+License:
+#Header:
+#@node dysize
+#@subsection @code{dysize}
+#@findex dysize
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ecb_crypt.texi
+Hash: f690509aa7eae66e6d744b6d94375a3c735a95b856afbe31631cc213d35a0b4a
+Copyright:
+License:
+#Header:
+#@node ecb_crypt
+#@subsection @code{ecb_crypt}
+#@findex ecb_crypt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ecvt_r.texi
+Hash: a3766480ff58d17093f27198c734a920722b79f48f9ad3a220c417d3edce8342
+Copyright:
+License:
+#Header:
+#@node ecvt_r
+#@subsection @code{ecvt_r}
+#@findex ecvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/encrypt_r.texi
+Hash: 979cf283d7e89b787857095878553ce9fdd52f37d25528614248c801640a4e3a
+Copyright:
+License:
+#Header:
+#@node encrypt_r
+#@subsection @code{encrypt_r}
+#@findex encrypt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endaliasent.texi
+Hash: fb6325f2b1786c6daada61f5763b2eabe62ef7167e29c6def8dfec6b29b9efd4
+Copyright:
+License:
+#Header:
+#@node endaliasent
+#@subsection @code{endaliasent}
+#@findex endaliasent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endfsent.texi
+Hash: 2ef59b14a9f5b3b4eff8dc92d40599d2989beb3056a9d905f3c287651b2051e7
+Copyright:
+License:
+#Header:
+#@node endfsent
+#@subsection @code{endfsent}
+#@findex endfsent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endmntent.texi
+Hash: 902f99fbfabd3d3eaea54807c5d37d8ae32561911a61da4d7d826c453956b788
+Copyright:
+License:
+#Header:
+#@node endmntent
+#@subsection @code{endmntent}
+#@findex endmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endnetgrent.texi
+Hash: b561dcd1b6c6b62e9a3a88367b4035c2c7254d8d090337ab0323e327358e23d3
+Copyright:
+License:
+#Header:
+#@node endnetgrent
+#@subsection @code{endnetgrent}
+#@findex endnetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endrpcent.texi
+Hash: 2ec149a39480679f19e566cbfe837884852ce67563d81ddb5af842b60a2f7b75
+Copyright:
+License:
+#Header:
+#@node endrpcent
+#@subsection @code{endrpcent}
+#@findex endrpcent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/endspent.texi
+Hash: 23caa8ff196980b0fe2091e5ac0cd11117a6bc13a244ba4e59f2afe4d63f808e
+Copyright:
+License:
+#Header:
+#@node endspent
+#@subsection @code{endspent}
+#@findex endspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endttyent.texi
+Hash: 353485a83507aee8c9e0f8d7543cfde2ffd936dd4661252f07a58245a7f06e86
+Copyright:
+License:
+#Header:
+#@node endttyent
+#@subsection @code{endttyent}
+#@findex endttyent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endusershell.texi
+Hash: 3d7510451d51d0337b32959a55732d9db68c360bd0ddf5f7c342657074518413
+Copyright:
+License:
+#Header:
+#@node endusershell
+#@subsection @code{endusershell}
+#@findex endusershell
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/endutent.texi
+Hash: 1d2126a81c39601d25ce2479b13997eea4be84fe13500e6223a15603a36a7e79
+Copyright:
+License:
+#Header:
+#@node endutent
+#@subsection @code{endutent}
+#@findex endutent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/envz_add.texi
+Hash: 929a0bb40555c4cdf9b1d14eeb8e7c789a7a221706e2ee56ea67fb701185641f
+Copyright:
+License:
+#Header:
+#@node envz_add
+#@subsection @code{envz_add}
+#@findex envz_add
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/envz_entry.texi
+Hash: 28cf6f28a93c0ade5125892036a65037b8be5e0b2265132a56172664cb295d70
+Copyright:
+License:
+#Header:
+#@node envz_entry
+#@subsection @code{envz_entry}
+#@findex envz_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/envz_get.texi
+Hash: 73dcfdab7c19f3e3b899aea56ac1cbe8433dc5d91c87650f0d62f50d9e29f1a6
+Copyright:
+License:
+#Header:
+#@node envz_get
+#@subsection @code{envz_get}
+#@findex envz_get
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/envz_merge.texi
+Hash: da6f80f14d5cb2706ee602a6ebdcc7e2783bd46cc4dd1e217286de438f3b1bc7
+Copyright:
+License:
+#Header:
+#@node envz_merge
+#@subsection @code{envz_merge}
+#@findex envz_merge
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/envz_remove.texi
+Hash: 052e269cc2f4c958fc937cfe92377318ac659e361bdfde1ed31ef03cc8225a04
+Copyright:
+License:
+#Header:
+#@node envz_remove
+#@subsection @code{envz_remove}
+#@findex envz_remove
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/envz_strip.texi
+Hash: 9f33728bf5d1263c41541e31829546c6be1bb7149bbee554414674b7a5a76f8f
+Copyright:
+License:
+#Header:
+#@node envz_strip
+#@subsection @code{envz_strip}
+#@findex envz_strip
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/epoll_create.texi
+Hash: e2be8db1d90a7447a960b5dd2f418cf2aae182562f396030b1d0b0ebba5e9289
+Copyright:
+License:
+#Header:
+#@node epoll_create
+#@subsection @code{epoll_create}
+#@findex epoll_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/epoll_ctl.texi
+Hash: 9999e16055753d71a31950a02ef676ba0eea5e033afa1141140e66638120a8ad
+Copyright:
+License:
+#Header:
+#@node epoll_ctl
+#@subsection @code{epoll_ctl}
+#@findex epoll_ctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/epoll_wait.texi
+Hash: f9429a26d6f4f4f72fa6635a53726a953061d951e8626269cd305df15371327b
+Copyright:
+License:
+#Header:
+#@node epoll_wait
+#@subsection @code{epoll_wait}
+#@findex epoll_wait
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/erand48_r.texi
+Hash: 6669b6ab848630d8eb97b64fbb7732d3d5f0adb9cfb2efc13c602d06f44c3011
+Copyright:
+License:
+#Header:
+#@node erand48_r
+#@subsection @code{erand48_r}
+#@findex erand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/err.texi
+Hash: f2822ce953258b67212742fa39cd8f3e71211dcb9ad9e1c08f1733549c5e87b4
+Copyright:
+License:
+#Header:
+#@node err
+#@subsection @code{err}
+#@findex err
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/error.texi
+Hash: 8cef704a2bef7f901913e2ecb6a79a974c5c929784cd1a3efb83762ff9f0f78c
+Copyright:
+License:
+#Header:
+#@node error
+#@subsection @code{error}
+#@findex error
+#
+#Gnulib module: error
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/error_at_line.texi
+Hash: cf9e32d64af320b9a0a362a3a2030fe267c9975dd806450fc034a5271fba6b68
+Copyright:
+License:
+#Header:
+#@node error_at_line
+#@subsection @code{error_at_line}
+#@findex error_at_line
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/error_message_count.texi
+Hash: 64921e6e3cbf254851de971c005efed63de341e918d68815a9cbaf0144fc2474
+Copyright:
+License:
+#Header:
+#@node error_message_count
+#@subsection @code{error_message_count}
+#@findex error_message_count
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/error_one_per_line.texi
+Hash: 41c37fa05255f035aae595ba8be8bf6a948f194d6e8f062a4dc1b3b3621b98c2
+Copyright:
+License:
+#Header:
+#@node error_one_per_line
+#@subsection @code{error_one_per_line}
+#@findex error_one_per_line
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/error_print_progname.texi
+Hash: bc96d8956a86cae93032b2c4c2b2cf3d10a7c8eec32d2dd8a20d3eee8c26b4a6
+Copyright:
+License:
+#Header:
+#@node error_print_progname
+#@subsection @code{error_print_progname}
+#@findex error_print_progname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/errx.texi
+Hash: a7cdc040dd2e090c274719420cedb80b530aacdfe42b7ede1d77a24a148456ce
+Copyright:
+License:
+#Header:
+#@node errx
+#@subsection @code{errx}
+#@findex errx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/ether_aton.texi
+Hash: a842346260d42e4c0a45db5dd7cd75a3177bb0f0df8c990257803c214823ddad
+Copyright:
+License:
+#Header:
+#@node ether_aton
+#@subsection @code{ether_aton}
+#@findex ether_aton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ether_aton_r.texi
+Hash: fe43aa6c687d10c66577fc64c58745d2f5062b4b111066512e0416e4780c8143
+Copyright:
+License:
+#Header:
+#@node ether_aton_r
+#@subsection @code{ether_aton_r}
+#@findex ether_aton_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ether_hostton.texi
+Hash: fe52a6f7a718ca3e4bc6d97cb686fe2b65337b46a9fcaae9ef54f7d9ccef5ee7
+Copyright:
+License:
+#Header:
+#@node ether_hostton
+#@subsection @code{ether_hostton}
+#@findex ether_hostton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ether_line.texi
+Hash: 3cc5f18d0bece8d4994e39601f8c8889a33a4f38e50df1990fad90d20e90a0c6
+Copyright:
+License:
+#Header:
+#@node ether_line
+#@subsection @code{ether_line}
+#@findex ether_line
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ether_ntoa.texi
+Hash: babf9fe2efe3a0d0c4490b4ce7caec7f2b819fa28fa57afb55ab319051106de8
+Copyright:
+License:
+#Header:
+#@node ether_ntoa
+#@subsection @code{ether_ntoa}
+#@findex ether_ntoa
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ether_ntoa_r.texi
+Hash: c2b5156ddda84f53d15db242391715e0f2ca131662587d0cd4d9e62f75b2da45
+Copyright:
+License:
+#Header:
+#@node ether_ntoa_r
+#@subsection @code{ether_ntoa_r}
+#@findex ether_ntoa_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ether_ntohost.texi
+Hash: c2091a64f35c0ae5d661860b1f60d57ad6944ad0403e4bf28a3cc7c96131aaa7
+Copyright:
+License:
+#Header:
+#@node ether_ntohost
+#@subsection @code{ether_ntohost}
+#@findex ether_ntohost
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/euidaccess.texi
+Hash: 2a87b5e240d11086cffaf06df3881482e1ffa24627ab797f4715fc9a215386f2
+Copyright:
+License:
+#Header:
+#@node euidaccess
+#@subsection @code{euidaccess}
+#@findex euidaccess
+#
+#Gnulib module: euidaccess
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/exp10.texi
+Hash: 28f79331e4b58884933515b29863bc9a52742bc7f370744a0e4a10452f099f06
+Copyright:
+License:
+#Header:
+#@node exp10
+#@subsection @code{exp10}
+#@findex exp10
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/exp10f.texi
+Hash: 6bc7b61d534ef6f83c8461e72de721f5118651239555193971f3dad02fa23d46
+Copyright:
+License:
+#Header:
+#@node exp10f
+#@subsection @code{exp10f}
+#@findex exp10f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/exp10l.texi
+Hash: f9565a3a532005973d9b6f51e0c7706ec6dc8d01c19746fa8e505147d54a29ca
+Copyright:
+License:
+#Header:
+#@node exp10l
+#@subsection @code{exp10l}
+#@findex exp10l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fallocate.texi
+Hash: 31fafd55b211c7951256cf510c48929dbf0905c1d6adf6ce67a5f2c834d89e9b
+Copyright:
+License:
+#Header:
+#@node fallocate
+#@subsection @code{fallocate}
+#@findex fallocate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on older glibc versions and all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fcloseall.texi
+Hash: 2454b1a7e29b85b95416951cb3def913d0d4ff6d29f3a9d5ada2168be1b14e49
+Copyright:
+License:
+#Header:
+#@node fcloseall
+#@subsection @code{fcloseall}
+#@findex fcloseall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/fcvt_r.texi
+Hash: 1226fb28c13dfae15d1f84e2ace830d894b9a5785effc4bf23eae22e0819d4c7
+Copyright:
+License:
+#Header:
+#@node fcvt_r
+#@subsection @code{fcvt_r}
+#@findex fcvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/fedisableexcept.texi
+Hash: 559755cb3f08a938aa3cae6ba68289ae9e8545baf594d71a8c7a6242d0371b94
+Copyright:
+License:
+#Header:
+#@node fedisableexcept
+#@subsection @code{fedisableexcept}
+#@findex fedisableexcept
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/feenableexcept.texi
+Hash: db385ebfb7a42feb0e9f02c96ef0ede1e5be24761c1ddbefc2f57da58df53306
+Copyright:
+License:
+#Header:
+#@node feenableexcept
+#@subsection @code{feenableexcept}
+#@findex feenableexcept
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fegetexcept.texi
+Hash: 6ca79a91498b9b0bc91e5a1534a1e08167e795a7018a76dea8c52af2b42cb25b
+Copyright:
+License:
+#Header:
+#@node fegetexcept
+#@subsection @code{fegetexcept}
+#@findex fegetexcept
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/feof_unlocked.texi
+Hash: 1845120fe96136edef181ead3d3d621b9fbfbc50ad928e98b75b0958c34d1bf8
+Copyright:
+License:
+#Header:
+#@node feof_unlocked
+#@subsection @code{feof_unlocked}
+#@findex feof_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/ferror_unlocked.texi
+Hash: cb31a7959c6e17cb428009f020898f3aa9f5a5a94d802a13b13b4d91987f3e0d
+Copyright:
+License:
+#Header:
+#@node ferror_unlocked
+#@subsection @code{ferror_unlocked}
+#@findex ferror_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/fflush_unlocked.texi
+Hash: 7b77cc9354310377449aa1c5e033d3389b2ef98d4d87cdcaf133abc67e518637
+Copyright:
+License:
+#Header:
+#@node fflush_unlocked
+#@subsection @code{fflush_unlocked}
+#@findex fflush_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/ffsl.texi
+Hash: 7ff7df1ee7b12f75c430eb45418546d6ca7af38ee555686d46292d1c6b0d546e
+Copyright:
+License:
+#Header:
+#@node ffsl
+#@subsection @code{ffsl}
+#@findex ffsl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ffsll.texi
+Hash: f42ded9a37fabd10750809c4fb7af7893b2feea0826b23d5ac2ce7574eef4094
+Copyright:
+License:
+#Header:
+#@node ffsll
+#@subsection @code{ffsll}
+#@findex ffsll
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetc_unlocked.texi
+Hash: fd047b70f29ecc5dfbe87e98fb2412798cc35c51efd44e6e2fc83f3893738c27
+Copyright:
+License:
+#Header:
+#@node fgetc_unlocked
+#@subsection @code{fgetc_unlocked}
+#@findex fgetc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetgrent.texi
+Hash: 0b18f0b797c2a7c1860c33c9304af2bfa428622038cbb34e5ada28bba02c0602
+Copyright:
+License:
+#Header:
+#@node fgetgrent
+#@subsection @code{fgetgrent}
+#@findex fgetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetgrent_r.texi
+Hash: 85ec05e27db7a4cd0043130657bcc7d21de99ba3e8547888923170a8a0799df0
+Copyright:
+License:
+#Header:
+#@node fgetgrent_r
+#@subsection @code{fgetgrent_r}
+#@findex fgetgrent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetpwent.texi
+Hash: a57008ebce017626f01d164e1f36cb66ddcaf81e7aa1d43cd1d92b0223d81ebb
+Copyright:
+License:
+#Header:
+#@node fgetpwent
+#@subsection @code{fgetpwent}
+#@findex fgetpwent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetpwent_r.texi
+Hash: 75100ef488211123031efb59301d244ecb208b1cb9b65c4246803fa12ab4d41d
+Copyright:
+License:
+#Header:
+#@node fgetpwent_r
+#@subsection @code{fgetpwent_r}
+#@findex fgetpwent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgets_unlocked.texi
+Hash: 3afe49da21531770e755913daf2957e563869eaf7311d0bbae6c4d2a664b00ec
+Copyright:
+License:
+#Header:
+#@node fgets_unlocked
+#@subsection @code{fgets_unlocked}
+#@findex fgets_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/fgetspent.texi
+Hash: d22f7bf1109eaba8e95ebe8c050a77b9c677932e482068de0092aa1abc993d1d
+Copyright:
+License:
+#Header:
+#@node fgetspent
+#@subsection @code{fgetspent}
+#@findex fgetspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetspent_r.texi
+Hash: 88cce64476ac720a065d48f7ed83e89757d63c47b0397b2e4f66e30384ac5bc4
+Copyright:
+License:
+#Header:
+#@node fgetspent_r
+#@subsection @code{fgetspent_r}
+#@findex fgetspent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetwc_unlocked.texi
+Hash: b29178e60e8b553881d945e4be798334def8c4123d44b176462d522bfe1af2f1
+Copyright:
+License:
+#Header:
+#@node fgetwc_unlocked
+#@subsection @code{fgetwc_unlocked}
+#@findex fgetwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetws_unlocked.texi
+Hash: 73140a13f61673c53dbb5d6a98e4edbf6648d239c6cd9dfa1e58eec08b3ed1f5
+Copyright:
+License:
+#Header:
+#@node fgetws_unlocked
+#@subsection @code{fgetws_unlocked}
+#@findex fgetws_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fgetxattr.texi
+Hash: 690019b55ebc29fa70959ccca4ceea265daeeef5ab17782576151fab734ef1c7
+Copyright:
+License:
+#Header:
+#@node fgetxattr
+#@subsection @code{fgetxattr}
+#@findex fgetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/fileno_unlocked.texi
+Hash: b114e30579686f868d9b5c0c1ebc7b367451428905308c9c5b44788b23cc5fa4
+Copyright:
+License:
+#Header:
+#@node fileno_unlocked
+#@subsection @code{fileno_unlocked}
+#@findex fileno_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/finite.texi
+Hash: 29b265d6f1a1c66117c921380d2f8541ecb864d9bb4b99bd063377b2fc379fb1
+Copyright:
+License:
+#Header:
+#@node finite
+#@subsection @code{finite}
+#@findex finite
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.
+File: ./doc/glibc-functions/finitef.texi
+Hash: 327d8133425a2bca8406a7ae88aa480fc96ef29d5d813d12bef4d00fbb84c11a
+Copyright:
+License:
+#Header:
+#@node finitef
+#@subsection @code{finitef}
+#@findex finitef
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, mingw.
+File: ./doc/glibc-functions/finitel.texi
+Hash: f1dfd14d92d720128a297b18802208de0aef77b8a55724a3bab52e1479a959b7
+Copyright:
+License:
+#Header:
+#@node finitel
+#@subsection @code{finitel}
+#@findex finitel
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/flistxattr.texi
+Hash: f690841408ca5558193c7cb2548a0fde981b916ecc72db6ff57263c37ed95f21
+Copyright:
+License:
+#Header:
+#@node flistxattr
+#@subsection @code{flistxattr}
+#@findex flistxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/flock.texi
+Hash: 7efcc517b27c29ac838581e490b7de074f2a907c7d0e8019e6f1ca8837296a92
+Copyright:
+License:
+#Header:
+#@node flock
+#@subsection @code{flock}
+#@findex flock
+#
+#Gnulib module: flock
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/fopencookie.texi
+Hash: 84f7e5764f5c5ba2402d7e79c475c8bdfacd7d6257c9f7b26fdb3330d7c09349
+Copyright:
+License:
+#Header:
+#@node fopencookie
+#@subsection @code{fopencookie}
+#@findex fopencookie
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/fputc_unlocked.texi
+Hash: eaa6f4ff0366284337b9d6cf787c8b90a4496e22f732d5b3c75a7ad81a701d60
+Copyright:
+License:
+#Header:
+#@node fputc_unlocked
+#@subsection @code{fputc_unlocked}
+#@findex fputc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/fputs_unlocked.texi
+Hash: edd6df84c06304c0437c886bb83502513adc2964f412e1083b0437c0375aea57
+Copyright:
+License:
+#Header:
+#@node fputs_unlocked
+#@subsection @code{fputs_unlocked}
+#@findex fputs_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fputwc_unlocked.texi
+Hash: 1ff188f75d9abcd7575d0fa34888759b6bb1e3f5f8a22b388e78dae16f032015
+Copyright:
+License:
+#Header:
+#@node fputwc_unlocked
+#@subsection @code{fputwc_unlocked}
+#@findex fputwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fputws_unlocked.texi
+Hash: 1c1444e165a52b94709303c0bbe816b400d1f56a57e11dc5ea3b2d2caa8fd7ef
+Copyright:
+License:
+#Header:
+#@node fputws_unlocked
+#@subsection @code{fputws_unlocked}
+#@findex fputws_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fread_unlocked.texi
+Hash: b9d76fc01917357762291957d2a045fc020498ed7c8a767c6b27b2e3046e4fbe
+Copyright:
+License:
+#Header:
+#@node fread_unlocked
+#@subsection @code{fread_unlocked}
+#@findex fread_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/freeifaddrs.texi
+Hash: d5198cf034f6423206e3904ec037f3d2d3cddd2d2a19eb6f4bd11bca16cfb781
+Copyright:
+License:
+#Header:
+#@node freeifaddrs
+#@subsection @code{freeifaddrs}
+#@findex freeifaddrs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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/glibc-functions/fremovexattr.texi
+Hash: 6ba4e774379ac053b21a8a26c04a2a2c453da0770521225903b9ed6de6e3067c
+Copyright:
+License:
+#Header:
+#@node fremovexattr
+#@subsection @code{fremovexattr}
+#@findex fremovexattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/fsetxattr.texi
+Hash: 0fc330b04332599ebb973d94e987ef0f2b31b571ab2cd7a34947c41a12ae1a42
+Copyright:
+License:
+#Header:
+#@node fsetxattr
+#@subsection @code{fsetxattr}
+#@findex fsetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/fstatfs.texi
+Hash: 7c08a51a0efa25dffbf458537d7aecd92c717d76e40ca2966251a39e1c8a70eb
+Copyright:
+License:
+#Header:
+#@node fstatfs
+#@subsection @code{fstatfs}
+#@findex fstatfs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fts_children.texi
+Hash: 94455de1757c151913c00f827b1a2cb6789f967ea511921a4f9c02f6ef1d5acb
+Copyright:
+License:
+#Header:
+#@node fts_children
+#@subsection @code{fts_children}
+#@findex fts_children
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/fts_close.texi
+Hash: f24724092bc824c6d20defedcf74897ac95ebf70949559820a3bc366b0e1f58b
+Copyright:
+License:
+#Header:
+#@node fts_close
+#@subsection @code{fts_close}
+#@findex fts_close
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/fts_open.texi
+Hash: 71e6cf5ee44d9e7d6be7a9d4d2ffdfa9e4b96b9ec8e5de10eaf3bbbae82ad330
+Copyright:
+License:
+#Header:
+#@node fts_open
+#@subsection @code{fts_open}
+#@findex fts_open
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/fts_read.texi
+Hash: 7b1858d353c66d3dbd174039b17a0a4d0b16e8c3899a13eed362f1a4c13244c1
+Copyright:
+License:
+#Header:
+#@node fts_read
+#@subsection @code{fts_read}
+#@findex fts_read
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/fts_set.texi
+Hash: 256a8d88f0cc0955a51687ecf5615cf7a881767b10a089ca44992d99aa8b1429
+Copyright:
+License:
+#Header:
+#@node fts_set
+#@subsection @code{fts_set}
+#@findex fts_set
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/futimes.texi
+Hash: 037829991904df1c3901b1d01cb83109588552f04f88343861b5c4f4f1bf40bc
+Copyright:
+License:
+#Header:
+#@node futimes
+#@subsection @code{futimes}
+#@findex futimes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/fwrite_unlocked.texi
+Hash: 974ebb20ba87289b7f0e6ddefcd90961129b8d175829ffce2e381725d2ba1945
+Copyright:
+License:
+#Header:
+#@node fwrite_unlocked
+#@subsection @code{fwrite_unlocked}
+#@findex fwrite_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/gamma.texi
+Hash: 9cb11d5b2e84aa422c9f2e2133ccd0932dfd228551eadc06b20ec078581b38aa
+Copyright:
+License:
+#Header:
+#@node gamma
+#@subsection @code{gamma}
+#@findex gamma
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+File: ./doc/glibc-functions/gammaf.texi
+Hash: 7edaf91ce2d925820a9a78615837f905f281f4bc2790b11ce2c8772eee1ffee1
+Copyright:
+License:
+#Header:
+#@node gammaf
+#@subsection @code{gammaf}
+#@findex gammaf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/gammal.texi
+Hash: 6e51220bdbd524db03f3041796922be83f750d1c72d031514e4ccb6818a1e395
+Copyright:
+License:
+#Header:
+#@node gammal
+#@subsection @code{gammal}
+#@findex gammal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/get_avphys_pages.texi
+Hash: 86b817fa554261cffad4b234b1c1f76b937059593d07a00c86d3952baeb25aec
+Copyright:
+License:
+#Header:
+#@node get_avphys_pages
+#@subsection @code{get_avphys_pages}
+#@findex get_avphys_pages
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/get_current_dir_name.texi
+Hash: c881b750dfad7180315ee97d2b221ffda075390499de4c95d673654bef8f112a
+Copyright:
+License:
+#Header:
+#@node get_current_dir_name
+#@subsection @code{get_current_dir_name}
+#@findex get_current_dir_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/get_myaddress.texi
+Hash: 57dd4818b22e5ed6e62a684c49b21a6e70f5d70f8819ad0d069ce50a11aece52
+Copyright:
+License:
+#Header:
+#@node get_myaddress
+#@subsection @code{get_myaddress}
+#@findex get_myaddress
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/get_nprocs.texi
+Hash: e4ae1bf4f5a4a4d2fa18f4004fe315b6c3797753a31462fb10b80bab3eebeef5
+Copyright:
+License:
+#Header:
+#@node get_nprocs
+#@subsection @code{get_nprocs}
+#@findex get_nprocs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/get_nprocs_conf.texi
+Hash: 871ded04b70eb098a066433e66a0719f426de8652e8bf2a018c78cce4a8feab6
+Copyright:
+License:
+#Header:
+#@node get_nprocs_conf
+#@subsection @code{get_nprocs_conf}
+#@findex get_nprocs_conf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/get_phys_pages.texi
+Hash: 0b435c167f36008b1c489bbe6e654c84a71339cf253b6e0bf9f6375012ca3fac
+Copyright:
+License:
+#Header:
+#@node get_phys_pages
+#@subsection @code{get_phys_pages}
+#@findex get_phys_pages
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getaliasbyname.texi
+Hash: 65689c5a2dcbda4a359ef794eb15c9024496d01b08165a300e1e95910bb8a18a
+Copyright:
+License:
+#Header:
+#@node getaliasbyname
+#@subsection @code{getaliasbyname}
+#@findex getaliasbyname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getaliasbyname_r.texi
+Hash: 7f5a394056e5e3ef999c0ef65ff789e3fd223586bf3ed8bb06e41f1b0198cdb3
+Copyright:
+License:
+#Header:
+#@node getaliasbyname_r
+#@subsection @code{getaliasbyname_r}
+#@findex getaliasbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getaliasent.texi
+Hash: 0660506d75982e5d03be95aa0f0eb1a59daf650761a21da74b3eac6fcc147867
+Copyright:
+License:
+#Header:
+#@node getaliasent
+#@subsection @code{getaliasent}
+#@findex getaliasent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getaliasent_r.texi
+Hash: 66b222cfcd7497514392309a78bb93a837b1b127131214cafae44be18f39f75f
+Copyright:
+License:
+#Header:
+#@node getaliasent_r
+#@subsection @code{getaliasent_r}
+#@findex getaliasent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getdate_r.texi
+Hash: dc9df7e7e7403e56c170c3b7a33bce22bdb2507b21a261c3a2274538a431816c
+Copyright:
+License:
+#Header:
+#@node getdate_r
+#@subsection @code{getdate_r}
+#@findex getdate_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getdirentries.texi
+Hash: 3a012dd3241b1456caee10d79274eb940c4214014790fc72543bc952dcd7480c
+Copyright:
+License:
+#Header:
+#@node getdirentries
+#@subsection @code{getdirentries}
+#@findex getdirentries
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getdomainname.texi
+Hash: cf1b6b4a46a7477005767cb622701ab85b7d6406b5d6491f46a8c4f65ebcf436
+Copyright:
+License:
+#Header:
+#@node getdomainname
+#@subsection @code{getdomainname}
+#@findex getdomainname
+#
+#Gnulib module: getdomainname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/getdtablesize.texi
+Hash: 06cf32c410472a7d90298a5830e61e20c06ede2e722334ae6e9f63aa9fb918af
+Copyright:
+License:
+#Header:
+#@node getdtablesize
+#@subsection @code{getdtablesize}
+#@findex getdtablesize
+#
+#Gnulib module: getdtablesize
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/getfsent.texi
+Hash: 8fe4b7150bb087d51ba540574f6fd67b6f8d21603d46806af136aa0c804a4f03
+Copyright:
+License:
+#Header:
+#@node getfsent
+#@subsection @code{getfsent}
+#@findex getfsent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getfsfile.texi
+Hash: 4d6b165155cbcf1d90f346c076836501c493c3c4d5b3b50911fdde6a51d30a4f
+Copyright:
+License:
+#Header:
+#@node getfsfile
+#@subsection @code{getfsfile}
+#@findex getfsfile
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getfsspec.texi
+Hash: 98cbde6d93830b56dd77d5410108faad88aa601e687bc9e7db3a330fc2faec5a
+Copyright:
+License:
+#Header:
+#@node getfsspec
+#@subsection @code{getfsspec}
+#@findex getfsspec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getgrent_r.texi
+Hash: 415a963f427a26141a3101785143c8ae15441636078d0713398e1d6806cd824e
+Copyright:
+License:
+#Header:
+#@node getgrent_r
+#@subsection @code{getgrent_r}
+#@findex getgrent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getgrouplist.texi
+Hash: a49850ad2d6a07c35ad979f1159ebcb648b6cbe8736094494ca1469400eaf72d
+Copyright:
+License:
+#Header:
+#@node getgrouplist
+#@subsection @code{getgrouplist}
+#@findex getgrouplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/gethostbyaddr_r.texi
+Hash: df45e5647825973d9f0dd763fa040795dcb4f5bc902da7282abcb73868525863
+Copyright:
+License:
+#Header:
+#@node gethostbyaddr_r
+#@subsection @code{gethostbyaddr_r}
+#@findex gethostbyaddr_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gethostbyname2.texi
+Hash: e719f389b44f23c32ed792b3458b6ea0553f49ed5f3ac8daf200f4b116f9a484
+Copyright:
+License:
+#Header:
+#@node gethostbyname2
+#@subsection @code{gethostbyname2}
+#@findex gethostbyname2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gethostbyname2_r.texi
+Hash: 7dffb2287bac4f81d6d7f64d5e7ec94935a87c3de4f3f32a5dd53d7cc95cc52a
+Copyright:
+License:
+#Header:
+#@node gethostbyname2_r
+#@subsection @code{gethostbyname2_r}
+#@findex gethostbyname2_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gethostbyname_r.texi
+Hash: 19e1150763a82fe7e0239e6fde63ed8e2c97ca30a9d81e16934d038d8f015a8a
+Copyright:
+License:
+#Header:
+#@node gethostbyname_r
+#@subsection @code{gethostbyname_r}
+#@findex gethostbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gethostent_r.texi
+Hash: 0a7b5beeb6683459d5d242bebe81d29591081a3dc8337b6bf4794ef911d90a47
+Copyright:
+License:
+#Header:
+#@node gethostent_r
+#@subsection @code{gethostent_r}
+#@findex gethostent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getifaddrs.texi
+Hash: b6e093fdcea493b5eaf3d05eebf59cc8019e8c30ec1f918dca2ff11926e45f5d
+Copyright:
+License:
+#Header:
+#@node getifaddrs
+#@subsection @code{getifaddrs}
+#@findex getifaddrs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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/glibc-functions/getipv4sourcefilter.texi
+Hash: 6c4a84dbb00ebe732e345872cd6238e6b6a21d0c570782c5027f85a132939cdc
+Copyright:
+License:
+#Header:
+#@node getipv4sourcefilter
+#@subsection @code{getipv4sourcefilter}
+#@findex getipv4sourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getloadavg.texi
+Hash: 5c50122cf493b14e89404a2529742e0eb7f769eaf1ad2e2eb1de55c522f72070
+Copyright:
+License:
+#Header:
+#@node getloadavg
+#@subsection @code{getloadavg}
+#@findex getloadavg
+#
+#Gnulib module: getloadavg
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/getmntent.texi
+Hash: 118d57e88ed72fcb5c276a839dcf8b0c904f5692b6a0edb3f06e68455489f824
+Copyright:
+License:
+#Header:
+#@node getmntent
+#@subsection @code{getmntent}
+#@findex getmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, mingw, BeOS.
+File: ./doc/glibc-functions/getmntent_r.texi
+Hash: 48eb7d81bc253d4a805ba2492968265048fdcbb16ced813c0c7e47fa43786e19
+Copyright:
+License:
+#Header:
+#@node getmntent_r
+#@subsection @code{getmntent_r}
+#@findex getmntent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getnetbyaddr_r.texi
+Hash: 8836358d4db5b375335c43a5829364489815a6743c667794e43dfbe350165119
+Copyright:
+License:
+#Header:
+#@node getnetbyaddr_r
+#@subsection @code{getnetbyaddr_r}
+#@findex getnetbyaddr_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getnetbyname_r.texi
+Hash: 74b2ce77d900b1b43ab6ecf6d5ab1609135ccd0f61fbfbeaed71ec533218ce92
+Copyright:
+License:
+#Header:
+#@node getnetbyname_r
+#@subsection @code{getnetbyname_r}
+#@findex getnetbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getnetent_r.texi
+Hash: 9d9954b6b2c0763e4863e77e693ca5b27b4af1bb9628c68b09b84c5fbfd32569
+Copyright:
+License:
+#Header:
+#@node getnetent_r
+#@subsection @code{getnetent_r}
+#@findex getnetent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getnetgrent.texi
+Hash: c13ce3af9094527db4d66d68ef8b1753c8c544443356ccae7c3b6c80a8192153
+Copyright:
+License:
+#Header:
+#@node getnetgrent
+#@subsection @code{getnetgrent}
+#@findex getnetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getnetgrent_r.texi
+Hash: 31b5ec65e6bdf042d6ec5850f70992b8512f0847207be624ae421c1eba543c4a
+Copyright:
+License:
+#Header:
+#@node getnetgrent_r
+#@subsection @code{getnetgrent_r}
+#@findex getnetgrent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getnetname.texi
+Hash: 0a4a9be7822c9ece381caf81f9e18f6b702a742c21ad0cb63bbaeb38723fe229
+Copyright:
+License:
+#Header:
+#@node getnetname
+#@subsection @code{getnetname}
+#@findex getnetname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getopt_long.texi
+Hash: dad8eb73ad490ceaf3ee7e5c203f85a5bf4c98806402d26ebcd62dbaed58c7a6
+Copyright:
+License:
+#Header:
+#@node getopt_long
+#@subsection @code{getopt_long}
+#@findex getopt_long
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Interix 3.5.
+File: ./doc/glibc-functions/getopt_long_only.texi
+Hash: 38aefb0c9ffea52916f9d325982549e94f16a1f00e0fcbef4b0c17571276c80d
+Copyright:
+License:
+#Header:
+#@node getopt_long_only
+#@subsection @code{getopt_long_only}
+#@findex getopt_long_only
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw, Interix 3.5.
+File: ./doc/glibc-functions/getpagesize.texi
+Hash: 17c733598549bd7e5467f30df030367e9330861157dd95d74e0b470ba83f72a8
+Copyright:
+License:
+#Header:
+#@node getpagesize
+#@subsection @code{getpagesize}
+#@findex getpagesize
+#
+#Gnulib module: getpagesize
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#BeOS.
+#@item
+#This function is broken on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/glibc-functions/getpass.texi
+Hash: 694469640b9f29046e9d2544e5ac1f53e9b4c5a8f5be710ac49bcab014eb3f6a
+Copyright:
+License:
+#Header:
+#@node getpass
+#@subsection @code{getpass}
+#@findex getpass
+#
+#Gnulib module: getpass or getpass-gnu
+#
+#Portability problems fixed by either Gnulib module @code{getpass} or @code{getpass-gnu}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems fixed by Gnulib module @code{getpass-gnu}:
+#@itemize
+File: ./doc/glibc-functions/getprotobyname_r.texi
+Hash: aac24abffdfc1f64410dd5a2db7699f92d0dcff5a635a2a699f8751026986cad
+Copyright:
+License:
+#Header:
+#@node getprotobyname_r
+#@subsection @code{getprotobyname_r}
+#@findex getprotobyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getprotobynumber_r.texi
+Hash: e2bf616350a39627ccee7c70afff54cc519b109982c4b47c8fd24d1c5a24a6dd
+Copyright:
+License:
+#Header:
+#@node getprotobynumber_r
+#@subsection @code{getprotobynumber_r}
+#@findex getprotobynumber_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getprotoent_r.texi
+Hash: 1b20b82271d78e1add8a6c551ecf444f41b8844b3aa86f658341c1da9c4ca1ed
+Copyright:
+License:
+#Header:
+#@node getprotoent_r
+#@subsection @code{getprotoent_r}
+#@findex getprotoent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getpt.texi
+Hash: c6fc22204ce304b1a58766533965391bf90544a87140bc3c144d1b2ec3c2005e
+Copyright:
+License:
+#Header:
+#@node getpt
+#@subsection @code{getpt}
+#@findex getpt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getpublickey.texi
+Hash: 1e5ed1f2dd2cd6f816c391c3c1400afff1a8594c11c520707eba9311d64d99ef
+Copyright:
+License:
+#Header:
+#@node getpublickey
+#@subsection @code{getpublickey}
+#@findex getpublickey
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getpw.texi
+Hash: 3396864fd691dff5978be16d1c8ca280115900c5ab81b4ec3cd820be7c12b6cd
+Copyright:
+License:
+#Header:
+#@node getpw
+#@subsection @code{getpw}
+#@findex getpw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getpwent_r.texi
+Hash: d35394471916e21a74403c692013b97e794c9e13ee8b73d01ba8c40a30973da3
+Copyright:
+License:
+#Header:
+#@node getpwent_r
+#@subsection @code{getpwent_r}
+#@findex getpwent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getresgid.texi
+Hash: 4efd93f503f97b2da4db28219cb83a1d67ad3a1ee604faf21c7edb0cde3788e3
+Copyright:
+License:
+#Header:
+#@node getresgid
+#@subsection @code{getresgid}
+#@findex getresgid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getresuid.texi
+Hash: 4f1280ba0721b8f9c76f825e14245c788548755fad562195beea6cba0ad1d1f7
+Copyright:
+License:
+#Header:
+#@node getresuid
+#@subsection @code{getresuid}
+#@findex getresuid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getrpcbyname.texi
+Hash: 905f78969e816bd350371c52ebe91dad4a5b048ee6f000151ac80b4a65e48b2e
+Copyright:
+License:
+#Header:
+#@node getrpcbyname
+#@subsection @code{getrpcbyname}
+#@findex getrpcbyname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/getrpcbyname_r.texi
+Hash: 44eac722eea8be2fcae7d693ea0284f9ab65ca59b43434d0fa9cdc3978586116
+Copyright:
+License:
+#Header:
+#@node getrpcbyname_r
+#@subsection @code{getrpcbyname_r}
+#@findex getrpcbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getrpcbynumber.texi
+Hash: 19a049fa39885a88b1b1656784167616f7a0f06cc386b49b096128fe8a14849b
+Copyright:
+License:
+#Header:
+#@node getrpcbynumber
+#@subsection @code{getrpcbynumber}
+#@findex getrpcbynumber
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/getrpcbynumber_r.texi
+Hash: 5b8dd84e20a06df244b7d3edc8605103662dfe841148bf00b9a454ef95f02a88
+Copyright:
+License:
+#Header:
+#@node getrpcbynumber_r
+#@subsection @code{getrpcbynumber_r}
+#@findex getrpcbynumber_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getrpcent.texi
+Hash: 548d13540a5fe2e1a3f06658f9888ec428a4921edbcb4e94fbb13845c393cf20
+Copyright:
+License:
+#Header:
+#@node getrpcent
+#@subsection @code{getrpcent}
+#@findex getrpcent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/getrpcent_r.texi
+Hash: 19ab0f4d93c76eb06be0821328366797143747ba178622a0f9ad32e40bed4f3b
+Copyright:
+License:
+#Header:
+#@node getrpcent_r
+#@subsection @code{getrpcent_r}
+#@findex getrpcent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getrpcport.texi
+Hash: cf4a3213ca4830fdea0aaa73c4e0d6bbecd11482e8b41445b0b799f0a900fd3d
+Copyright:
+License:
+#Header:
+#@node getrpcport
+#@subsection @code{getrpcport}
+#@findex getrpcport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/getsecretkey.texi
+Hash: cb680a88fb1c4043d7ad5aeede48e3b45f280065222c98269e3b7e2f1ff3a4c9
+Copyright:
+License:
+#Header:
+#@node getsecretkey
+#@subsection @code{getsecretkey}
+#@findex getsecretkey
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getservbyname_r.texi
+Hash: 2d08f58dc31a7a5d6ce63b87427c82c10463d0677ed9a96c6744dac760cf7262
+Copyright:
+License:
+#Header:
+#@node getservbyname_r
+#@subsection @code{getservbyname_r}
+#@findex getservbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getservbyport_r.texi
+Hash: f488f6a67c41f08aaf2d078d1bee111c5ba850008601f5abe7cb2fcdf2dbd64a
+Copyright:
+License:
+#Header:
+#@node getservbyport_r
+#@subsection @code{getservbyport_r}
+#@findex getservbyport_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getservent_r.texi
+Hash: 6f3fb5e0944a60104ac0c0367388c291c6bd330cf92a5ce3ea037bada24731ae
+Copyright:
+License:
+#Header:
+#@node getservent_r
+#@subsection @code{getservent_r}
+#@findex getservent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getsourcefilter.texi
+Hash: 15322732f310afc29502328c640113b0330af4800e7215f544f5bed24ed06e0e
+Copyright:
+License:
+#Header:
+#@node getsourcefilter
+#@subsection @code{getsourcefilter}
+#@findex getsourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getspent.texi
+Hash: 816a3e44c64019324be118cf732622c9b41800b00d54207318c5ca679391c448
+Copyright:
+License:
+#Header:
+#@node getspent
+#@subsection @code{getspent}
+#@findex getspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getspent_r.texi
+Hash: c90f3c1a8151fd685d77b05c06edad9008729c3d6da221cc0f5f83ffc04fd932
+Copyright:
+License:
+#Header:
+#@node getspent_r
+#@subsection @code{getspent_r}
+#@findex getspent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getspnam.texi
+Hash: e631c5008ad912f6ea71bb26ec876dfa92e9b2bd194088697e5d399c962b248c
+Copyright:
+License:
+#Header:
+#@node getspnam
+#@subsection @code{getspnam}
+#@findex getspnam
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getspnam_r.texi
+Hash: 06de88fb505a2a1a6c2b68ab76d83c4b0cbbe1d455a47eda337bc53683c07825
+Copyright:
+License:
+#Header:
+#@node getspnam_r
+#@subsection @code{getspnam_r}
+#@findex getspnam_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gettext.texi
+Hash: c3e128d9a2aad55928c0e6dec0d5eb46e61499055328c6a496a176b7c9ac4c25
+Copyright:
+License:
+#Header:
+#@node gettext
+#@subsection @code{gettext}
+#@findex gettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getttyent.texi
+Hash: 6323d546b13f1fa19f8d12c7493f30c83d3069e5d758e42d85fff135a2af58d1
+Copyright:
+License:
+#Header:
+#@node getttyent
+#@subsection @code{getttyent}
+#@findex getttyent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getttynam.texi
+Hash: d37f8ec697e742f31810a75c3856bdd3135ac59ca5aff77900a26735a96fc0c7
+Copyright:
+License:
+#Header:
+#@node getttynam
+#@subsection @code{getttynam}
+#@findex getttynam
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getusershell.texi
+Hash: cfab9f44b6e745d3d468f31d513f50ed5583cc39de18788eee15bf69ef1df781
+Copyright:
+License:
+#Header:
+#@node getusershell
+#@subsection @code{getusershell}
+#@findex getusershell
+#
+#Gnulib module: getusershell
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/getutent.texi
+Hash: 6f5c71a6983b4ea15e9a021b7b35f04339c8f553d0a6665bee201e2a4029e32d
+Copyright:
+License:
+#Header:
+#@node getutent
+#@subsection @code{getutent}
+#@findex getutent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getutent_r.texi
+Hash: f23aa1bb4cf2e15afff917913cf5fa875fcce3fd76bf28b6286146cf1a8312cb
+Copyright:
+License:
+#Header:
+#@node getutent_r
+#@subsection @code{getutent_r}
+#@findex getutent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getutid.texi
+Hash: 439997018c8b769dfb084615688bafe72428d4474bdfb0161939704cec828897
+Copyright:
+License:
+#Header:
+#@node getutid
+#@subsection @code{getutid}
+#@findex getutid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getutid_r.texi
+Hash: 9ba7da53bc2795a796bdf6f0dd1b970e8c280d5f17ce03a6b670e9bccb38494b
+Copyright:
+License:
+#Header:
+#@node getutid_r
+#@subsection @code{getutid_r}
+#@findex getutid_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getutline.texi
+Hash: fe54ac8a004414583269fc3344705760ecb22c3c50e12363d49ade9a623af8dc
+Copyright:
+License:
+#Header:
+#@node getutline
+#@subsection @code{getutline}
+#@findex getutline
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getutline_r.texi
+Hash: 36891c71d337e6950a6843a4569e906ecbc3d31a1cced286b170ebf0444c16ef
+Copyright:
+License:
+#Header:
+#@node getutline_r
+#@subsection @code{getutline_r}
+#@findex getutline_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getutmp.texi
+Hash: 5c40fd3e795045b2d723783cb2d898de33a3b0c6c7730816e237fe1cf9a4198b
+Copyright:
+License:
+#Header:
+#@node getutmp
+#@subsection @code{getutmp}
+#@findex getutmp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getutmpx.texi
+Hash: 860f5db05955b646b09ef98b56e1d0f553aba1321aff45ae114e2477330863e0
+Copyright:
+License:
+#Header:
+#@node getutmpx
+#@subsection @code{getutmpx}
+#@findex getutmpx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getw.texi
+Hash: ab2d47caf89a7b4d27c816c5fa8ae1dc26e8bb1719b7513534a167d08bc66bba
+Copyright:
+License:
+#Header:
+#@node getw
+#@subsection @code{getw}
+#@findex getw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#BeOS.
+File: ./doc/glibc-functions/getwc_unlocked.texi
+Hash: e15241f0f79501082baf0556344152cb4ad99e048310bddd3307f49fcd782590
+Copyright:
+License:
+#Header:
+#@node getwc_unlocked
+#@subsection @code{getwc_unlocked}
+#@findex getwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getwchar_unlocked.texi
+Hash: 4bc33b5e349b95a16b08328563f1705c3a8b377d4bba92760d98a3c2e53e0dcc
+Copyright:
+License:
+#Header:
+#@node getwchar_unlocked
+#@subsection @code{getwchar_unlocked}
+#@findex getwchar_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/getxattr.texi
+Hash: 03a413c12f46294e620434f6988a843d1c7b71e9093540c05f8c052577dc98b5
+Copyright:
+License:
+#Header:
+#@node getxattr
+#@subsection @code{getxattr}
+#@findex getxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/glob_pattern_p.texi
+Hash: e5a45525080d1fb6f20b346c999fc57bf1d945c563ca219e40b7df38385c616f
+Copyright:
+License:
+#Header:
+#@node glob_pattern_p
+#@subsection @code{glob_pattern_p}
+#@findex glob_pattern_p
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on most non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/gnu_dev_major.texi
+Hash: 2c8f2c8cd3092dac8fde1de1fa9eba83afac47e2d00f2579adf9f6ea6fa342ab
+Copyright:
+License:
+#Header:
+#@node gnu_dev_major
+#@subsection @code{gnu_dev_major}
+#@findex gnu_dev_major
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gnu_dev_makedev.texi
+Hash: 91456ec1cb52c337a02eab045a676bccd9b81ab87d293c4bb059c08f8cf09782
+Copyright:
+License:
+#Header:
+#@node gnu_dev_makedev
+#@subsection @code{gnu_dev_makedev}
+#@findex gnu_dev_makedev
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gnu_dev_minor.texi
+Hash: f4ba04dbd23ce77e3cefff8b4b2b5c60dfa80629d1069a98d9397a37023b61e1
+Copyright:
+License:
+#Header:
+#@node gnu_dev_minor
+#@subsection @code{gnu_dev_minor}
+#@findex gnu_dev_minor
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gnu_get_libc_release.texi
+Hash: ef4a4671b053aa45ce96e73496c747ef75fcdc144a722460e0be44456916ec38
+Copyright:
+License:
+#Header:
+#@node gnu_get_libc_release
+#@subsection @code{gnu_get_libc_release}
+#@findex gnu_get_libc_release
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/gnu_get_libc_version.texi
+Hash: b5114fbee7bd09824fa503582703e09f7f6b2a7585e6663c67a35609ed382e10
+Copyright:
+License:
+#Header:
+#@node gnu_get_libc_version
+#@subsection @code{gnu_get_libc_version}
+#@findex gnu_get_libc_version
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/group_member.texi
+Hash: 0e0b082f81548c68c61dd3a9eeda82ebf07d7b1fd5b61543994344e045a92408
+Copyright:
+License:
+#Header:
+#@node group_member
+#@subsection @code{group_member}
+#@findex group_member
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/gsignal.texi
+Hash: b2b2657d25fbc80d269f5a0685e399bf312b4d68ba672a068f8f2431ad41b553
+Copyright:
+License:
+#Header:
+#@node gsignal
+#@subsection @code{gsignal}
+#@findex gsignal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/hasmntopt.texi
+Hash: 36f7270890737ec725e1cc0561841b5887be379932a7033ec8b834289f5d3a8b
+Copyright:
+License:
+#Header:
+#@node hasmntopt
+#@subsection @code{hasmntopt}
+#@findex hasmntopt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/hcreate_r.texi
+Hash: abc69a457cc1547bbeecb52c53a69d35e837795fca08831198f38f4dfccd9c5a
+Copyright:
+License:
+#Header:
+#@node hcreate_r
+#@subsection @code{hcreate_r}
+#@findex hcreate_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/hdestroy_r.texi
+Hash: bf9ebc5b6f3dc6c2fef05616d7749656828c50f575497157021cd89b734630c3
+Copyright:
+License:
+#Header:
+#@node hdestroy_r
+#@subsection @code{hdestroy_r}
+#@findex hdestroy_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/herror.texi
+Hash: 7efb9d00e25020573fe0ca6d431f5327a0e107cfdb5d169ea32044a5b6a90981
+Copyright:
+License:
+#Header:
+#@node herror
+#@subsection @code{herror}
+#@findex herror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5.
+File: ./doc/glibc-functions/host2netname.texi
+Hash: b79d5bf0b0a6505453d8350062b6df0e9778f32ddb2362c3f8588bdef2810d9e
+Copyright:
+License:
+#Header:
+#@node host2netname
+#@subsection @code{host2netname}
+#@findex host2netname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/hsearch_r.texi
+Hash: 5e162a4ac8adb0bbf7952b6adb65c2b16238a077bfe346cf416573a5d02bf8b9
+Copyright:
+License:
+#Header:
+#@node hsearch_r
+#@subsection @code{hsearch_r}
+#@findex hsearch_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/hstrerror.texi
+Hash: ff2896c321e129159b197b089ba7d3b2bd432f5c19892df7bbcce553a885f3f5
+Copyright:
+License:
+#Header:
+#@node hstrerror
+#@subsection @code{hstrerror}
+#@findex hstrerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/in6addr_any.texi
+Hash: 3343d5d1d2109f64c2734eaff57f503f856d8cf36c052b02fbea1534b6b254ec
+Copyright:
+License:
+#Header:
+#@node in6addr_any
+#@subsection @code{in6addr_any}
+#@findex in6addr_any
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This constant is missing on some platforms:
+#MacOS X 10.3, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/in6addr_loopback.texi
+Hash: f691c99e758b8950e9d2c3d2632ba2188ccce0bf0e2a694b5fc6bfb3d8d0e62f
+Copyright:
+License:
+#Header:
+#@node in6addr_loopback
+#@subsection @code{in6addr_loopback}
+#@findex in6addr_loopback
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This constant is missing on some platforms:
+#MacOS X 10.3, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet6_option_alloc.texi
+Hash: f8ee416c2fafae2cc7de879032e7e823c23f002bb1f0da2f9775c0365c34ba50
+Copyright:
+License:
+#Header:
+#@node inet6_option_alloc
+#@subsection @code{inet6_option_alloc}
+#@findex inet6_option_alloc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet6_option_append.texi
+Hash: 32eed6853d5746e0ae79df426c83fbbe260b5d207cb80f91e936621abbc3c97c
+Copyright:
+License:
+#Header:
+#@node inet6_option_append
+#@subsection @code{inet6_option_append}
+#@findex inet6_option_append
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet6_option_find.texi
+Hash: 8baa6d877ecd7d6bb686c29f627489c85204f5aaf48caa2abaf89eec92dcb309
+Copyright:
+License:
+#Header:
+#@node inet6_option_find
+#@subsection @code{inet6_option_find}
+#@findex inet6_option_find
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet6_option_init.texi
+Hash: 716e71d5494dfdb22f64896bde3fa8ae205c6bb991f7e9c6d0fc952c846f47dc
+Copyright:
+License:
+#Header:
+#@node inet6_option_init
+#@subsection @code{inet6_option_init}
+#@findex inet6_option_init
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet6_option_next.texi
+Hash: 13cbcc7303e27c83c1774694d78389e69aa86407793a5949c9d9405345911b82
+Copyright:
+License:
+#Header:
+#@node inet6_option_next
+#@subsection @code{inet6_option_next}
+#@findex inet6_option_next
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet6_option_space.texi
+Hash: 6a338b1ab5bf78425879176034fbd8ce86ea60012693598f4ea14ecae1e3a5f6
+Copyright:
+License:
+#Header:
+#@node inet6_option_space
+#@subsection @code{inet6_option_space}
+#@findex inet6_option_space
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet_aton.texi
+Hash: 9a56198c1b11ffa7150833f8ee1d9a4028f6aa89bd414b1f7a0e7c543cff9f16
+Copyright:
+License:
+#Header:
+#@node inet_aton
+#@subsection @code{inet_aton}
+#@findex inet_aton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/inet_lnaof.texi
+Hash: 20483661f4173ae4282bab0f288af2fa5e182b5412f23a427c4436a1f8265660
+Copyright:
+License:
+#Header:
+#@node inet_lnaof
+#@subsection @code{inet_lnaof}
+#@findex inet_lnaof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/inet_makeaddr.texi
+Hash: ecbcf0e5b28d43d1b529117c3fc1158cf0098e7ce14f76ed0d567668319cb56e
+Copyright:
+License:
+#Header:
+#@node inet_makeaddr
+#@subsection @code{inet_makeaddr}
+#@findex inet_makeaddr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/inet_net_ntop.texi
+Hash: 77ee21bd1f169d7eb033b898b34b45a0237e0df1410f25dd455a01729c3c05d6
+Copyright:
+License:
+#Header:
+#@node inet_net_ntop
+#@subsection @code{inet_net_ntop}
+#@findex inet_net_ntop
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet_net_pton.texi
+Hash: 8091b168ada9dce7cbb5a6a514333edd9f7183085b640320a395810c26b5a4b4
+Copyright:
+License:
+#Header:
+#@node inet_net_pton
+#@subsection @code{inet_net_pton}
+#@findex inet_net_pton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet_neta.texi
+Hash: 3c964ed2f9db297bb4dcf3465662c790ab871bb6097a662047e7c1e08390065c
+Copyright:
+License:
+#Header:
+#@node inet_neta
+#@subsection @code{inet_neta}
+#@findex inet_neta
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet_netof.texi
+Hash: d70586041f476627921035730357871373233e52c0c6e94f91818550e6b66eaf
+Copyright:
+License:
+#Header:
+#@node inet_netof
+#@subsection @code{inet_netof}
+#@findex inet_netof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/inet_network.texi
+Hash: f2254b279938a2eec4c6ecc5454ce2b3beb3bd6351d7975d0f0cd8790b21f533
+Copyright:
+License:
+#Header:
+#@node inet_network
+#@subsection @code{inet_network}
+#@findex inet_network
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/inet_nsap_addr.texi
+Hash: c1c16ad1ff261f383ff1c3afc2d485879cd52700b11d1b32d6dd64c261374cc3
+Copyright:
+License:
+#Header:
+#@node inet_nsap_addr
+#@subsection @code{inet_nsap_addr}
+#@findex inet_nsap_addr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/inet_nsap_ntoa.texi
+Hash: 22cbce91c0a84fc930ea34428b2487e2cc500468c4078b1cb753e56d6c91d490
+Copyright:
+License:
+#Header:
+#@node inet_nsap_ntoa
+#@subsection @code{inet_nsap_ntoa}
+#@findex inet_nsap_ntoa
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/initgroups.texi
+Hash: 10e6d0b7a28afe505954b18d7222af105b5c0d8bdd5981dd65217435dc52cfa6
+Copyright:
+License:
+#Header:
+#@node initgroups
+#@subsection @code{initgroups}
+#@findex initgroups
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/initstate_r.texi
+Hash: 50335fba65ff9a2874843ef28cf645262a1f58db8252219f19d40c753f96617f
+Copyright:
+License:
+#Header:
+#@node initstate_r
+#@subsection @code{initstate_r}
+#@findex initstate_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/innetgr.texi
+Hash: 98fc724eab658d8ed65ba83432248a5d34c20a9d3d052ad6a96bfbcb9bcc62cb
+Copyright:
+License:
+#Header:
+#@node innetgr
+#@subsection @code{innetgr}
+#@findex innetgr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ioperm.texi
+Hash: 823826c8fd5e3e084b894cb58615b662b2bf53547e5e3808f4249cd4101bcadc
+Copyright:
+License:
+#Header:
+#@node ioperm
+#@subsection @code{ioperm}
+#@findex ioperm
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/iopl.texi
+Hash: 3e7a8dd4e5b5ae33a9f5e799d208ddc48030ed9fee2c0d94b15262ab5b16030a
+Copyright:
+License:
+#Header:
+#@node iopl
+#@subsection @code{iopl}
+#@findex iopl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/isctype.texi
+Hash: 889baa1d5aa326c2837dc4f72b30c184cea862b1a32ed8dc7d20b6b87d5f235f
+Copyright:
+License:
+#Header:
+#@node isctype
+#@subsection @code{isctype}
+#@findex isctype
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/isfdtype.texi
+Hash: b493b5b3e930e6aa2d5182a88f186dbf845e087ff44fddeb94fb7989c9969514
+Copyright:
+License:
+#Header:
+#@node isfdtype
+#@subsection @code{isfdtype}
+#@findex isfdtype
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/isinff.texi
+Hash: 7b778ea3f39894bff3a41540003a2ea2ce14fef3bb60ef86d52ee6660ef0e805
+Copyright:
+License:
+#Header:
+#@node isinff
+#@subsection @code{isinff}
+#@findex isinff
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw.
+File: ./doc/glibc-functions/isinfl.texi
+Hash: d68b2173aab022dadd5e172ba5216fba620cd71f9e5b92a99548f1ae1ebfe338
+Copyright:
+License:
+#Header:
+#@node isinfl
+#@subsection @code{isinfl}
+#@findex isinfl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/isnanf.texi
+Hash: 1bce23ee271e7eef2d71e8db58edf3ca47dc80441668f74c81dbe8826bf87b2b
+Copyright:
+License:
+#Header:
+#@node isnanf
+#@subsection @code{isnanf}
+#@findex isnanf
+#
+#Gnulib module: isnanf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/isnanl.texi
+Hash: efbd3688a2c450ca48c45b0136ced1c4aff2c88514808efec73f03fd9b78c319
+Copyright:
+License:
+#Header:
+#@node isnanl
+#@subsection @code{isnanl}
+#@findex isnanl
+#
+#Gnulib module: isnanl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/j0f.texi
+Hash: f018984a8e665058bcee8aba2e80e8d77c5ac1a803125c397151f46fe43e20e6
+Copyright:
+License:
+#Header:
+#@node j0f
+#@subsection @code{j0f}
+#@findex j0f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/j0l.texi
+Hash: be8df2ff66c9633147a1dc233d630b26af08ffdfa1933cf4aaf9f4d09d5a5941
+Copyright:
+License:
+#Header:
+#@node j0l
+#@subsection @code{j0l}
+#@findex j0l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/j1f.texi
+Hash: e6ea933aca4d80ea575f33af255ab6a3a2eda0cdd27784b83b53ca5d66211d21
+Copyright:
+License:
+#Header:
+#@node j1f
+#@subsection @code{j1f}
+#@findex j1f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/j1l.texi
+Hash: 36579052197222d9efc066047354b6a133e706205b9f137ecf4b71427b4fdc15
+Copyright:
+License:
+#Header:
+#@node j1l
+#@subsection @code{j1l}
+#@findex j1l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/jnf.texi
+Hash: f14a75b388ab7fe56275dae1799ba1c17cde27b7e5d9b96b1a391a33b3df3efc
+Copyright:
+License:
+#Header:
+#@node jnf
+#@subsection @code{jnf}
+#@findex jnf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/jnl.texi
+Hash: 3349339e57b6eade070ba4b9cbe16e5a0618a9b85fddbc1a5247036cc12fa268
+Copyright:
+License:
+#Header:
+#@node jnl
+#@subsection @code{jnl}
+#@findex jnl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/jrand48_r.texi
+Hash: 875e437face5769c385f1106637fd80c5bb8eb5b226ca64b99af6987eddd8647
+Copyright:
+License:
+#Header:
+#@node jrand48_r
+#@subsection @code{jrand48_r}
+#@findex jrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/key_decryptsession.texi
+Hash: f14cf546a9737b2f8028dafe7ef389ce9b886ba35d2542ddc8ae65517df1610d
+Copyright:
+License:
+#Header:
+#@node key_decryptsession
+#@subsection @code{key_decryptsession}
+#@findex key_decryptsession
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/key_decryptsession_pk.texi
+Hash: 5a61fcee114acb7ca73e3e27b17554cff55f4d20b58627e0d6482974bcfd9fc1
+Copyright:
+License:
+#Header:
+#@node key_decryptsession_pk
+#@subsection @code{key_decryptsession_pk}
+#@findex key_decryptsession_pk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/key_encryptsession.texi
+Hash: a352d0f45112554f83095b1b11cfc6c2fe3dd18846a2e279d57a07069eaeaa29
+Copyright:
+License:
+#Header:
+#@node key_encryptsession
+#@subsection @code{key_encryptsession}
+#@findex key_encryptsession
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/key_encryptsession_pk.texi
+Hash: 50ce495fb62eac5281e2a5197c60eb843d01fa0e0d74462c77c5f5d108c772bf
+Copyright:
+License:
+#Header:
+#@node key_encryptsession_pk
+#@subsection @code{key_encryptsession_pk}
+#@findex key_encryptsession_pk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/key_gendes.texi
+Hash: ff565b8a1f485504fddc3dd79b2a5298cafee45d9cfd295f06952f93cf0fc41c
+Copyright:
+License:
+#Header:
+#@node key_gendes
+#@subsection @code{key_gendes}
+#@findex key_gendes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/key_get_conv.texi
+Hash: 2d67dd92f660d35a6c01ee3ab092b29f019bce6e4cc42b7d6090ddcd22078945
+Copyright:
+License:
+#Header:
+#@node key_get_conv
+#@subsection @code{key_get_conv}
+#@findex key_get_conv
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/key_secretkey_is_set.texi
+Hash: bd6b7b1dace7b7a1b74b4b0b2c58048aed86b897ffc611526f68c6c8582b5f8b
+Copyright:
+License:
+#Header:
+#@node key_secretkey_is_set
+#@subsection @code{key_secretkey_is_set}
+#@findex key_secretkey_is_set
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/key_setsecret.texi
+Hash: 6094078abb1f07ee4edafc08a32407f75d51ce0754608fbcf30285aa93aeeed9
+Copyright:
+License:
+#Header:
+#@node key_setsecret
+#@subsection @code{key_setsecret}
+#@findex key_setsecret
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/klogctl.texi
+Hash: e94f06a40c4d0334e6164193081d720d3919f87240350763f60fc1bd02243920
+Copyright:
+License:
+#Header:
+#@node klogctl
+#@subsection @code{klogctl}
+#@findex klogctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/lchmod.texi
+Hash: 41c523da30a051dd99ec2257cb0be4a516ebd67cf98f27fd1cdec7233791c0e9
+Copyright:
+License:
+#Header:
+#@node lchmod
+#@subsection @code{lchmod}
+#@findex lchmod
+#
+#Gnulib module: lchmod
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/lckpwdf.texi
+Hash: 6ce97709bb88f0181fdead5cdd63ba4ea2ff23e2133e08ef3ad6f38aad44d168
+Copyright:
+License:
+#Header:
+#@node lckpwdf
+#@subsection @code{lckpwdf}
+#@findex lckpwdf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/lcong48_r.texi
+Hash: cdf1fc0cf75c5dfa76850685b7dfa0970223c08ac3c313511109705f041e32e5
+Copyright:
+License:
+#Header:
+#@node lcong48_r
+#@subsection @code{lcong48_r}
+#@findex lcong48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/lgamma_r.texi
+Hash: f1067f2deef4d6d086b613dafcf75e2d8a8b33516dcea3d650a4e53eb798be85
+Copyright:
+License:
+#Header:
+#@node lgamma_r
+#@subsection @code{lgamma_r}
+#@findex lgamma_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, OSF/1 5.1, mingw.
+File: ./doc/glibc-functions/lgammaf_r.texi
+Hash: 07fc9d2fb55d3b03b25613c659cd7a421cec84336ba790a0140f2b5170959e36
+Copyright:
+License:
+#Header:
+#@node lgammaf_r
+#@subsection @code{lgammaf_r}
+#@findex lgammaf_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+File: ./doc/glibc-functions/lgammal_r.texi
+Hash: a202db76414d545a82571afd6b5b142038b5c76857892595291bd0956dbabded
+Copyright:
+License:
+#Header:
+#@node lgammal_r
+#@subsection @code{lgammal_r}
+#@findex lgammal_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/lgetxattr.texi
+Hash: b4016960542d19ab531b198fa260b565e234aa75f52e450a4ddac8c4153c2b86
+Copyright:
+License:
+#Header:
+#@node lgetxattr
+#@subsection @code{lgetxattr}
+#@findex lgetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/listxattr.texi
+Hash: 766b533e1039bda67b46b2abc106e61b68237807b365fa2d8c7cd9cedb09b7ed
+Copyright:
+License:
+#Header:
+#@node listxattr
+#@subsection @code{listxattr}
+#@findex listxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/llistxattr.texi
+Hash: cb2cc96665e3469eab1aca6e9914d527d7deebeb1c577cf6e66e9927b5d0d9af
+Copyright:
+License:
+#Header:
+#@node llistxattr
+#@subsection @code{llistxattr}
+#@findex llistxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/loc1.texi
+Hash: 9949724a8185c91f3ef464d2aa050f0b5b43eaa8321a6a2515bd0b6999330021
+Copyright:
+License:
+#Header:
+#@node loc1
+#@subsection @code{loc1}
+#@findex loc1
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/loc2.texi
+Hash: df9bf9c136fd206c3634b2407f5b42dc6c9288ce610651a6db47701b1370b762
+Copyright:
+License:
+#Header:
+#@node loc2
+#@subsection @code{loc2}
+#@findex loc2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/locs.texi
+Hash: 1a2e4532efeb8ca8cc341d087d36601be44fa8bae2739f429d389c234c74841b
+Copyright:
+License:
+#Header:
+#@node locs
+#@subsection @code{locs}
+#@findex locs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/lrand48_r.texi
+Hash: 7b0e546feae99c2ea77f3129dd3efb78f581ebbc0ac49a32cf55bbac1a3c8d1e
+Copyright:
+License:
+#Header:
+#@node lrand48_r
+#@subsection @code{lrand48_r}
+#@findex lrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/lremovexattr.texi
+Hash: dac08211e81a4886e6300466d6179c752fa4e88d6e18909047d998eb01c48fe1
+Copyright:
+License:
+#Header:
+#@node lremovexattr
+#@subsection @code{lremovexattr}
+#@findex lremovexattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/lsetxattr.texi
+Hash: e72b0131c569a6b2919740004a201d9042a5886861a99a6682116e0d74deedd0
+Copyright:
+License:
+#Header:
+#@node lsetxattr
+#@subsection @code{lsetxattr}
+#@findex lsetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/lutimes.texi
+Hash: 4494237aa78d1f5feae4a8716c80b67462a78776a0e04621a5e002a93c5e9db1
+Copyright:
+License:
+#Header:
+#@node lutimes
+#@subsection @code{lutimes}
+#@findex lutimes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/madvise.texi
+Hash: 0abf4aaa28a84d398b86fc0b64fe40ba82661a7aa28be80be83ce5481999c24b
+Copyright:
+License:
+#Header:
+#@node madvise
+#@subsection @code{madvise}
+#@findex madvise
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/mallinfo.texi
+Hash: 53dc1fe63b43700cfc5595bb7c9b42bf254ea159738be0d6f19e32959922a525
+Copyright:
+License:
+#Header:
+#@node mallinfo
+#@subsection @code{mallinfo}
+#@findex mallinfo
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/malloc_get_state.texi
+Hash: 0f8db5157459002d516fab08a56deebcf940e6ed3025d83ef829c901798a9bf3
+Copyright:
+License:
+#Header:
+#@node malloc_get_state
+#@subsection @code{malloc_get_state}
+#@findex malloc_get_state
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/malloc_set_state.texi
+Hash: 4bf70c2bcd80fab43784d28c0b12af9e30854ed31c601ff859a7b01f3acfb720
+Copyright:
+License:
+#Header:
+#@node malloc_set_state
+#@subsection @code{malloc_set_state}
+#@findex malloc_set_state
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/malloc_stats.texi
+Hash: 2298a8823b378dea8818f1d9a770ac197b8503a13a69fd7346fec1b8adc5badf
+Copyright:
+License:
+#Header:
+#@node malloc_stats
+#@subsection @code{malloc_stats}
+#@findex malloc_stats
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/malloc_trim.texi
+Hash: 8fa0f761ba3f7a709958c154bc5b00060432a7bc5d64dd87a029374c23b3c721
+Copyright:
+License:
+#Header:
+#@node malloc_trim
+#@subsection @code{malloc_trim}
+#@findex malloc_trim
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/malloc_usable_size.texi
+Hash: e03768f538df19a72d96df56a8d72b851ed620417a3cfbf0f023984a7aa27cbc
+Copyright:
+License:
+#Header:
+#@node malloc_usable_size
+#@subsection @code{malloc_usable_size}
+#@findex malloc_usable_size
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/mallopt.texi
+Hash: 354303e13ef60ac8f163ce31970099caae693733e806a3d784b35c6502380d33
+Copyright:
+License:
+#Header:
+#@node mallopt
+#@subsection @code{mallopt}
+#@findex mallopt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/matherr.texi
+Hash: c9f25db9aa8e2d44cb7c2d7eb36e59a781374db3345e762d9947e00308b640af
+Copyright:
+License:
+#Header:
+#@node matherr
+#@subsection @code{matherr}
+#@findex matherr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 6.0, AIX 5.1, HP-UX 11, OSF/1 5.1, mingw.
+File: ./doc/glibc-functions/mcheck.texi
+Hash: 43737afc82a18aee7de3fedd13d407ddc56eb478a24e445430f3562474a8d00d
+Copyright:
+License:
+#Header:
+#@node mcheck
+#@subsection @code{mcheck}
+#@findex mcheck
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/mcheck_check_all.texi
+Hash: 05f9d5fb933246bb5f0e7c78250f93db035e76fc439f2b23d51d878607946515
+Copyright:
+License:
+#Header:
+#@node mcheck_check_all
+#@subsection @code{mcheck_check_all}
+#@findex mcheck_check_all
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/mcheck_pedantic.texi
+Hash: 073bd20f56761fe3864be551f40f53acdf50e7f558c6283e8bb446e1a7507e0a
+Copyright:
+License:
+#Header:
+#@node mcheck_pedantic
+#@subsection @code{mcheck_pedantic}
+#@findex mcheck_pedantic
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/memalign.texi
+Hash: f136fa4c4d15ffdbd5f531220ea80a0fe280ea744efe2df2464ca729ed50544a
+Copyright:
+License:
+#Header:
+#@node memalign
+#@subsection @code{memalign}
+#@findex memalign
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, mingw, Interix 3.5.
+File: ./doc/glibc-functions/memfrob.texi
+Hash: 90bb532679e589dc002bdac93373fb237660eee372041a4d57bbc10bca2b4613
+Copyright:
+License:
+#Header:
+#@node memfrob
+#@subsection @code{memfrob}
+#@findex memfrob
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/memmem.texi
+Hash: 04f124a3fcb1df4da38a60d37d4857c9345452b7fbf71a71c6002a518c95ead1
+Copyright:
+License:
+#Header:
+#@node memmem
+#@subsection @code{memmem}
+#@findex memmem
+#
+#Gnulib module: memmem or memmem-simple
+#
+#Portability problems fixed by either Gnulib module @code{memmem-simple}
+#or @code{memmem}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, OpenBSD 4.0, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@item
+#This function has reversed arguments on some older platforms:
+#Linux libc 5.0.9
+File: ./doc/glibc-functions/mempcpy.texi
+Hash: b858f2e5874b7b279e54b70d044ef9bd6b836bf3cdb7e62182ef094457ea7fb6
+Copyright:
+License:
+#Header:
+#@node mempcpy
+#@subsection @code{mempcpy}
+#@findex mempcpy
+#
+#Gnulib module: mempcpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/memrchr.texi
+Hash: f10096eec4df36c30bc322d5f37c71eb9e1295c8d1279caa10d7337adb9e9bfe
+Copyright:
+License:
+#Header:
+#@node memrchr
+#@subsection @code{memrchr}
+#@findex memrchr
+#
+#Gnulib module: memrchr
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/mincore.texi
+Hash: d5ceb391e9ca3ad88142c561d35df48487b2b5244eb31c59c10c86148c729d52
+Copyright:
+License:
+#Header:
+#@node mincore
+#@subsection @code{mincore}
+#@findex mincore
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/mkostemp.texi
+Hash: b2b1685ff0c8b88ee8472b3ef555c792849913110ee83219aad70e59cb6ecb84
+Copyright:
+License:
+#Header:
+#@node mkostemp
+#@subsection @code{mkostemp}
+#@findex mkostemp
+#
+#Gnulib module: mkostemp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/monstartup.texi
+Hash: 66ff5e7ec331a6bc6b660646ab8eb22538317c7d33f96fcabd0c5d425803cfad
+Copyright:
+License:
+#Header:
+#@node monstartup
+#@subsection @code{monstartup}
+#@findex monstartup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/mount.texi
+Hash: 89d49f190bf722b33bba60f3422d827ee83250869251d905394a34bf4bba6a9b
+Copyright:
+License:
+#Header:
+#@node mount
+#@subsection @code{mount}
+#@findex mount
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5.
+File: ./doc/glibc-functions/mprobe.texi
+Hash: 2ac42cda54a697d68ea2e325e4ba43eb65736cd30b4382aede8dc4824572f9b1
+Copyright:
+License:
+#Header:
+#@node mprobe
+#@subsection @code{mprobe}
+#@findex mprobe
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/mrand48_r.texi
+Hash: ffb500a2ff554d63422da2ea61c5b231549100a88736dd7fc3b506d3b5fb3094
+Copyright:
+License:
+#Header:
+#@node mrand48_r
+#@subsection @code{mrand48_r}
+#@findex mrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/mremap.texi
+Hash: 4e3207e5e74599c816870d954202dcdae1715843b3df121a4f2e92175bff329d
+Copyright:
+License:
+#Header:
+#@node mremap
+#@subsection @code{mremap}
+#@findex mremap
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/mtrace.texi
+Hash: db58f2773449db5048f8cfc6447f1ec6a5800205846cafe936b2e50df304b6c0
+Copyright:
+License:
+#Header:
+#@node mtrace
+#@subsection @code{mtrace}
+#@findex mtrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/muntrace.texi
+Hash: e4ef0e069f49433b429895b055f989584f43aee61bc11729d0b12690d53265a0
+Copyright:
+License:
+#Header:
+#@node muntrace
+#@subsection @code{muntrace}
+#@findex muntrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/netname2host.texi
+Hash: f6e22e73db730831231e52473244e21f49b9472597a7d25ee6374780b72b7be4
+Copyright:
+License:
+#Header:
+#@node netname2host
+#@subsection @code{netname2host}
+#@findex netname2host
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/netname2user.texi
+Hash: 297df46c6a600ed01680f8e1ab82d3eb8dfea80bafc392c63ff042c3066b957d
+Copyright:
+License:
+#Header:
+#@node netname2user
+#@subsection @code{netname2user}
+#@findex netname2user
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ngettext.texi
+Hash: 353e35ccc3655d2746555f2166fe50c9745ff46f8d3b9da62cdf4e2478edfd0d
+Copyright:
+License:
+#Header:
+#@node ngettext
+#@subsection @code{ngettext}
+#@findex ngettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_add.texi
+Hash: 263e816d7afa10f2eff1d04d45ad18c9376fefc8387e038002157f1fb9b9e627
+Copyright:
+License:
+#Header:
+#@node nis_add
+#@subsection @code{nis_add}
+#@findex nis_add
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_add_entry.texi
+Hash: be462a1c0813a2fbe4a6c63c656728103b648f8ebf90d7d65cfd43b7c9bf2122
+Copyright:
+License:
+#Header:
+#@node nis_add_entry
+#@subsection @code{nis_add_entry}
+#@findex nis_add_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_addmember.texi
+Hash: 7072a94c1c6a763fbdb403984914dab8d19e94f4e006d2da05d793a5e9d79671
+Copyright:
+License:
+#Header:
+#@node nis_addmember
+#@subsection @code{nis_addmember}
+#@findex nis_addmember
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_checkpoint.texi
+Hash: e4226fd044059c8fe33f10a2fdb76cc5fc56b89c1d3311a5df12bfd78967e027
+Copyright:
+License:
+#Header:
+#@node nis_checkpoint
+#@subsection @code{nis_checkpoint}
+#@findex nis_checkpoint
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_clone_object.texi
+Hash: a464d80bc89c5ec658aa632ff8d84414cbbe990b840f5d53e82199e019a4222c
+Copyright:
+License:
+#Header:
+#@node nis_clone_object
+#@subsection @code{nis_clone_object}
+#@findex nis_clone_object
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_creategroup.texi
+Hash: 5e4f2f700588803a40a7426e00f416c4be2652170b4665a3b23aa6e553094d81
+Copyright:
+License:
+#Header:
+#@node nis_creategroup
+#@subsection @code{nis_creategroup}
+#@findex nis_creategroup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_destroy_object.texi
+Hash: 86f6389d465a145bc9091b09bed0c51c1c7ee4d09f94612821e1b529fe29074a
+Copyright:
+License:
+#Header:
+#@node nis_destroy_object
+#@subsection @code{nis_destroy_object}
+#@findex nis_destroy_object
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_destroygroup.texi
+Hash: e11e32b812c8f945ae14541ca337f9536b7a79ef57894734a37d2778596935ac
+Copyright:
+License:
+#Header:
+#@node nis_destroygroup
+#@subsection @code{nis_destroygroup}
+#@findex nis_destroygroup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_dir_cmp.texi
+Hash: 5ab7cef0103aeadbae156d28208185b62d0745b1f91b0201776b400d5fdbbd3d
+Copyright:
+License:
+#Header:
+#@node nis_dir_cmp
+#@subsection @code{nis_dir_cmp}
+#@findex nis_dir_cmp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_domain_of.texi
+Hash: cb2e2f91fac66b3ef7cbbed96c046597d9402dac44e48715e298c5d3325b33e2
+Copyright:
+License:
+#Header:
+#@node nis_domain_of
+#@subsection @code{nis_domain_of}
+#@findex nis_domain_of
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_domain_of_r.texi
+Hash: e01fa11b120ba609cc2b03eb06432003342c5c2f6777c32b6b476bc8c80107ad
+Copyright:
+License:
+#Header:
+#@node nis_domain_of_r
+#@subsection @code{nis_domain_of_r}
+#@findex nis_domain_of_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_first_entry.texi
+Hash: 45660d94336a14941d4700b9f46ae7b03258556c408af401e0bc43e60c92fdc4
+Copyright:
+License:
+#Header:
+#@node nis_first_entry
+#@subsection @code{nis_first_entry}
+#@findex nis_first_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_freenames.texi
+Hash: 33c1a1ff5e5749756bb71d4be9085a4e0906d101402c28d9b918a58d5c2ff30d
+Copyright:
+License:
+#Header:
+#@node nis_freenames
+#@subsection @code{nis_freenames}
+#@findex nis_freenames
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_freeresult.texi
+Hash: d641a6f0bd155a2f4fb7439d570eccb55e645429ca22e9c07c97a8ab658afbc5
+Copyright:
+License:
+#Header:
+#@node nis_freeresult
+#@subsection @code{nis_freeresult}
+#@findex nis_freeresult
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_freeservlist.texi
+Hash: a313a31d105e0e98d83014e7b059a110654b88e2bcd163dba39b969d19d33446
+Copyright:
+License:
+#Header:
+#@node nis_freeservlist
+#@subsection @code{nis_freeservlist}
+#@findex nis_freeservlist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_freetags.texi
+Hash: a3ff251aea66d507b2063975140b06150d679a9a9bf00017624ff85f8f6bd28f
+Copyright:
+License:
+#Header:
+#@node nis_freetags
+#@subsection @code{nis_freetags}
+#@findex nis_freetags
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_getnames.texi
+Hash: d43fe192fa29a30b8f90ac61d180ccfe184211ed3f0977faa89ef0f7a07d6099
+Copyright:
+License:
+#Header:
+#@node nis_getnames
+#@subsection @code{nis_getnames}
+#@findex nis_getnames
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_getservlist.texi
+Hash: 1a83d9805324b888d5311711e68616fedd684b59f87f51d69b563dc9f00f6858
+Copyright:
+License:
+#Header:
+#@node nis_getservlist
+#@subsection @code{nis_getservlist}
+#@findex nis_getservlist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_ismember.texi
+Hash: 2857c63d04a9936f8ba3d20d28940517296bf8b20f803c8a743c104988d93034
+Copyright:
+License:
+#Header:
+#@node nis_ismember
+#@subsection @code{nis_ismember}
+#@findex nis_ismember
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_leaf_of.texi
+Hash: b6c67a9456cca5e2b69c86c0ecbbd2fedb8440c625e979a1f5566c64ab27f6d5
+Copyright:
+License:
+#Header:
+#@node nis_leaf_of
+#@subsection @code{nis_leaf_of}
+#@findex nis_leaf_of
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_leaf_of_r.texi
+Hash: 725eaebe89c74f16acce404fdf0f071aec15529fef9f090ef5c34be4d433546b
+Copyright:
+License:
+#Header:
+#@node nis_leaf_of_r
+#@subsection @code{nis_leaf_of_r}
+#@findex nis_leaf_of_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_lerror.texi
+Hash: 4ffdf8647b3c5221348e69ed7337e739bdff92f8eb769471e9d6689991070429
+Copyright:
+License:
+#Header:
+#@node nis_lerror
+#@subsection @code{nis_lerror}
+#@findex nis_lerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_list.texi
+Hash: d4769bf377fc70bdf55491b7a67377fd1a0aa1dd73dc058055d72c76e32af56c
+Copyright:
+License:
+#Header:
+#@node nis_list
+#@subsection @code{nis_list}
+#@findex nis_list
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_local_directory.texi
+Hash: ba21442c5b7d1c1e7df74f813f51c39739ef4c44fdd4c3e30410aac44ffff269
+Copyright:
+License:
+#Header:
+#@node nis_local_directory
+#@subsection @code{nis_local_directory}
+#@findex nis_local_directory
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_local_group.texi
+Hash: 35d966e801ccbc175af0d271405896cdf076aee2a3963cccf9c344996b6ef16e
+Copyright:
+License:
+#Header:
+#@node nis_local_group
+#@subsection @code{nis_local_group}
+#@findex nis_local_group
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_local_host.texi
+Hash: 61acdea5cc4f7e391d7a17ca71f48b4e99ce85adf87422596ff9b9fe9ad33c17
+Copyright:
+License:
+#Header:
+#@node nis_local_host
+#@subsection @code{nis_local_host}
+#@findex nis_local_host
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_local_principal.texi
+Hash: bda75c39fa29b305e57270533cd43fcff4b8957b7c33a88720f576e56d2df59c
+Copyright:
+License:
+#Header:
+#@node nis_local_principal
+#@subsection @code{nis_local_principal}
+#@findex nis_local_principal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_lookup.texi
+Hash: dff8a627d19f85a944417280c3e06bac997c1e3e602fb256a92071677849b399
+Copyright:
+License:
+#Header:
+#@node nis_lookup
+#@subsection @code{nis_lookup}
+#@findex nis_lookup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_mkdir.texi
+Hash: 5cab157d00861d7ae6a2e0a5aa9eb68901e09a0368fe1f5a3eb24cf0ed06cae2
+Copyright:
+License:
+#Header:
+#@node nis_mkdir
+#@subsection @code{nis_mkdir}
+#@findex nis_mkdir
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_modify.texi
+Hash: 5114449ba61f1c9ab605553b89b6123d3a32078f00e5a76e499b68d8366876c8
+Copyright:
+License:
+#Header:
+#@node nis_modify
+#@subsection @code{nis_modify}
+#@findex nis_modify
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_modify_entry.texi
+Hash: 293d5bb41a19fcfbea60ee5f78972517c0bcc93b6eddeb5e0b1f79ea538f3c49
+Copyright:
+License:
+#Header:
+#@node nis_modify_entry
+#@subsection @code{nis_modify_entry}
+#@findex nis_modify_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_name_of.texi
+Hash: bd40e5451a5dadee1589a2ca890f0c4be95459bfd4710d3b00c0f7032a323d41
+Copyright:
+License:
+#Header:
+#@node nis_name_of
+#@subsection @code{nis_name_of}
+#@findex nis_name_of
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_name_of_r.texi
+Hash: 74450547b58277c638dc8c9fc5a9f77735cefc00af5581f21b477426174cba91
+Copyright:
+License:
+#Header:
+#@node nis_name_of_r
+#@subsection @code{nis_name_of_r}
+#@findex nis_name_of_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_next_entry.texi
+Hash: b5d18a883a8082cf62c0f70127d027f2d730dfee8bdf4fce9f78fac612a11059
+Copyright:
+License:
+#Header:
+#@node nis_next_entry
+#@subsection @code{nis_next_entry}
+#@findex nis_next_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_perror.texi
+Hash: 63e175ba3d8d9462bf33f5591c26da377537e4c2d19f98ce94b1bf4e6667cda4
+Copyright:
+License:
+#Header:
+#@node nis_perror
+#@subsection @code{nis_perror}
+#@findex nis_perror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_ping.texi
+Hash: a283339d6df98d521b354c7c3a19f12800177c783e36c4496190befec8058db3
+Copyright:
+License:
+#Header:
+#@node nis_ping
+#@subsection @code{nis_ping}
+#@findex nis_ping
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_directory.texi
+Hash: 0d12a211acc7071d10598c83dbc6b33b328ab633b38ba33d6ffcce607c22c16e
+Copyright:
+License:
+#Header:
+#@node nis_print_directory
+#@subsection @code{nis_print_directory}
+#@findex nis_print_directory
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_entry.texi
+Hash: 3c03608e3d357f4f2ae81a76f45c8440141609a4fb7c6ed2db95ac5b426ce10d
+Copyright:
+License:
+#Header:
+#@node nis_print_entry
+#@subsection @code{nis_print_entry}
+#@findex nis_print_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_group.texi
+Hash: d191e435ff63ff626db4247802381f0d2ca23de51ccd223ae5b0e3fa8798d383
+Copyright:
+License:
+#Header:
+#@node nis_print_group
+#@subsection @code{nis_print_group}
+#@findex nis_print_group
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_group_entry.texi
+Hash: 94235e89b9b74f3643923e90bf96ae311c285f6e306e968846b16b97edf831f9
+Copyright:
+License:
+#Header:
+#@node nis_print_group_entry
+#@subsection @code{nis_print_group_entry}
+#@findex nis_print_group_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_link.texi
+Hash: db76e611302d621d742ecbc5f0b7748aa41a52c75fef66b7d51a9b61e47b31b8
+Copyright:
+License:
+#Header:
+#@node nis_print_link
+#@subsection @code{nis_print_link}
+#@findex nis_print_link
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_object.texi
+Hash: 4b444fa06c5c0e05d28efd64f53953c251fe11cd356c7072f605f7b81fe44643
+Copyright:
+License:
+#Header:
+#@node nis_print_object
+#@subsection @code{nis_print_object}
+#@findex nis_print_object
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_result.texi
+Hash: 065717135cf4120bb8595486c857722fac9a7ff6efa0cb228ee5ed7bd4b0b62f
+Copyright:
+License:
+#Header:
+#@node nis_print_result
+#@subsection @code{nis_print_result}
+#@findex nis_print_result
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_rights.texi
+Hash: ef827fc3aeb4e8739745772e04c2bb33dfb616b5c139e9899cef7de0b2c61ff9
+Copyright:
+License:
+#Header:
+#@node nis_print_rights
+#@subsection @code{nis_print_rights}
+#@findex nis_print_rights
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_print_table.texi
+Hash: e0f15bef44e6d6c29b27cf7fb973a373c824b49e6f6cac7d78e1a4e24ffe9c8f
+Copyright:
+License:
+#Header:
+#@node nis_print_table
+#@subsection @code{nis_print_table}
+#@findex nis_print_table
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_remove.texi
+Hash: 32a1b74e420a969df9b898f94512ffe55692fccd53e5bc0a8b49747dd12ae9c6
+Copyright:
+License:
+#Header:
+#@node nis_remove
+#@subsection @code{nis_remove}
+#@findex nis_remove
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_remove_entry.texi
+Hash: b942f308181744e8798341c6f5941ded24f4e0c7da25c1418c85aa877c6e8883
+Copyright:
+License:
+#Header:
+#@node nis_remove_entry
+#@subsection @code{nis_remove_entry}
+#@findex nis_remove_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_removemember.texi
+Hash: 25febaa8a16ad94e35bc18a7488d7982d4f78ce14918877d291c9c5c767bfd6a
+Copyright:
+License:
+#Header:
+#@node nis_removemember
+#@subsection @code{nis_removemember}
+#@findex nis_removemember
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_rmdir.texi
+Hash: 1520922fcc74b7d84ab000e8f2cc44f6b632d3b360c994c96ce622aaac36c8ea
+Copyright:
+License:
+#Header:
+#@node nis_rmdir
+#@subsection @code{nis_rmdir}
+#@findex nis_rmdir
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_servstate.texi
+Hash: ae1e425890ce2bd608090b7d4fda1a425f4eb9e9d9f8a723ea19657380abe127
+Copyright:
+License:
+#Header:
+#@node nis_servstate
+#@subsection @code{nis_servstate}
+#@findex nis_servstate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_sperrno.texi
+Hash: f10e0ad2db9f765254f6314102b1293f9016812a67324536afc77869bea491fd
+Copyright:
+License:
+#Header:
+#@node nis_sperrno
+#@subsection @code{nis_sperrno}
+#@findex nis_sperrno
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_sperror.texi
+Hash: 0424f046ae5b85b906c4f37dde7692dda8837b71c3e8e5f2fe20a3803efdb6be
+Copyright:
+License:
+#Header:
+#@node nis_sperror
+#@subsection @code{nis_sperror}
+#@findex nis_sperror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_sperror_r.texi
+Hash: 0b85879da12a5e9e29a941c50f3efd8e45e0541a0e18802f9a4506be929cb612
+Copyright:
+License:
+#Header:
+#@node nis_sperror_r
+#@subsection @code{nis_sperror_r}
+#@findex nis_sperror_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_stats.texi
+Hash: 42c64c2e6a6584e33cd7eb39921d729dbd6e6a26115b6d2826df92d6939149ef
+Copyright:
+License:
+#Header:
+#@node nis_stats
+#@subsection @code{nis_stats}
+#@findex nis_stats
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nis_verifygroup.texi
+Hash: be6731f73427f2734ac003d261a86ec8c46e25e1fc47cce640ccd74020f884c5
+Copyright:
+License:
+#Header:
+#@node nis_verifygroup
+#@subsection @code{nis_verifygroup}
+#@findex nis_verifygroup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/nrand48_r.texi
+Hash: 7712ccaaa3bdcae2f7eb09d18a52fe84269c4bafff25c8852f4fcba3ac3e98d2
+Copyright:
+License:
+#Header:
+#@node nrand48_r
+#@subsection @code{nrand48_r}
+#@findex nrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/ntp_adjtime.texi
+Hash: 9e4776f50a88065a71713e5f612bce9632cc30b1f8bc4d2954a2446f9cb88aef
+Copyright:
+License:
+#Header:
+#@node ntp_adjtime
+#@subsection @code{ntp_adjtime}
+#@findex ntp_adjtime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ntp_gettime.texi
+Hash: 43d0ca9a1f71946a1212081c572d4bbf1200a6741aac69b1615aab6a59449b55
+Copyright:
+License:
+#Header:
+#@node ntp_gettime
+#@subsection @code{ntp_gettime}
+#@findex ntp_gettime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/obstack_alloc_failed_handler.texi
+Hash: 5a162a65e8a06e06e90a6b0899fd99e63db1b413893f10ba7032f07f8aef588b
+Copyright:
+License:
+#Header:
+#@node obstack_alloc_failed_handler
+#@subsection @code{obstack_alloc_failed_handler}
+#@findex obstack_alloc_failed_handler
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/obstack_exit_failure.texi
+Hash: 2edf67bf7a1835c04266ee354618b79b2cf1a55504e63f8df43d88e33fa7adea
+Copyright:
+License:
+#Header:
+#@node obstack_exit_failure
+#@subsection @code{obstack_exit_failure}
+#@findex obstack_exit_failure
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/obstack_free.texi
+Hash: 07713f4fe1679f4214b0ef91479610382e1e71da8177afffda8ef741d4bf2bef
+Copyright:
+License:
+#Header:
+#@node obstack_free
+#@subsection @code{obstack_free}
+#@findex obstack_free
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/obstack_printf.texi
+Hash: b365a91c2948c92bec6e04ad47471246074c066e91a9c7280419a2b0565744ba
+Copyright:
+License:
+#Header:
+#@node obstack_printf
+#@subsection @code{obstack_printf}
+#@findex obstack_printf
+#
+#Gnulib module: obstack-printf or obstack-printf-posix
+#
+#Portability problems fixed by either Gnulib module
+#@code{obstack-printf} or @code{obstack-printf-posix}:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems fixed by Gnulib module @code{ostack-printf-posix}:
+File: ./doc/glibc-functions/obstack_vprintf.texi
+Hash: 0116c5a2b4b5e76cede18a9b00d4584b1fe9c48eab74d203c12d979e2b2e39c9
+Copyright:
+License:
+#Header:
+#@node obstack_vprintf
+#@subsection @code{obstack_vprintf}
+#@findex obstack_vprintf
+#
+#Gnulib module: obstack-printf or obstack-printf-posix
+#
+#Portability problems fixed by either Gnulib module
+#@code{obstack-printf} or @code{obstack-printf-posix}:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems fixed by Gnulib module @code{ostack-printf-posix}:
+File: ./doc/glibc-functions/on_exit.texi
+Hash: f98b9178741dde52f30e55489bd237902b8cb9e5b46daed74deb35af2053adb3
+Copyright:
+License:
+#Header:
+#@node on_exit
+#@subsection @code{on_exit}
+#@findex on_exit
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/parse_printf_format.texi
+Hash: 08ec06c5f956c4070a8b8054be634cc362e5e0e26e4ec8caef463a3ab9cd4cc9
+Copyright:
+License:
+#Header:
+#@node parse_printf_format
+#@subsection @code{parse_printf_format}
+#@findex parse_printf_format
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/personality.texi
+Hash: 63ce42d8b39416dbcd2374b3db74e391930f2df790ac086e8b1e7f762ae2fd69
+Copyright:
+License:
+#Header:
+#@node personality
+#@subsection @code{personality}
+#@findex personality
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/pipe2.texi
+Hash: 12ae9770c7677e3b83f1a72345d69c53783e89421def3b00a427828aa4aae3b7
+Copyright:
+License:
+#Header:
+#@node pipe2
+#@subsection @code{pipe2}
+#@findex pipe2
+#
+#Gnulib module: pipe2
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/pmap_getmaps.texi
+Hash: 9d85f6d0f65096677f4732a2bc82f6afa1f50403b05bf01e92206309db3f8873
+Copyright:
+License:
+#Header:
+#@node pmap_getmaps
+#@subsection @code{pmap_getmaps}
+#@findex pmap_getmaps
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/pmap_getport.texi
+Hash: 43960c367109816c9e5617623378139b66ceb8f0b929615750e1c5f4843f9dd2
+Copyright:
+License:
+#Header:
+#@node pmap_getport
+#@subsection @code{pmap_getport}
+#@findex pmap_getport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/pmap_rmtcall.texi
+Hash: 03654d766f665bb32b4a7b827d20aa8f6bea089916d5f00fa3f88848d411778d
+Copyright:
+License:
+#Header:
+#@node pmap_rmtcall
+#@subsection @code{pmap_rmtcall}
+#@findex pmap_rmtcall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/pmap_set.texi
+Hash: 201b0d49ff805bb952b775dcdb25c33a70a6d0ee2aa959f9dcdce21ab7926ce5
+Copyright:
+License:
+#Header:
+#@node pmap_set
+#@subsection @code{pmap_set}
+#@findex pmap_set
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/pmap_unset.texi
+Hash: 054bd3e1cd0792cb25c68df8fb153cd370444146dfc243b81cb187e177db8e48
+Copyright:
+License:
+#Header:
+#@node pmap_unset
+#@subsection @code{pmap_unset}
+#@findex pmap_unset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/pow10.texi
+Hash: f7912dfe94bb0f8ed4dee6d39483b4a4f76d7351546ef2c3e26fd901e252d2d6
+Copyright:
+License:
+#Header:
+#@node pow10
+#@subsection @code{pow10}
+#@findex pow10
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/pow10f.texi
+Hash: 877756c67f392d56fce20c2950bec91968190c557374f63cd87a22763ce81b47
+Copyright:
+License:
+#Header:
+#@node pow10f
+#@subsection @code{pow10f}
+#@findex pow10f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/pow10l.texi
+Hash: a4c1ab66b2a92023aed121a70e545bc9d98b47f6df5d36b1351cc504e97d55d5
+Copyright:
+License:
+#Header:
+#@node pow10l
+#@subsection @code{pow10l}
+#@findex pow10l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/prctl.texi
+Hash: 2427ec4bec38663fd75581e4a8602ed0c541707f2cba09a65af9825adb32a23c
+Copyright:
+License:
+#Header:
+#@node prctl
+#@subsection @code{prctl}
+#@findex prctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/printf_size.texi
+Hash: ccc98cc15667f89d94b22bc643ce60325dd868e79cd95487d7f6ad497a1210b9
+Copyright:
+License:
+#Header:
+#@node printf_size
+#@subsection @code{printf_size}
+#@findex printf_size
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/printf_size_info.texi
+Hash: 237a32ff30c1e23980f4360ba09bfb50c6be4224fabd7a59919bd51aeffaaafc
+Copyright:
+License:
+#Header:
+#@node printf_size_info
+#@subsection @code{printf_size_info}
+#@findex printf_size_info
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/profil.texi
+Hash: 0285b1f65b72595b3cdc34f19758d6a7c23b39ca0f9fbea16ce0fd482b5633ae
+Copyright:
+License:
+#Header:
+#@node profil
+#@subsection @code{profil}
+#@findex profil
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/program_invocation_name.texi
+Hash: db3aa2f7f6e63fde4dd4838f5ca464248be07d6ce02f604a2409cb704bb60f78
+Copyright:
+License:
+#Header:
+#@node program_invocation_name
+#@subsection @code{program_invocation_name}
+#@findex program_invocation_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/program_invocation_short_name.texi
+Hash: 8fcb3035a868fc5dfa3c18c5064f3f8923e58487d6fd76f3c7b2b0655ee2d384
+Copyright:
+License:
+#Header:
+#@node program_invocation_short_name
+#@subsection @code{program_invocation_short_name}
+#@findex program_invocation_short_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/pthread_getattr_np.texi
+Hash: 5590b31dad731bebfe2b8ceb8113ac27a6c50d9217e44e6ab3f30cead2c0d24e
+Copyright:
+License:
+#Header:
+#@node pthread_getattr_np
+#@subsection @code{pthread_getattr_np}
+#@findex pthread_getattr_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/pthread_kill_other_threads_np.texi
+Hash: e25942ee2f53e9ca33f05e74e0ae70f80054d143a1ee2b6fe1dfd8e3289969b3
+Copyright:
+License:
+#Header:
+#@node pthread_kill_other_threads_np
+#@subsection @code{pthread_kill_other_threads_np}
+#@findex pthread_kill_other_threads_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/pthread_rwlockattr_getkind_np.texi
+Hash: f84f03d67a82f7e2c4af4bc8a182657f2a4551524d997213cee786e26dfbf543
+Copyright:
+License:
+#Header:
+#@node pthread_rwlockattr_getkind_np
+#@subsection @code{pthread_rwlockattr_getkind_np}
+#@findex pthread_rwlockattr_getkind_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/pthread_rwlockattr_setkind_np.texi
+Hash: 5ae7f4598ef73bf7ce5a8f90875cdcff75b082163e7d79da8ba002b34fb91ea2
+Copyright:
+License:
+#Header:
+#@node pthread_rwlockattr_setkind_np
+#@subsection @code{pthread_rwlockattr_setkind_np}
+#@findex pthread_rwlockattr_setkind_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/pthread_yield.texi
+Hash: e1337bc33112135e65c647d51a8d5adee256835cb800205a520d0546efcf4873
+Copyright:
+License:
+#Header:
+#@node pthread_yield
+#@subsection @code{pthread_yield}
+#@findex pthread_yield
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ptrace.texi
+Hash: 27af6240148516067e80c328ec3534ed7e40044622162395eef385f5719f584d
+Copyright:
+License:
+#Header:
+#@node ptrace
+#@subsection @code{ptrace}
+#@findex ptrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ptsname_r.texi
+Hash: 1cc50cfb5fafbdd0153d9c1788a49c41bb87fc9100e76edd9175ae4fc9547845
+Copyright:
+License:
+#Header:
+#@node ptsname_r
+#@subsection @code{ptsname_r}
+#@findex ptsname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/putgrent.texi
+Hash: 544f112128ba4307a201ac0244bdcf3352fce4cb574457ff2406b5b357d0d483
+Copyright:
+License:
+#Header:
+#@node putgrent
+#@subsection @code{putgrent}
+#@findex putgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/putpwent.texi
+Hash: 93178cf90ec4ac36c8ae75028fca56b82288ccb6f4fe145a418aa253bc3fe25c
+Copyright:
+License:
+#Header:
+#@node putpwent
+#@subsection @code{putpwent}
+#@findex putpwent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/putspent.texi
+Hash: d6963772ef8e056c5e923c67f34fd2e931d6bf1f1e62dd2bae741ace73ec4265
+Copyright:
+License:
+#Header:
+#@node putspent
+#@subsection @code{putspent}
+#@findex putspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/pututline.texi
+Hash: afff12c0ed2226e45909cef2f6b409fddf503c4d0245a035fa85302e70bd9e10
+Copyright:
+License:
+#Header:
+#@node pututline
+#@subsection @code{pututline}
+#@findex pututline
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/putw.texi
+Hash: a7028bb2975807511cf4acd39f137c540e13cdcd67e0f00188a345645605ccc2
+Copyright:
+License:
+#Header:
+#@node putw
+#@subsection @code{putw}
+#@findex putw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#BeOS.
+File: ./doc/glibc-functions/putwc_unlocked.texi
+Hash: 570a8de4fa9f99fd2e735a412763e2dd138191615b64b9bb16bc3c3cd03b535a
+Copyright:
+License:
+#Header:
+#@node putwc_unlocked
+#@subsection @code{putwc_unlocked}
+#@findex putwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/putwchar_unlocked.texi
+Hash: f69ccaf0b8879e1b32f8329370cbbd3eef8ebf53964299657799567911f280e6
+Copyright:
+License:
+#Header:
+#@node putwchar_unlocked
+#@subsection @code{putwchar_unlocked}
+#@findex putwchar_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/pvalloc.texi
+Hash: 01f71af124d7774fd46b6a3c388a86a7a0039fc30d235d2ea226ee8bc659912b
+Copyright:
+License:
+#Header:
+#@node pvalloc
+#@subsection @code{pvalloc}
+#@findex pvalloc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/qecvt.texi
+Hash: c2c83522e967fd4ceb406a9629d36310bedc29e77ba38d75f3a5367a178f8932
+Copyright:
+License:
+#Header:
+#@node qecvt
+#@subsection @code{qecvt}
+#@findex qecvt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/qecvt_r.texi
+Hash: a1c7516fe37f8c935920a2793726be94fcb48c5064bf4fbcc516a47b9bf9d2db
+Copyright:
+License:
+#Header:
+#@node qecvt_r
+#@subsection @code{qecvt_r}
+#@findex qecvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/qfcvt.texi
+Hash: 1b0d08244caaca9dd6f63183a50f81ee270c7250b6c4090fec67e3cf11e0e253
+Copyright:
+License:
+#Header:
+#@node qfcvt
+#@subsection @code{qfcvt}
+#@findex qfcvt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/qfcvt_r.texi
+Hash: 06b32b91bdd122fb691306a30ee07dd366dc10afd4fb5f4b797675626c46cf22
+Copyright:
+License:
+#Header:
+#@node qfcvt_r
+#@subsection @code{qfcvt_r}
+#@findex qfcvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/qgcvt.texi
+Hash: ec9dd3a171af5d5d31ec024141385d5bd30972d0d66e42dca15e845bd24f395f
+Copyright:
+License:
+#Header:
+#@node qgcvt
+#@subsection @code{qgcvt}
+#@findex qgcvt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/quotactl.texi
+Hash: 836ab775c2feab3b068d36d672ad6123aad387f6fb1f5fa368f06a01ac807f2e
+Copyright:
+License:
+#Header:
+#@node quotactl
+#@subsection @code{quotactl}
+#@findex quotactl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/random_r.texi
+Hash: 5844e7a46c936938dfbf2ce4fdbcbe51d82a4074a6bc5b2414f2a107311479dd
+Copyright:
+License:
+#Header:
+#@node random_r
+#@subsection @code{random_r}
+#@findex random_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/rawmemchr.texi
+Hash: a88efb16cc1008fb2069f17f86e19d4ca86a2ee95560cffd35e015f79d55c8b2
+Copyright:
+License:
+#Header:
+#@node rawmemchr
+#@subsection @code{rawmemchr}
+#@findex rawmemchr
+#
+#Gnulib module: rawmemchr
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/rcmd.texi
+Hash: e257d1d57a345cddc907c3e227b0d51dfbece0c211d1b0e9d7b2519ba85090b1
+Copyright:
+License:
+#Header:
+#@node rcmd
+#@subsection @code{rcmd}
+#@findex rcmd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/rcmd_af.texi
+Hash: 33267b7d2782d13d76324a3812e2ce79aae5bf28b639472be4e5dbeb29588118
+Copyright:
+License:
+#Header:
+#@node rcmd_af
+#@subsection @code{rcmd_af}
+#@findex rcmd_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/re_comp.texi
+Hash: 01bfce768f404c4fff73edfee715bcfea880485a92171532c28dd24ee902ddda
+Copyright:
+License:
+#Header:
+#@node re_comp
+#@subsection @code{re_comp}
+#@findex re_comp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_compile_fastmap.texi
+Hash: df04f615fa59f124aea7423c97c3ab28d68bc4e7354fdba5bec20ec2189c38bc
+Copyright:
+License:
+#Header:
+#@node re_compile_fastmap
+#@subsection @code{re_compile_fastmap}
+#@findex re_compile_fastmap
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_compile_pattern.texi
+Hash: ed911d035be21cdd51ea9886bfeac42f4b1528025c790409d988e1dd298ec0e4
+Copyright:
+License:
+#Header:
+#@node re_compile_pattern
+#@subsection @code{re_compile_pattern}
+#@findex re_compile_pattern
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_exec.texi
+Hash: a1297936ebe8c37bd2e40e89c02f620cee30ab8e066c05b44c9e007fbcbebe85
+Copyright:
+License:
+#Header:
+#@node re_exec
+#@subsection @code{re_exec}
+#@findex re_exec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_match.texi
+Hash: b18566e77f75118465e53a1b14a0cf42da170947642f9c6d7d32272329b89661
+Copyright:
+License:
+#Header:
+#@node re_match
+#@subsection @code{re_match}
+#@findex re_match
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_match_2.texi
+Hash: b456a65fbeabbb70c1ea7c3cc9d9af1c0d1fd7313ae2cab14bf0fcdfe8a9d949
+Copyright:
+License:
+#Header:
+#@node re_match_2
+#@subsection @code{re_match_2}
+#@findex re_match_2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_search.texi
+Hash: 1546d42e4213de80f339e367568465dddb64971f935cca31fff6a46ceaa22107
+Copyright:
+License:
+#Header:
+#@node re_search
+#@subsection @code{re_search}
+#@findex re_search
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_search_2.texi
+Hash: 81618d34a0a95e7bf19b0c3f6e9bb7dc853e954bc4bc0e91581cc76af5aec179
+Copyright:
+License:
+#Header:
+#@node re_search_2
+#@subsection @code{re_search_2}
+#@findex re_search_2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_set_registers.texi
+Hash: 56b39a6302e400bfb705a54caefa53c2433d8b834ddd4f96e4322a2afd219580
+Copyright:
+License:
+#Header:
+#@node re_set_registers
+#@subsection @code{re_set_registers}
+#@findex re_set_registers
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_set_syntax.texi
+Hash: 748a99045110cf56f79df6e0d5f4b234bf7dde20a723d93a0a673da3b03c90ad
+Copyright:
+License:
+#Header:
+#@node re_set_syntax
+#@subsection @code{re_set_syntax}
+#@findex re_set_syntax
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/re_syntax_options.texi
+Hash: 0c830a2c8456fd51772baaa9a4090458bb2e6b76f76c386603a25c228f7b6ca6
+Copyright:
+License:
+#Header:
+#@node re_syntax_options
+#@subsection @code{re_syntax_options}
+#@findex re_syntax_options
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/readahead.texi
+Hash: 8f826416be974f9a1e522ef20f3a12a29ef06badbf895c58d04588577d843e0e
+Copyright:
+License:
+#Header:
+#@node readahead
+#@subsection @code{readahead}
+#@findex readahead
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/reboot.texi
+Hash: 821bc1ae818abe8915a90b46f5222f4ada16fbea77e88d86c0358421e73b709c
+Copyright:
+License:
+#Header:
+#@node reboot
+#@subsection @code{reboot}
+#@findex reboot
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/register_printf_function.texi
+Hash: 55330e647478ac89ec8173c27dc6ccde685c0c9ff1aa731f92c403c3643264f3
+Copyright:
+License:
+#Header:
+#@node register_printf_function
+#@subsection @code{register_printf_function}
+#@findex register_printf_function
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/remap_file_pages.texi
+Hash: 6ebd3f6be34b6b2bfd24e20710e6b8f9eb129fa6248ab974a952205fd4a98f67
+Copyright:
+License:
+#Header:
+#@node remap_file_pages
+#@subsection @code{remap_file_pages}
+#@findex remap_file_pages
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/removexattr.texi
+Hash: 84ac25baaee52cbb40f99f510e79d07b6b8428d24256042b6ae785a0868f9883
+Copyright:
+License:
+#Header:
+#@node removexattr
+#@subsection @code{removexattr}
+#@findex removexattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/res_init.texi
+Hash: 388e462fc34d47868da844ac1b41166ca1d710720fc4cf90949471b6b22e06df
+Copyright:
+License:
+#Header:
+#@node res_init
+#@subsection @code{res_init}
+#@findex res_init
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+File: ./doc/glibc-functions/res_mkquery.texi
+Hash: 0b93eb65d4f8eb234d2cf53f9be95119f92ba036e114bccffaad8f4217b8be95
+Copyright:
+License:
+#Header:
+#@node res_mkquery
+#@subsection @code{res_mkquery}
+#@findex res_mkquery
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+File: ./doc/glibc-functions/res_query.texi
+Hash: 86b37d31764f008efaccff858dd736522731703d0e3db5df805ff8a8641830d7
+Copyright:
+License:
+#Header:
+#@node res_query
+#@subsection @code{res_query}
+#@findex res_query
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+File: ./doc/glibc-functions/res_querydomain.texi
+Hash: 4febd67db3cafc50012c62f08b9150179b6b6a86fe3b563308abcf8aef41ea22
+Copyright:
+License:
+#Header:
+#@node res_querydomain
+#@subsection @code{res_querydomain}
+#@findex res_querydomain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+File: ./doc/glibc-functions/res_search.texi
+Hash: c61477ed9ea9b2f03e6d988d1459e5c85d6d767e5d5afd77688cbe1531c9d6bb
+Copyright:
+License:
+#Header:
+#@node res_search
+#@subsection @code{res_search}
+#@findex res_search
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+File: ./doc/glibc-functions/revoke.texi
+Hash: adf7f5046e9f85a1de13826a1877dab9bfb1e3f8926f96c31feb8fc9917c69a0
+Copyright:
+License:
+#Header:
+#@node revoke
+#@subsection @code{revoke}
+#@findex revoke
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/rexec.texi
+Hash: 4beb711fc9303350ba038dd9e41dd18a54e9cd1df22fd2848b2ccdb633abc29a
+Copyright:
+License:
+#Header:
+#@node rexec
+#@subsection @code{rexec}
+#@findex rexec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, BeOS.
+File: ./doc/glibc-functions/rexec_af.texi
+Hash: 2d2addfd332aeac29c6e6f0199609364003aa36cfe6edb4da81edd73f408250d
+Copyright:
+License:
+#Header:
+#@node rexec_af
+#@subsection @code{rexec_af}
+#@findex rexec_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/rpc_createerr.texi
+Hash: cd184775acd5c98bf80055c4f63cc5e4f1cf8be76c79f8359575324e96c0126c
+Copyright:
+License:
+#Header:
+#@node rpc_createerr
+#@subsection @code{rpc_createerr}
+#@findex rpc_createerr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/rpmatch.texi
+Hash: 5626ebb2b2a3e883ddea5f7983fd541e62176b8fe1b90b6315281551744b773a
+Copyright:
+License:
+#Header:
+#@node rpmatch
+#@subsection @code{rpmatch}
+#@findex rpmatch
+#
+#Gnulib module: rpmatch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/rresvport.texi
+Hash: a97f5ee77da3a964130fe12ad34f4429a25dc4e8983614eee3ff2228e41a5f05
+Copyright:
+License:
+#Header:
+#@node rresvport
+#@subsection @code{rresvport}
+#@findex rresvport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/rresvport_af.texi
+Hash: 5211bddef422718e87e6aed59cf45e467d35e86554b9620b72846aa840542485
+Copyright:
+License:
+#Header:
+#@node rresvport_af
+#@subsection @code{rresvport_af}
+#@findex rresvport_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/rtime.texi
+Hash: 2da678ee5e984b04b11b8441f6c38275bfce06b3d62f5bbf89e85c5510b10242
+Copyright:
+License:
+#Header:
+#@node rtime
+#@subsection @code{rtime}
+#@findex rtime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ruserok.texi
+Hash: 4521b929c1ed87ca5ae848c5a95d221964ecfdc3efb41a6f0d05adc5c438fb6c
+Copyright:
+License:
+#Header:
+#@node ruserok
+#@subsection @code{ruserok}
+#@findex ruserok
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/ruserok_af.texi
+Hash: 54c8a002ff9e44fc49fb4bffd3bccdcc0f11e545b23463d9e3d3945bc8862e56
+Copyright:
+License:
+#Header:
+#@node ruserok_af
+#@subsection @code{ruserok_af}
+#@findex ruserok_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sbrk.texi
+Hash: 4d580822d85c2db8a05c71c6bbc254541a6ce7666158f73bc52fe573cc565151
+Copyright:
+License:
+#Header:
+#@node sbrk
+#@subsection @code{sbrk}
+#@findex sbrk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw.
+File: ./doc/glibc-functions/scalbf.texi
+Hash: b16e449629ea32f221f6a63199f6b1691aa80be4d73e7215d8a0e1139149a9d6
+Copyright:
+License:
+#Header:
+#@node scalbf
+#@subsection @code{scalbf}
+#@findex scalbf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/scalbl.texi
+Hash: b30afc7e613e8f733f740a96f53c657699ace3dd840b3dd6859224ee96ca2385
+Copyright:
+License:
+#Header:
+#@node scalbl
+#@subsection @code{scalbl}
+#@findex scalbl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sched_getaffinity.texi
+Hash: c3f41bc0b5cc0b9f81a9b3c03a45c74c58936a3ed3fda2d3983a1de9c0cdf054
+Copyright:
+License:
+#Header:
+#@node sched_getaffinity
+#@subsection @code{sched_getaffinity}
+#@findex sched_getaffinity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sched_setaffinity.texi
+Hash: 2df764b35ee0d3f8a787b710f5154954dd0775e3daf75a5b9cfb34c1cd8c010c
+Copyright:
+License:
+#Header:
+#@node sched_setaffinity
+#@subsection @code{sched_setaffinity}
+#@findex sched_setaffinity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/seed48_r.texi
+Hash: 6f0ca8a62a531d471a5968c0b0117f6bfd1b3c4f8292a2f805e916f1b4ebea5d
+Copyright:
+License:
+#Header:
+#@node seed48_r
+#@subsection @code{seed48_r}
+#@findex seed48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/semtimedop.texi
+Hash: 80ac3efc9c4674b2a8c0fba162e409c061324e76e3715bb034e48f06d744c1ec
+Copyright:
+License:
+#Header:
+#@node semtimedop
+#@subsection @code{semtimedop}
+#@findex semtimedop
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sendfile.texi
+Hash: 20c385fd8bd96b281377ff50c7eedf88fe7f424d965765b9ed3429976ffe788a
+Copyright:
+License:
+#Header:
+#@node sendfile
+#@subsection @code{sendfile}
+#@findex sendfile
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 4.0, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setaliasent.texi
+Hash: c676df80fadf27ec301ff8d5668fb6e7aa5e057788c4b334847bcd9402724933
+Copyright:
+License:
+#Header:
+#@node setaliasent
+#@subsection @code{setaliasent}
+#@findex setaliasent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setbuffer.texi
+Hash: 840463919c23c80fb9256b4d89f5a8a975413c47a4b18d99a291d2c3fd775c74
+Copyright:
+License:
+#Header:
+#@node setbuffer
+#@subsection @code{setbuffer}
+#@findex setbuffer
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, mingw.
+File: ./doc/glibc-functions/setdomainname.texi
+Hash: d246fb85da1d127786c3c8c54fdd4662f2ab4234985ba4ec0f9e983a2856970d
+Copyright:
+License:
+#Header:
+#@node setdomainname
+#@subsection @code{setdomainname}
+#@findex setdomainname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setfsent.texi
+Hash: 92cc739baa4eb3f52eefcad295bba2960905e5acec6e3f69afdb6cccac5b9d96
+Copyright:
+License:
+#Header:
+#@node setfsent
+#@subsection @code{setfsent}
+#@findex setfsent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setfsgid.texi
+Hash: a3e35a76fb66fc7edfe5eadb4fca7c217aa0f2dc521b0784d0e1e47749f1c49e
+Copyright:
+License:
+#Header:
+#@node setfsgid
+#@subsection @code{setfsgid}
+#@findex setfsgid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setfsuid.texi
+Hash: 72853abaad0d3750b660aaa0496f1d95d3ea3a182bc34a16df3ea00a1b25ac1b
+Copyright:
+License:
+#Header:
+#@node setfsuid
+#@subsection @code{setfsuid}
+#@findex setfsuid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setgroups.texi
+Hash: d47bf569c94762a70603caaa8b89619e1820828049b0a19af2694cf7928da98c
+Copyright:
+License:
+#Header:
+#@node setgroups
+#@subsection @code{setgroups}
+#@findex setgroups
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sethostid.texi
+Hash: 2caed9ea890d6844a17a375c6b579ec03850c96c9aed240cea87bd0b882c9561
+Copyright:
+License:
+#Header:
+#@node sethostid
+#@subsection @code{sethostid}
+#@findex sethostid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sethostname.texi
+Hash: 6359c3be8e8047c37933b2a94e5323fc44e3be3ef72ad19957500e4d1449c832
+Copyright:
+License:
+#Header:
+#@node sethostname
+#@subsection @code{sethostname}
+#@findex sethostname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setipv4sourcefilter.texi
+Hash: 769bdc41e8ac069fabcdf83b06be2c5741e75b340352c2b9eafa1d294f032097
+Copyright:
+License:
+#Header:
+#@node setipv4sourcefilter
+#@subsection @code{setipv4sourcefilter}
+#@findex setipv4sourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setkey_r.texi
+Hash: ff01f1e3f4faf132318c0d62ae42e6e536e83adf9f04b6987d397f18b871dda1
+Copyright:
+License:
+#Header:
+#@node setkey_r
+#@subsection @code{setkey_r}
+#@findex setkey_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setlinebuf.texi
+Hash: 823f1a2c56b9bfd0fc25a9476ef59c90fadb49050d097037bc459d3d71e7c1e4
+Copyright:
+License:
+#Header:
+#@node setlinebuf
+#@subsection @code{setlinebuf}
+#@findex setlinebuf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, mingw.
+File: ./doc/glibc-functions/setlogin.texi
+Hash: 9eaafc78df2669e5b4e72a2e5a485085acb927d50e5be2953dbeb2d81701391f
+Copyright:
+License:
+#Header:
+#@node setlogin
+#@subsection @code{setlogin}
+#@findex setlogin
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setmntent.texi
+Hash: b332b02169657299a7ca3ba9af1e7e3fc737d24cd2983f7a4d133af81b092961
+Copyright:
+License:
+#Header:
+#@node setmntent
+#@subsection @code{setmntent}
+#@findex setmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setnetgrent.texi
+Hash: 30d8d87126649c90573d67b04ff921db26d84a756946067181cb5946356b0c0a
+Copyright:
+License:
+#Header:
+#@node setnetgrent
+#@subsection @code{setnetgrent}
+#@findex setnetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setresgid.texi
+Hash: 4975dfd5771c4957030f086d8ac5ce7189cdde23f5e2bb67d0ff07d968e35479
+Copyright:
+License:
+#Header:
+#@node setresgid
+#@subsection @code{setresgid}
+#@findex setresgid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setresuid.texi
+Hash: cbd55c93dfbb005061c4332bb10d9cd19c08f8a184a1d192c45d42466ac5fc85
+Copyright:
+License:
+#Header:
+#@node setresuid
+#@subsection @code{setresuid}
+#@findex setresuid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setrpcent.texi
+Hash: ca47e2ef511b58040b7786ede8b64eaa8d0cb58ac434221596b0d7243d1b480c
+Copyright:
+License:
+#Header:
+#@node setrpcent
+#@subsection @code{setrpcent}
+#@findex setrpcent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/setsourcefilter.texi
+Hash: 9e3a447c3cd41174f4b9ea6a4eede7e34ee84c95483674ed06d20ff866e0bfc8
+Copyright:
+License:
+#Header:
+#@node setsourcefilter
+#@subsection @code{setsourcefilter}
+#@findex setsourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setspent.texi
+Hash: 68ed2648af0ebecb98d3bf880c5be4de1fce4929b0de543754c298c458c011fd
+Copyright:
+License:
+#Header:
+#@node setspent
+#@subsection @code{setspent}
+#@findex setspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setstate_r.texi
+Hash: e4d7b351007b8e8def79a82d454f164d8f556f4bf6826632ba9d25a7145afb84
+Copyright:
+License:
+#Header:
+#@node setstate_r
+#@subsection @code{setstate_r}
+#@findex setstate_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/settimeofday.texi
+Hash: fc6c7b74ed55751f1b9cd21d152fa6e70b668dcf57710351f309902b5e5affb9
+Copyright:
+License:
+#Header:
+#@node settimeofday
+#@subsection @code{settimeofday}
+#@findex settimeofday
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/setttyent.texi
+Hash: 872b4c7efffec76c314ae3692798b581b59be4b0a11eb6e347a2433f8d3d1b74
+Copyright:
+License:
+#Header:
+#@node setttyent
+#@subsection @code{setttyent}
+#@findex setttyent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setusershell.texi
+Hash: 477ef1c7ddfce9e2288f6a88e43c3ea8e145e597f6e804432e490c88a6fbdb7d
+Copyright:
+License:
+#Header:
+#@node setusershell
+#@subsection @code{setusershell}
+#@findex setusershell
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setutent.texi
+Hash: 36be58898a9d9619f987500bb8ad48703b3b386cdb1dca7f13a8f722980c3f51
+Copyright:
+License:
+#Header:
+#@node setutent
+#@subsection @code{setutent}
+#@findex setutent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/setxattr.texi
+Hash: af409fa4c1d03fe81bac55d63c469cdc03226ca561f727c619154204da0bf115
+Copyright:
+License:
+#Header:
+#@node setxattr
+#@subsection @code{setxattr}
+#@findex setxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+File: ./doc/glibc-functions/sgetspent.texi
+Hash: 2f4846b40833b0c7688dfa37b976889a9f8cf678e31e3d1531283d9a60baf9f7
+Copyright:
+License:
+#Header:
+#@node sgetspent
+#@subsection @code{sgetspent}
+#@findex sgetspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sgetspent_r.texi
+Hash: 978bcfc4fc40a2fdb82866fb2987a7a8e76d94770f437d12d4fcd9f1f53520da
+Copyright:
+License:
+#Header:
+#@node sgetspent_r
+#@subsection @code{sgetspent_r}
+#@findex sgetspent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sigandset.texi
+Hash: 5b76732bc467d481bed4bf2c89662fa7a83bd3efb8edbe663a459dacc489df5a
+Copyright:
+License:
+#Header:
+#@node sigandset
+#@subsection @code{sigandset}
+#@findex sigandset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sigblock.texi
+Hash: d24395448034650dd3561cf398904e9423525f1ea310dcc9495ad4389678ff5f
+Copyright:
+License:
+#Header:
+#@node sigblock
+#@subsection @code{sigblock}
+#@findex sigblock
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/siggetmask.texi
+Hash: 9547fcbda13bfb47700b223e5625b1dd8f7ead952650f7f1601796a5bd9bfd75
+Copyright:
+License:
+#Header:
+#@node siggetmask
+#@subsection @code{siggetmask}
+#@findex siggetmask
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sigisemptyset.texi
+Hash: adc7331e09d3e1906354d3f1088b3d82a0f374a49d70553bf2a8bdf5dabd6d98
+Copyright:
+License:
+#Header:
+#@node sigisemptyset
+#@subsection @code{sigisemptyset}
+#@findex sigisemptyset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/significand.texi
+Hash: e3fc1148c171fbea7b8a88291964da753fc483cc72e395f90defc8f913dab945
+Copyright:
+License:
+#Header:
+#@node significand
+#@subsection @code{significand}
+#@findex significand
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+File: ./doc/glibc-functions/significandf.texi
+Hash: 914e8ed95038b7596b6f8664b5d356e94bf64fd371a8d34e5c6993514c247e80
+Copyright:
+License:
+#Header:
+#@node significandf
+#@subsection @code{significandf}
+#@findex significandf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+File: ./doc/glibc-functions/significandl.texi
+Hash: b914050d57690497a42bf4f9ea1629690571bf8f248678bb27144558244459bf
+Copyright:
+License:
+#Header:
+#@node significandl
+#@subsection @code{significandl}
+#@findex significandl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sigorset.texi
+Hash: 0f90cd35021ca496fcca811f88941ad4c53f6bb7f4bb5309ac69e9cec7b2607a
+Copyright:
+License:
+#Header:
+#@node sigorset
+#@subsection @code{sigorset}
+#@findex sigorset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sigreturn.texi
+Hash: 4109f568a6d1455056f5d91d0c44277e0af12df9f48ead1d3b0b093d9cb88367
+Copyright:
+License:
+#Header:
+#@node sigreturn
+#@subsection @code{sigreturn}
+#@findex sigreturn
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sigsetmask.texi
+Hash: 21b02d389a2a52be020e6d2debdbb63155256cbcd340a7139e37883d164a2f53
+Copyright:
+License:
+#Header:
+#@node sigsetmask
+#@subsection @code{sigsetmask}
+#@findex sigsetmask
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/sigstack.texi
+Hash: b27976cb6de009f776f9d77d1e943fd892684d910082b2e313ab25dbd9929c56
+Copyright:
+License:
+#Header:
+#@node sigstack
+#@subsection @code{sigstack}
+#@findex sigstack
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sigvec.texi
+Hash: c8f0aa7dc316b819ba924fdd1b032a56d1c51033556703a95693b7ad37469047
+Copyright:
+License:
+#Header:
+#@node sigvec
+#@subsection @code{sigvec}
+#@findex sigvec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/sincos.texi
+Hash: e099c2aa2af17f5445683b13950dc83c8f36a8c799ddd736778f60b769bfa978
+Copyright:
+License:
+#Header:
+#@node sincos
+#@subsection @code{sincos}
+#@findex sincos
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, mingw, Interix 3.5.
+File: ./doc/glibc-functions/sincosf.texi
+Hash: 9acbcc862d6641f66afd97f947372db43d1da508ebf44bb2e097cfb5dadfe08a
+Copyright:
+License:
+#Header:
+#@node sincosf
+#@subsection @code{sincosf}
+#@findex sincosf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, mingw, Interix 3.5.
+File: ./doc/glibc-functions/sincosl.texi
+Hash: a89fd4b147815474f331d64f144fbd4d7d75f2227af7eb93441703a0b16d3c32
+Copyright:
+License:
+#Header:
+#@node sincosl
+#@subsection @code{sincosl}
+#@findex sincosl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sprofil.texi
+Hash: c08fdfe99dcfab4dca1cb86b587f2240b31c837207173d7174db1f34d4062e2c
+Copyright:
+License:
+#Header:
+#@node sprofil
+#@subsection @code{sprofil}
+#@findex sprofil
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/srand48_r.texi
+Hash: a1b31d907a31703ac36d663284071ace96275b5a27822fe0a1e5e4f1c2b603a5
+Copyright:
+License:
+#Header:
+#@node srand48_r
+#@subsection @code{srand48_r}
+#@findex srand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/srandom_r.texi
+Hash: 2a08e55af0f00d7af009ec4676559ba9918f061ab74e235b22c59972ac050349
+Copyright:
+License:
+#Header:
+#@node srandom_r
+#@subsection @code{srandom_r}
+#@findex srandom_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/ssignal.texi
+Hash: fcb2979253673c67d4c09487a6cc8cf39be3c2252c6ec496042be4023ea0a398
+Copyright:
+License:
+#Header:
+#@node ssignal
+#@subsection @code{ssignal}
+#@findex ssignal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/statfs.texi
+Hash: 9d6fc5e1c0bdfae6063e50e332eb0012b995748c979a5d8580eef86bfd8264ee
+Copyright:
+License:
+#Header:
+#@node statfs
+#@subsection @code{statfs}
+#@findex statfs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/step.texi
+Hash: 426a0a4b16e9bcbd7d7aa2ec82179983156979e5d4f5cf3b4873f222927b3649
+Copyright:
+License:
+#Header:
+#@node step
+#@subsection @code{step}
+#@findex step
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/stime.texi
+Hash: f64814a768ab3a8c2dfc527a6996a254ae0378f1372004713722faa0f7539d86
+Copyright:
+License:
+#Header:
+#@node stime
+#@subsection @code{stime}
+#@findex stime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/strcasestr.texi
+Hash: 6be97e12f20df96d2042b184ed047d50673dc850649541ba46094f6487dc5932
+Copyright:
+License:
+#Header:
+#@node strcasestr
+#@subsection @code{strcasestr}
+#@findex strcasestr
+#
+#Gnulib module: strcasestr or strcasestr-simple
+#
+#Portability problems fixed by either Gnulib module @code{strcasestr-simple}
+#or @code{strcasestr}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x,
+#mingw, BeOS.
+#
+#@item
+File: ./doc/glibc-functions/strchrnul.texi
+Hash: c291b83d07a36362c9038066bdc0d7d21ec01dd7ae29f155f14de1706c7fc7f7
+Copyright:
+License:
+#Header:
+#@node strchrnul
+#@subsection @code{strchrnul}
+#@findex strchrnul
+#
+#Gnulib module: strchrnul
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/strfry.texi
+Hash: eca813b0b80cd6fd4f69613929302810c07d23628958246d8b381f371a8ab226
+Copyright:
+License:
+#Header:
+#@node strfry
+#@subsection @code{strfry}
+#@findex strfry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strptime_l.texi
+Hash: 61de6a13e4b945c81a96495f6c1314565151113468844dc21ee8250c55736e4b
+Copyright:
+License:
+#Header:
+#@node strptime_l
+#@subsection @code{strptime_l}
+#@findex strptime_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strsep.texi
+Hash: b489bf696b48cd524d457667002388a229416e42dc1a63eb63730caa7f9f834e
+Copyright:
+License:
+#Header:
+#@node strsep
+#@subsection @code{strsep}
+#@findex strsep
+#
+#Gnulib module: strsep
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/strtod_l.texi
+Hash: 96d95390352ef1aaccbdef7d3046cd2710855e0956a86dd2d9ae0a73882d8d2f
+Copyright:
+License:
+#Header:
+#@node strtod_l
+#@subsection @code{strtod_l}
+#@findex strtod_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strtof_l.texi
+Hash: 3a7c917085697f19f398d2dff4f912cc2558df8b1a20619530347c1a32cf2a10
+Copyright:
+License:
+#Header:
+#@node strtof_l
+#@subsection @code{strtof_l}
+#@findex strtof_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strtol_l.texi
+Hash: 1056e76e6f3b96576d6daa749628144d71173983258b917cfabdad15c2a5cc84
+Copyright:
+License:
+#Header:
+#@node strtol_l
+#@subsection @code{strtol_l}
+#@findex strtol_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strtold_l.texi
+Hash: 980aab34470b28f72b4d05de96192a884c5a5b4735613778864b58c978d2a052
+Copyright:
+License:
+#Header:
+#@node strtold_l
+#@subsection @code{strtold_l}
+#@findex strtold_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strtoll_l.texi
+Hash: 7c77b5e468dba6520dad40a9029afb868c0e77759d1aded41f788d9512fa7fc1
+Copyright:
+License:
+#Header:
+#@node strtoll_l
+#@subsection @code{strtoll_l}
+#@findex strtoll_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strtoq.texi
+Hash: 3ee5c14f722fd6571b509d168bebaa6eac29ae9fa67e06fa6185e1c6434f843a
+Copyright:
+License:
+#Header:
+#@node strtoq
+#@subsection @code{strtoq}
+#@findex strtoq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw.
+File: ./doc/glibc-functions/strtoul_l.texi
+Hash: 2e9edb1ca6317be19540834bdc994101d4e1ba3acf938a92f0a208d703663327
+Copyright:
+License:
+#Header:
+#@node strtoul_l
+#@subsection @code{strtoul_l}
+#@findex strtoul_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strtoull_l.texi
+Hash: d72937fc153e6134f62f1e5e091dc1fba60c2bfe36ee0fde62e11f29af458254
+Copyright:
+License:
+#Header:
+#@node strtoull_l
+#@subsection @code{strtoull_l}
+#@findex strtoull_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/strtouq.texi
+Hash: 4d4e4b1560b347f7c940bf2f1ab536573b722bc14621595d1f58b0beb6fbcc56
+Copyright:
+License:
+#Header:
+#@node strtouq
+#@subsection @code{strtouq}
+#@findex strtouq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw.
+File: ./doc/glibc-functions/strverscmp.texi
+Hash: 0434fb9a8d1d9eb76da42138e9dddaabb2ed83e8256c8125e1518d22996cdf13
+Copyright:
+License:
+#Header:
+#@node strverscmp
+#@subsection @code{strverscmp}
+#@findex strverscmp
+#
+#Gnulib module: strverscmp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/svc_exit.texi
+Hash: 742a22a37b97a093d94bfb5e450a99a8493496e7a45e9fbc9523dd8b1e8e26ad
+Copyright:
+License:
+#Header:
+#@node svc_exit
+#@subsection @code{svc_exit}
+#@findex svc_exit
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/svc_fdset.texi
+Hash: 86ac209423900ccf82784e29806514f557a75814e294a8ec878a178bc4a43d7a
+Copyright:
+License:
+#Header:
+#@node svc_fdset
+#@subsection @code{svc_fdset}
+#@findex svc_fdset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svc_getreq.texi
+Hash: 0d0f553c97d0c006ff8fd51d80811496471a155c5f6142ef18346229375be10a
+Copyright:
+License:
+#Header:
+#@node svc_getreq
+#@subsection @code{svc_getreq}
+#@findex svc_getreq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svc_getreq_common.texi
+Hash: 6eb644f28f759de13fb4a8a99336de8a03220b4313b734f69fd0f7592bec8385
+Copyright:
+License:
+#Header:
+#@node svc_getreq_common
+#@subsection @code{svc_getreq_common}
+#@findex svc_getreq_common
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/svc_getreq_poll.texi
+Hash: bd3b4fdaad69465c30adb4295f68efa66bf8f4ed1eb19fb4516ab39d442f9cfc
+Copyright:
+License:
+#Header:
+#@node svc_getreq_poll
+#@subsection @code{svc_getreq_poll}
+#@findex svc_getreq_poll
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/svc_getreqset.texi
+Hash: 998123121ccd30984d17bd2695098f64638509b84567a5245ad531e5460c24a2
+Copyright:
+License:
+#Header:
+#@node svc_getreqset
+#@subsection @code{svc_getreqset}
+#@findex svc_getreqset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svc_max_pollfd.texi
+Hash: a8c742ad774e846b1ae0224476a8eafacf12814e0d2d92e51c10c19c89d47f72
+Copyright:
+License:
+#Header:
+#@node svc_max_pollfd
+#@subsection @code{svc_max_pollfd}
+#@findex svc_max_pollfd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/svc_pollfd.texi
+Hash: a5eb6ae06444b07898b1ff83435e446b709bee52ac757f9bbe48742ee666ed57
+Copyright:
+License:
+#Header:
+#@node svc_pollfd
+#@subsection @code{svc_pollfd}
+#@findex svc_pollfd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/svc_register.texi
+Hash: 1a6f4f41aac1621aa10a247323bad0698f2b0531c10b84782216e3728f0009ff
+Copyright:
+License:
+#Header:
+#@node svc_register
+#@subsection @code{svc_register}
+#@findex svc_register
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svc_run.texi
+Hash: da083b143bb1db65e5210a2456b483c19b833f3d2d3e495fcf9b4b319b6a1fec
+Copyright:
+License:
+#Header:
+#@node svc_run
+#@subsection @code{svc_run}
+#@findex svc_run
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svc_sendreply.texi
+Hash: d710e6624e82f543d3ad7fdefe76aefd4b88cd0142ad24f75d5403c7942f93dd
+Copyright:
+License:
+#Header:
+#@node svc_sendreply
+#@subsection @code{svc_sendreply}
+#@findex svc_sendreply
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svc_unregister.texi
+Hash: ad6885dfeb185cdf4f0ce763b440c8805f8e4b02ac9c44df6231576ac68918aa
+Copyright:
+License:
+#Header:
+#@node svc_unregister
+#@subsection @code{svc_unregister}
+#@findex svc_unregister
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcerr_auth.texi
+Hash: 657d79eaada1f05fcd496f9faf8a85c5b914419aee6c0681b961250cba6b8bd2
+Copyright:
+License:
+#Header:
+#@node svcerr_auth
+#@subsection @code{svcerr_auth}
+#@findex svcerr_auth
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcerr_decode.texi
+Hash: 013d5c25e6c2ab654f6b6b95e33881fc2e774e31b404265acdba1610fe7ff4a1
+Copyright:
+License:
+#Header:
+#@node svcerr_decode
+#@subsection @code{svcerr_decode}
+#@findex svcerr_decode
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcerr_noproc.texi
+Hash: 0093d9d2b2f48942af33a201c8aa57b2d588db21b684f0cb9622ba87f780ac97
+Copyright:
+License:
+#Header:
+#@node svcerr_noproc
+#@subsection @code{svcerr_noproc}
+#@findex svcerr_noproc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcerr_noprog.texi
+Hash: 0411b3b4407bb4ebf4a5a86b619c044ee035b2a77fbcf2de14ab8c04a44708d5
+Copyright:
+License:
+#Header:
+#@node svcerr_noprog
+#@subsection @code{svcerr_noprog}
+#@findex svcerr_noprog
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcerr_progvers.texi
+Hash: 63b59aa0eaba24585ee2ea85ba6b8d2ce2212ced66266f5fff5ef99043ca4675
+Copyright:
+License:
+#Header:
+#@node svcerr_progvers
+#@subsection @code{svcerr_progvers}
+#@findex svcerr_progvers
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcerr_systemerr.texi
+Hash: 9a43f8242ce29eea2b3dabe6eba74372a66b998d24a8784634b931912ab118e5
+Copyright:
+License:
+#Header:
+#@node svcerr_systemerr
+#@subsection @code{svcerr_systemerr}
+#@findex svcerr_systemerr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcerr_weakauth.texi
+Hash: 60f129f48b216becf43b7a6e107572bad1c0aa12975c9b9e2dcb4de32ea12bb6
+Copyright:
+License:
+#Header:
+#@node svcerr_weakauth
+#@subsection @code{svcerr_weakauth}
+#@findex svcerr_weakauth
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcraw_create.texi
+Hash: 9875045015fb706eed8645e1d24f2b6d09cff0018b985afe987c567c3f262168
+Copyright:
+License:
+#Header:
+#@node svcraw_create
+#@subsection @code{svcraw_create}
+#@findex svcraw_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svctcp_create.texi
+Hash: 76e63979ea96b2ce48409fcba007b8d2a2dd2d1da33cd8c4be2477376f860d6a
+Copyright:
+License:
+#Header:
+#@node svctcp_create
+#@subsection @code{svctcp_create}
+#@findex svctcp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcudp_bufcreate.texi
+Hash: ebad62a46d00b7f175d1ac81978d861de596d20f37be2a7e01c918ee9ad815bb
+Copyright:
+License:
+#Header:
+#@node svcudp_bufcreate
+#@subsection @code{svcudp_bufcreate}
+#@findex svcudp_bufcreate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcudp_create.texi
+Hash: e6c5c92dcfc4d6256d7c0c8704a3ab0156d7b8f8f4da9cdb264522e3cffcca68
+Copyright:
+License:
+#Header:
+#@node svcudp_create
+#@subsection @code{svcudp_create}
+#@findex svcudp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/svcunix_create.texi
+Hash: c2d36cc3e9b42dc5c0087798d08088d981fee60bb2b1fc134cb051015dfdf364
+Copyright:
+License:
+#Header:
+#@node svcunix_create
+#@subsection @code{svcunix_create}
+#@findex svcunix_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/swapoff.texi
+Hash: d28e58cd281ea7d216c396bbe6cbb28c4ade6a1b1cb8f5d2bdfae763de8eb9bd
+Copyright:
+License:
+#Header:
+#@node swapoff
+#@subsection @code{swapoff}
+#@findex swapoff
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/swapon.texi
+Hash: a2ae81f7c69492bebb553992ff91279a5e17c259426a305e78c4398175810bd4
+Copyright:
+License:
+#Header:
+#@node swapon
+#@subsection @code{swapon}
+#@findex swapon
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#OpenBSD 3.8, AIX 5.1, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sys_errlist.texi
+Hash: 9484aa6c644fd4efcf3f9c79bbb710107e54086b9d2cfea822a505e85b11d95f
+Copyright:
+License:
+#Header:
+#@node sys_errlist
+#@subsection @code{sys_errlist}
+#@findex sys_errlist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sys_nerr.texi
+Hash: 6c269f9e04c5d53a2917b1fddeb7d432f614326628f60cdf42128bdbc1b4bf58
+Copyright:
+License:
+#Header:
+#@node sys_nerr
+#@subsection @code{sys_nerr}
+#@findex sys_nerr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sys_siglist.texi
+Hash: cdfa2194216664145565158d29ce28afe50425b6434879005d1f09fc2e353de8
+Copyright:
+License:
+#Header:
+#@node sys_siglist
+#@subsection @code{sys_siglist}
+#@findex sys_siglist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This constant is missing on some platforms:
+#MacOS X 10.3, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+File: ./doc/glibc-functions/syscall.texi
+Hash: 190444fde09ca92f5d3c1a088254e8ea24f8ad21e7e743bd7bc74d5e7c3d8422
+Copyright:
+License:
+#Header:
+#@node syscall
+#@subsection @code{syscall}
+#@findex syscall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/sysctl.texi
+Hash: 7caee75d99a482a34152821c313157a935611e93d37475e51fcfa966c389b00f
+Copyright:
+License:
+#Header:
+#@node sysctl
+#@subsection @code{sysctl}
+#@findex sysctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sysinfo.texi
+Hash: 2ad08e1570e50f92819f57b496af7be37f638f2c45f31ddf1445f35d928e58b8
+Copyright:
+License:
+#Header:
+#@node sysinfo
+#@subsection @code{sysinfo}
+#@findex sysinfo
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/sysv_signal.texi
+Hash: 53654570fe739a0174eac69d3395bed8f5ee0a66ab1dce4870f0c6a9ef8da8d8
+Copyright:
+License:
+#Header:
+#@node sysv_signal
+#@subsection @code{sysv_signal}
+#@findex sysv_signal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+File: ./doc/glibc-functions/tdestroy.texi
+Hash: 2b159ca8f8ccd5a6ba34012b632072be835387cef1daa34853fdbdec8d11bfd3
+Copyright:
+License:
+#Header:
+#@node tdestroy
+#@subsection @code{tdestroy}
+#@findex tdestroy
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/textdomain.texi
+Hash: 2b3b638baceaf30671d2612435628b02e3510a81bcb035c4d0953415beb44aa0
+Copyright:
+License:
+#Header:
+#@node textdomain
+#@subsection @code{textdomain}
+#@findex textdomain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/timegm.texi
+Hash: b33fd6b9183cda8ba31a038b0646223cf342064f7f57f96a60c01adee101f593
+Copyright:
+License:
+#Header:
+#@node timegm
+#@subsection @code{timegm}
+#@findex timegm
+#
+#Gnulib module: timegm
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/timelocal.texi
+Hash: aa7d6d8db5573d824931cad1a0e543b7ac6615fb9f76d7e294700027c2a7f901
+Copyright:
+License:
+#Header:
+#@node timelocal
+#@subsection @code{timelocal}
+#@findex timelocal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+File: ./doc/glibc-functions/tmpnam_r.texi
+Hash: 867eda2cdd3958cb2d0774ac423ace6f99f332061f97fc1e89ee182b4defd593
+Copyright:
+License:
+#Header:
+#@node tmpnam_r
+#@subsection @code{tmpnam_r}
+#@findex tmpnam_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ttyslot.texi
+Hash: a2db69dfed6d03d128a80b25100aa8bfdbf9ab8b7e6aae779b69352fe68be984
+Copyright:
+License:
+#Header:
+#@node ttyslot
+#@subsection @code{ttyslot}
+#@findex ttyslot
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+File: ./doc/glibc-functions/ulckpwdf.texi
+Hash: 5f913bc70494c38469fbeb1b242348e0d6818d5efa27ce69d1e56d0bf9733477
+Copyright:
+License:
+#Header:
+#@node ulckpwdf
+#@subsection @code{ulckpwdf}
+#@findex ulckpwdf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/umount.texi
+Hash: fda8d64fea228f847027a34530867b8fb61767a6b19b9bd8a2bccd46400dd1c5
+Copyright:
+License:
+#Header:
+#@node umount
+#@subsection @code{umount}
+#@findex umount
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/umount2.texi
+Hash: 2957ef22d4b034fe43264d7a077e0c0b79acfe9b8d77dac47cbd9871e7322a87
+Copyright:
+License:
+#Header:
+#@node umount2
+#@subsection @code{umount2}
+#@findex umount2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/updwtmp.texi
+Hash: 0b9cdb5b25e1d740d3d4f9c7f3b42619f569938aba2412951a154103a9300952
+Copyright:
+License:
+#Header:
+#@node updwtmp
+#@subsection @code{updwtmp}
+#@findex updwtmp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, OSF/1 5.1, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/updwtmpx.texi
+Hash: 3d8f09f5afded96b9f0ae4b4d20dfa978893205440ea6bd95424e0e3861d624a
+Copyright:
+License:
+#Header:
+#@node updwtmpx
+#@subsection @code{updwtmpx}
+#@findex updwtmpx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1,
+File: ./doc/glibc-functions/user2netname.texi
+Hash: 5f52a0441b2809065a8fa64c97c5c16eccf950ae9ed3108a0f0746ffc0ecea5a
+Copyright:
+License:
+#Header:
+#@node user2netname
+#@subsection @code{user2netname}
+#@findex user2netname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ustat.texi
+Hash: f6cc53dfd21cf85c0e451aeea98c50ccd011ea4c88da39fcde741121726e1183
+Copyright:
+License:
+#Header:
+#@node ustat
+#@subsection @code{ustat}
+#@findex ustat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/utmpname.texi
+Hash: 30f2c75b23465299b58ac58dd7d8782080f478c88177e4f4a383f7c45f7120db
+Copyright:
+License:
+#Header:
+#@node utmpname
+#@subsection @code{utmpname}
+#@findex utmpname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/utmpxname.texi
+Hash: 7f048aaa1c923da17dbac39bf8b24992e0e1429d0f8f1b07ad60a6b4c0959974
+Copyright:
+License:
+#Header:
+#@node utmpxname
+#@subsection @code{utmpxname}
+#@findex utmpxname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/valloc.texi
+Hash: bc0a2963c65006320c0a49b64417fe78e8b2fa1dfa9bacec78dcada637280365
+Copyright:
+License:
+#Header:
+#@node valloc
+#@subsection @code{valloc}
+#@findex valloc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5.
+File: ./doc/glibc-functions/vasprintf.texi
+Hash: 01dc69843bb08b39bbef53771785a3f74e86491f2d1dddc8739d898d2a8bdf9a
+Copyright:
+License:
+#Header:
+#@node vasprintf
+#@subsection @code{vasprintf}
+#@findex vasprintf
+#
+#Gnulib module: vasprintf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-functions/verr.texi
+Hash: 78267ac4d25a9129dd9b2509e14064e457b8c938b2f7075931403403963d17da
+Copyright:
+License:
+#Header:
+#@node verr
+#@subsection @code{verr}
+#@findex verr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/verrx.texi
+Hash: 243ae75a133530c958e53bb80fbef71f2528824270327400efbe249a75c523cd
+Copyright:
+License:
+#Header:
+#@node verrx
+#@subsection @code{verrx}
+#@findex verrx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/versionsort.texi
+Hash: a8d292fdf0af9d2eb2473ecba25b36c64863e58acce8c463bf054dc5476603c8
+Copyright:
+License:
+#Header:
+#@node versionsort
+#@subsection @code{versionsort}
+#@findex versionsort
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/vhangup.texi
+Hash: 24826dfcb8f9b2e73d2e89ddd190426d8e5d0f227b0082ac812909b10b8a8b3d
+Copyright:
+License:
+#Header:
+#@node vhangup
+#@subsection @code{vhangup}
+#@findex vhangup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, OSF/1 5.1, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/vlimit.texi
+Hash: 9462f628ec3422857cc94eb976adec9a79466b27f54a83ab819f916053c96976
+Copyright:
+License:
+#Header:
+#@node vlimit
+#@subsection @code{vlimit}
+#@findex vlimit
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/vm86.texi
+Hash: c86ac73a01f52ed04acc07d62d1ec512640f650cb0347dd079e7ec4c71e0af5d
+Copyright:
+License:
+#Header:
+#@node vm86
+#@subsection @code{vm86}
+#@findex vm86
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/vsyslog.texi
+Hash: 848e6a794d99db034fd60bb81dd195003e60770bffcdee4dbaeaebcf71c98ddd
+Copyright:
+License:
+#Header:
+#@node vsyslog
+#@subsection @code{vsyslog}
+#@findex vsyslog
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, OSF/1 5.1, mingw, BeOS.
+File: ./doc/glibc-functions/vtimes.texi
+Hash: 06d2ebc51079102284cf04e82831a57f97849fd2a1e177aaed25aa462f93e12f
+Copyright:
+License:
+#Header:
+#@node vtimes
+#@subsection @code{vtimes}
+#@findex vtimes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/vwarn.texi
+Hash: fdc2b63b39a6cb2c3207ba881f0765eb8768f34d2fa7badb91b15c0a291b715c
+Copyright:
+License:
+#Header:
+#@node vwarn
+#@subsection @code{vwarn}
+#@findex vwarn
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/vwarnx.texi
+Hash: a36189d641dc9338fd1667d162ed6642f0a3bea5356d5357aedfcc2888b47337
+Copyright:
+License:
+#Header:
+#@node vwarnx
+#@subsection @code{vwarnx}
+#@findex vwarnx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/wait3.texi
+Hash: a7b4066310d3a25054fa4f7aa01e708505f766e673c9cd25645a820129cf5d2d
+Copyright:
+License:
+#Header:
+#@node wait3
+#@subsection @code{wait3}
+#@findex wait3
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wait4.texi
+Hash: 6d200273bf91bf0dcb399661230e36cac133661d4bc9dff07cc419dae1f76c05
+Copyright:
+License:
+#Header:
+#@node wait4
+#@subsection @code{wait4}
+#@findex wait4
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/warn.texi
+Hash: 723908ecf30a2a6a42d40630b7c66884afeb923239309b052149301d01d48d41
+Copyright:
+License:
+#Header:
+#@node warn
+#@subsection @code{warn}
+#@findex warn
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/warnx.texi
+Hash: 5f98d682eb3ca5672fcbad900bd876090ced691d922879ea4bc661c541d83d1e
+Copyright:
+License:
+#Header:
+#@node warnx
+#@subsection @code{warnx}
+#@findex warnx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+File: ./doc/glibc-functions/wcschrnul.texi
+Hash: 5d417933737648f79c9b9091e34dd6de4bdcbacabb611962290237a8b1a53f78
+Copyright:
+License:
+#Header:
+#@node wcschrnul
+#@subsection @code{wcschrnul}
+#@findex wcschrnul
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcsftime_l.texi
+Hash: ef33c1a0f5969ac80dfac455c2ab398baa7e2ae22403663282b851abcacb0c86
+Copyright:
+License:
+#Header:
+#@node wcsftime_l
+#@subsection @code{wcsftime_l}
+#@findex wcsftime_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstod_l.texi
+Hash: ad0ddbd33f44160180dc6a5116dec058c419d4cbabf88fa761763aa9f38e11a4
+Copyright:
+License:
+#Header:
+#@node wcstod_l
+#@subsection @code{wcstod_l}
+#@findex wcstod_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstof_l.texi
+Hash: e3b0808da41d177b2fc26f9fa6dbaf17fde774661f00d708a7599f32e8ae22c8
+Copyright:
+License:
+#Header:
+#@node wcstof_l
+#@subsection @code{wcstof_l}
+#@findex wcstof_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstol_l.texi
+Hash: 7f70614683c069b068bdd6f22a9f557afb8a5cc586f5c4a6e434506834c08c2c
+Copyright:
+License:
+#Header:
+#@node wcstol_l
+#@subsection @code{wcstol_l}
+#@findex wcstol_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstold_l.texi
+Hash: c68fa338d011fe9288ac28b1eb729b469531db1475cae1b1b7dadbcf7098b90a
+Copyright:
+License:
+#Header:
+#@node wcstold_l
+#@subsection @code{wcstold_l}
+#@findex wcstold_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstoll_l.texi
+Hash: bf5c9212a552069833ed365917ab1628caaac9bafde388b648aeb9d3d96cb709
+Copyright:
+License:
+#Header:
+#@node wcstoll_l
+#@subsection @code{wcstoll_l}
+#@findex wcstoll_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstoq.texi
+Hash: 4999de040d3a057b3a08f5a332220ea773287f6916b8f012d3e0b184c3f26592
+Copyright:
+License:
+#Header:
+#@node wcstoq
+#@subsection @code{wcstoq}
+#@findex wcstoq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstoul_l.texi
+Hash: e614b148fe54e7838a90ab850f729e323d6669bf7e07312bf4789ce74918119d
+Copyright:
+License:
+#Header:
+#@node wcstoul_l
+#@subsection @code{wcstoul_l}
+#@findex wcstoul_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstoull_l.texi
+Hash: 745c028ab6e80155cab792bf525124410699c33d23085c42d2be99ab905f0f24
+Copyright:
+License:
+#Header:
+#@node wcstoull_l
+#@subsection @code{wcstoull_l}
+#@findex wcstoull_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wcstouq.texi
+Hash: ba85b34761c3f98505456e786d5ed3c3259271db6f67594a58751d4cf48f6053
+Copyright:
+License:
+#Header:
+#@node wcstouq
+#@subsection @code{wcstouq}
+#@findex wcstouq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/wmempcpy.texi
+Hash: 4bcdb18550e5c7d28fb6c83a0313ce9f4ace5cc915c3d08084984599785bc2fa
+Copyright:
+License:
+#Header:
+#@node wmempcpy
+#@subsection @code{wmempcpy}
+#@findex wmempcpy
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_array.texi
+Hash: 19c6ca0199f50e5f501e77f148ab91dcbfe91b661cf52da5e6856f5cbcea03d3
+Copyright:
+License:
+#Header:
+#@node xdr_array
+#@subsection @code{xdr_array}
+#@findex xdr_array
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_authunix_parms.texi
+Hash: cdb3df779cceb4d74a88670f6a4610951a2aa4394de151d1e7fadb24c5d0be3b
+Copyright:
+License:
+#Header:
+#@node xdr_authunix_parms
+#@subsection @code{xdr_authunix_parms}
+#@findex xdr_authunix_parms
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_bool.texi
+Hash: 4ea286fe1a567849deeabf993df9d993ba60ebca88953089f743484495cd055b
+Copyright:
+License:
+#Header:
+#@node xdr_bool
+#@subsection @code{xdr_bool}
+#@findex xdr_bool
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_bytes.texi
+Hash: 3cb975a4ce2552c20f4957ccd8b73cdb7b626672140bef0b1e2f72f6e5fc0d1e
+Copyright:
+License:
+#Header:
+#@node xdr_bytes
+#@subsection @code{xdr_bytes}
+#@findex xdr_bytes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_callhdr.texi
+Hash: 6f417e2360984d05faa4f6e29ec925d45ff15aaff8b559b8797a3e1323b85751
+Copyright:
+License:
+#Header:
+#@node xdr_callhdr
+#@subsection @code{xdr_callhdr}
+#@findex xdr_callhdr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_callmsg.texi
+Hash: cb750ed335f8990d02c2f270df2af3936914bca25e3c6ccf0744ca6cecfb28c3
+Copyright:
+License:
+#Header:
+#@node xdr_callmsg
+#@subsection @code{xdr_callmsg}
+#@findex xdr_callmsg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_cback_data.texi
+Hash: d4a37bb7dc668a544a5cd09991da24d8096f4b12f9e6e37e8393a26940361fa9
+Copyright:
+License:
+#Header:
+#@node xdr_cback_data
+#@subsection @code{xdr_cback_data}
+#@findex xdr_cback_data
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_char.texi
+Hash: c14040bd19324e444f22eb519f081124ad19cc489ff3204c2b48e52576921e8a
+Copyright:
+License:
+#Header:
+#@node xdr_char
+#@subsection @code{xdr_char}
+#@findex xdr_char
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_cryptkeyarg.texi
+Hash: dcdd59591f3dca753276ddb3dc166b55ae1e1dd469fa7a80f9ce2a998423b84d
+Copyright:
+License:
+#Header:
+#@node xdr_cryptkeyarg
+#@subsection @code{xdr_cryptkeyarg}
+#@findex xdr_cryptkeyarg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_cryptkeyarg2.texi
+Hash: e7b71aa3c2b7935333c3782753185038023468223a630d977a16a3ffd24e105d
+Copyright:
+License:
+#Header:
+#@node xdr_cryptkeyarg2
+#@subsection @code{xdr_cryptkeyarg2}
+#@findex xdr_cryptkeyarg2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_cryptkeyres.texi
+Hash: 3b754af6685bd5ebf15014e7cf19ccbbfef72939d1c5a815488b0007e0352e44
+Copyright:
+License:
+#Header:
+#@node xdr_cryptkeyres
+#@subsection @code{xdr_cryptkeyres}
+#@findex xdr_cryptkeyres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_des_block.texi
+Hash: 3ce2fdf69ba45fff5fc0faa36f81ae554c4a5af6ea364d6a134a230d870b4f93
+Copyright:
+License:
+#Header:
+#@node xdr_des_block
+#@subsection @code{xdr_des_block}
+#@findex xdr_des_block
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_domainname.texi
+Hash: 3881316adc80be14ad5c4fbdae5d311b492d7109e80cf05a00314e9e69aa5ff9
+Copyright:
+License:
+#Header:
+#@node xdr_domainname
+#@subsection @code{xdr_domainname}
+#@findex xdr_domainname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_double.texi
+Hash: f91e2921b11504f0c91cbd54470b2973bc77623887893e0b94e964b503f7277f
+Copyright:
+License:
+#Header:
+#@node xdr_double
+#@subsection @code{xdr_double}
+#@findex xdr_double
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_enum.texi
+Hash: b149f650f465a2faa5f1d68bd93ece4c0a0ed0896afeabae4dcb70ba405b89d0
+Copyright:
+License:
+#Header:
+#@node xdr_enum
+#@subsection @code{xdr_enum}
+#@findex xdr_enum
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_float.texi
+Hash: 78543df2289178a87a35441879ce5a1ff664fcc58c7b8c6426ba648e3ff4a8cb
+Copyright:
+License:
+#Header:
+#@node xdr_float
+#@subsection @code{xdr_float}
+#@findex xdr_float
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_free.texi
+Hash: a47ac9b7d37b8d0cb2f75c4d7d96e563dd8047c92de3f49a33e3c3ce8f66020e
+Copyright:
+License:
+#Header:
+#@node xdr_free
+#@subsection @code{xdr_free}
+#@findex xdr_free
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_getcredres.texi
+Hash: beaa386f00d0505786655c3db8d09815047d87487d12835741e566bf945bbed9
+Copyright:
+License:
+#Header:
+#@node xdr_getcredres
+#@subsection @code{xdr_getcredres}
+#@findex xdr_getcredres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_hyper.texi
+Hash: 8e26f31e26f57ef964cd9116f3d9e2574589b14caaa979585e198941bd24bb9e
+Copyright:
+License:
+#Header:
+#@node xdr_hyper
+#@subsection @code{xdr_hyper}
+#@findex xdr_hyper
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_int.texi
+Hash: cb72dde3124b8fd76f079ba72974518af41d6411110e224ad69a9dd66c4e377e
+Copyright:
+License:
+#Header:
+#@node xdr_int
+#@subsection @code{xdr_int}
+#@findex xdr_int
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_int16_t.texi
+Hash: 9d69be17ce7fcf05a552f56855ca688ec4eb9692b7e7133dd74cf3af7a0ff4c6
+Copyright:
+License:
+#Header:
+#@node xdr_int16_t
+#@subsection @code{xdr_int16_t}
+#@findex xdr_int16_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_int32_t.texi
+Hash: 17df4279175d33cbffeb13dfc3723dd8cff57e6848ac36fcd31b6f662e0083e9
+Copyright:
+License:
+#Header:
+#@node xdr_int32_t
+#@subsection @code{xdr_int32_t}
+#@findex xdr_int32_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_int64_t.texi
+Hash: 4753692e70e7e2651f024e883c7f010c103b4c79709fff8ef1fdf941047ec0e1
+Copyright:
+License:
+#Header:
+#@node xdr_int64_t
+#@subsection @code{xdr_int64_t}
+#@findex xdr_int64_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_int8_t.texi
+Hash: 1a0aa6477a573362cb68f4a632c0a058c2ec2902f2151ff9e84ac6a5a6b780e8
+Copyright:
+License:
+#Header:
+#@node xdr_int8_t
+#@subsection @code{xdr_int8_t}
+#@findex xdr_int8_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_key_netstarg.texi
+Hash: 0f4590353eccd2b066cc84ed1e150a99a544717e54a13be8af2bb22d7dd4a240
+Copyright:
+License:
+#Header:
+#@node xdr_key_netstarg
+#@subsection @code{xdr_key_netstarg}
+#@findex xdr_key_netstarg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_key_netstres.texi
+Hash: ca085bcc181d082d1a2f1577ccc05c0d4b52ee79579b97259bfc6f5bf07dc781
+Copyright:
+License:
+#Header:
+#@node xdr_key_netstres
+#@subsection @code{xdr_key_netstres}
+#@findex xdr_key_netstres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_keybuf.texi
+Hash: a9c13f98859f695a73919a5fc0a4b2ba5b2b45f2ae7e162642343596d1533435
+Copyright:
+License:
+#Header:
+#@node xdr_keybuf
+#@subsection @code{xdr_keybuf}
+#@findex xdr_keybuf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_keydat.texi
+Hash: 73378018a2b511581dae3489763c619c7d7bfc34028fb1b7b863c5a39bb2f04c
+Copyright:
+License:
+#Header:
+#@node xdr_keydat
+#@subsection @code{xdr_keydat}
+#@findex xdr_keydat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_keystatus.texi
+Hash: 298e5a8921550a28dba370bdccc49d13dd939586385108de443e2ed839be59a1
+Copyright:
+License:
+#Header:
+#@node xdr_keystatus
+#@subsection @code{xdr_keystatus}
+#@findex xdr_keystatus
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_long.texi
+Hash: e06094afc04e32d73c2acc605cafcc9e09437632f2b5c2abe358e516f94f18a7
+Copyright:
+License:
+#Header:
+#@node xdr_long
+#@subsection @code{xdr_long}
+#@findex xdr_long
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_longlong_t.texi
+Hash: 53de27845b0a5e03ff5f8130b12a1b13999547c01fb30c65b73cf92694bb0803
+Copyright:
+License:
+#Header:
+#@node xdr_longlong_t
+#@subsection @code{xdr_longlong_t}
+#@findex xdr_longlong_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_mapname.texi
+Hash: b9e02d47cff97af875c28948086c04f39cc7552f7a2a0497f3027dc263b9c919
+Copyright:
+License:
+#Header:
+#@node xdr_mapname
+#@subsection @code{xdr_mapname}
+#@findex xdr_mapname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_netnamestr.texi
+Hash: fb5440773a3cf802982b1e1410236bbfce22b04dab527a1bfefd607e06ee96af
+Copyright:
+License:
+#Header:
+#@node xdr_netnamestr
+#@subsection @code{xdr_netnamestr}
+#@findex xdr_netnamestr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_netobj.texi
+Hash: 918ec09950c6cef891df450e39e65854ad72f515eed4a07675ad526d7d029271
+Copyright:
+License:
+#Header:
+#@node xdr_netobj
+#@subsection @code{xdr_netobj}
+#@findex xdr_netobj
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_obj_p.texi
+Hash: 7ebd559c8f4ce57177436f5f78c4c8d2b3896199fe11a24f1af48c471cda310e
+Copyright:
+License:
+#Header:
+#@node xdr_obj_p
+#@subsection @code{xdr_obj_p}
+#@findex xdr_obj_p
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_opaque.texi
+Hash: f79ec3f8db308c32f344e9d267e031c96c9b3a017a6d431bc0a7348be7ce1fd8
+Copyright:
+License:
+#Header:
+#@node xdr_opaque
+#@subsection @code{xdr_opaque}
+#@findex xdr_opaque
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_opaque_auth.texi
+Hash: 54c3c5c297b9d6cf5c898ae54e857b841a1e16df4f1571dadfe2f3ba295f391f
+Copyright:
+License:
+#Header:
+#@node xdr_opaque_auth
+#@subsection @code{xdr_opaque_auth}
+#@findex xdr_opaque_auth
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_peername.texi
+Hash: 8538bdb09599068f97b98edfb2a62e4ea6127f54711bd870c49aa117313eaa7f
+Copyright:
+License:
+#Header:
+#@node xdr_peername
+#@subsection @code{xdr_peername}
+#@findex xdr_peername
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_pmap.texi
+Hash: caaac80f2f2fa2612d1e842bfd4a93f557882c7eea684560c0d85549a95f91c3
+Copyright:
+License:
+#Header:
+#@node xdr_pmap
+#@subsection @code{xdr_pmap}
+#@findex xdr_pmap
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_pmaplist.texi
+Hash: ff5f2a65c464e0a939f8b99d477a84604052392e0b2992a9476887c90c433043
+Copyright:
+License:
+#Header:
+#@node xdr_pmaplist
+#@subsection @code{xdr_pmaplist}
+#@findex xdr_pmaplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_pointer.texi
+Hash: b660e5bf17a26cdf685fc6d23dffdb14a71b632f4eaa27f03edeb522f5aa7f99
+Copyright:
+License:
+#Header:
+#@node xdr_pointer
+#@subsection @code{xdr_pointer}
+#@findex xdr_pointer
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_quad_t.texi
+Hash: ea704f7e0d01c043c1e277cd4963dbf6187e89e3654dc699e7b5fcb850a840a7
+Copyright:
+License:
+#Header:
+#@node xdr_quad_t
+#@subsection @code{xdr_quad_t}
+#@findex xdr_quad_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_reference.texi
+Hash: 6134f57fa3312cce201a4c6d77ba8e811fd8790b22ccb6b8a73e687644ac9330
+Copyright:
+License:
+#Header:
+#@node xdr_reference
+#@subsection @code{xdr_reference}
+#@findex xdr_reference
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_replymsg.texi
+Hash: 4e007440139b2dda257c96d363b3b80ccb149be9009ae80ae2bd3a629b6b2135
+Copyright:
+License:
+#Header:
+#@node xdr_replymsg
+#@subsection @code{xdr_replymsg}
+#@findex xdr_replymsg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_rmtcall_args.texi
+Hash: bec9d04d82d941309b9d46bf423d0eff1f90382e71cdc9e3a08357dfc740bdd5
+Copyright:
+License:
+#Header:
+#@node xdr_rmtcall_args
+#@subsection @code{xdr_rmtcall_args}
+#@findex xdr_rmtcall_args
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_rmtcallres.texi
+Hash: 150f8543b53edd291c4b83bc2eefebe934b2c8158a173cf8e2650e0f38c12d60
+Copyright:
+License:
+#Header:
+#@node xdr_rmtcallres
+#@subsection @code{xdr_rmtcallres}
+#@findex xdr_rmtcallres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_short.texi
+Hash: d8f8eb2c0ee517e33fff798e697baf8765a32bb01fdb018e1c7e4c5d24d47ddd
+Copyright:
+License:
+#Header:
+#@node xdr_short
+#@subsection @code{xdr_short}
+#@findex xdr_short
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_sizeof.texi
+Hash: b9e8e1b750d3cfa2d374d483dac1308f4b5a8e614ddc1bc89201bcdca2b53bd2
+Copyright:
+License:
+#Header:
+#@node xdr_sizeof
+#@subsection @code{xdr_sizeof}
+#@findex xdr_sizeof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_string.texi
+Hash: 2a056d27011ebfb9c2fde0648bb47ace5429329369eeae141bbd0b5dd7d19abe
+Copyright:
+License:
+#Header:
+#@node xdr_string
+#@subsection @code{xdr_string}
+#@findex xdr_string
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_u_char.texi
+Hash: 6b8f014daebc6193c1fe4b95ca2bc0c9a75a34bf91e625a64779cf4d09632198
+Copyright:
+License:
+#Header:
+#@node xdr_u_char
+#@subsection @code{xdr_u_char}
+#@findex xdr_u_char
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_u_hyper.texi
+Hash: 38a30d406c25e5e945e21ba8df38a61a5bea26be525257fea360edf720f62be9
+Copyright:
+License:
+#Header:
+#@node xdr_u_hyper
+#@subsection @code{xdr_u_hyper}
+#@findex xdr_u_hyper
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_u_int.texi
+Hash: bc84e1bcbc9c805eeae8970f26c2f2c08cc6f3c7b3aca4d3d3bc4116ccd18762
+Copyright:
+License:
+#Header:
+#@node xdr_u_int
+#@subsection @code{xdr_u_int}
+#@findex xdr_u_int
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_u_long.texi
+Hash: 79996dfe2a34829be53444eeb81caf5bf33642fb5791eadf467cc5be2efb58ca
+Copyright:
+License:
+#Header:
+#@node xdr_u_long
+#@subsection @code{xdr_u_long}
+#@findex xdr_u_long
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_u_longlong_t.texi
+Hash: 68109be44fd22b27b66ac2dfe47e3ef9a8cc0f9aff21e2fade30373aae96ffa7
+Copyright:
+License:
+#Header:
+#@node xdr_u_longlong_t
+#@subsection @code{xdr_u_longlong_t}
+#@findex xdr_u_longlong_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_u_quad_t.texi
+Hash: c1debccf71d14e14221ed9c5848cc1aa2366a65948f68845fcd2b57b0749ee79
+Copyright:
+License:
+#Header:
+#@node xdr_u_quad_t
+#@subsection @code{xdr_u_quad_t}
+#@findex xdr_u_quad_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#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, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_u_short.texi
+Hash: 5277089c7dbf9c47c789cddf19c5d1b80af4a83c8fc5858daae1d6f960a9c0d8
+Copyright:
+License:
+#Header:
+#@node xdr_u_short
+#@subsection @code{xdr_u_short}
+#@findex xdr_u_short
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_uint16_t.texi
+Hash: 5056c5c947997ff404e63d557adb270b3a96be18eb85d91a99ba658f262c307b
+Copyright:
+License:
+#Header:
+#@node xdr_uint16_t
+#@subsection @code{xdr_uint16_t}
+#@findex xdr_uint16_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_uint32_t.texi
+Hash: 0e93d9fbd8816dd776781b73ba642602968d88b1a9a1835f2aacf5d163f256bb
+Copyright:
+License:
+#Header:
+#@node xdr_uint32_t
+#@subsection @code{xdr_uint32_t}
+#@findex xdr_uint32_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_uint64_t.texi
+Hash: f40a280712d786b4c58851ea0ada93ee7e8dd374dc6bedb1d88d1eb3029e5171
+Copyright:
+License:
+#Header:
+#@node xdr_uint64_t
+#@subsection @code{xdr_uint64_t}
+#@findex xdr_uint64_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_uint8_t.texi
+Hash: 6944d05901cc4f743764f005d098d50799ed43b4aa6de7469c40a94cc1d92d87
+Copyright:
+License:
+#Header:
+#@node xdr_uint8_t
+#@subsection @code{xdr_uint8_t}
+#@findex xdr_uint8_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_union.texi
+Hash: e8c3b53eade2aaea2a515e16d398bf97e4c667a4fb5aed2dadff6bf8dfb8b62b
+Copyright:
+License:
+#Header:
+#@node xdr_union
+#@subsection @code{xdr_union}
+#@findex xdr_union
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_unixcred.texi
+Hash: 9f888821059934a9e8d72e85c34b0c74fff437fff04af14d3e1f7b8adc0c95ce
+Copyright:
+License:
+#Header:
+#@node xdr_unixcred
+#@subsection @code{xdr_unixcred}
+#@findex xdr_unixcred
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_valdat.texi
+Hash: 3ed49a721838c98227ffa1d475de25866ae591b1f5a580e5f9dfeb46cbef4f91
+Copyright:
+License:
+#Header:
+#@node xdr_valdat
+#@subsection @code{xdr_valdat}
+#@findex xdr_valdat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_vector.texi
+Hash: 53d9bca4da0f5eaed77104e988310b12bc2f5d42c83b6937c5200c174cbc3708
+Copyright:
+License:
+#Header:
+#@node xdr_vector
+#@subsection @code{xdr_vector}
+#@findex xdr_vector
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_void.texi
+Hash: 81033902e9049ef9f57a463240c562bc2d5d68852657d2a8088758b1418b5ba0
+Copyright:
+License:
+#Header:
+#@node xdr_void
+#@subsection @code{xdr_void}
+#@findex xdr_void
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_wrapstring.texi
+Hash: c8c995b3843fb29dbc49af22efbda22eaa1a4c9a3ac036833c892b533db4384a
+Copyright:
+License:
+#Header:
+#@node xdr_wrapstring
+#@subsection @code{xdr_wrapstring}
+#@findex xdr_wrapstring
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdr_yp_buf.texi
+Hash: 967c6a5a78890236ee181eba0d63eb789115e8eeedc2c58621664544ec9bd493
+Copyright:
+License:
+#Header:
+#@node xdr_yp_buf
+#@subsection @code{xdr_yp_buf}
+#@findex xdr_yp_buf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypall.texi
+Hash: 49021a841d747afa6c867addf2fdad46adfed7820ba1999395e264b2e4e3a96c
+Copyright:
+License:
+#Header:
+#@node xdr_ypall
+#@subsection @code{xdr_ypall}
+#@findex xdr_ypall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypbind_binding.texi
+Hash: abd640055eb5a0d21f0f6a06024ef8e25da1cab867fd84151c3fbfa71ba49b0b
+Copyright:
+License:
+#Header:
+#@node xdr_ypbind_binding
+#@subsection @code{xdr_ypbind_binding}
+#@findex xdr_ypbind_binding
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypbind_resp.texi
+Hash: e71ba4166aa4b084e54b251c076892d86209e5c4026c9621bb83cd82420518a2
+Copyright:
+License:
+#Header:
+#@node xdr_ypbind_resp
+#@subsection @code{xdr_ypbind_resp}
+#@findex xdr_ypbind_resp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypbind_resptype.texi
+Hash: fc323b9e591fd7d0405fbbfdf6a350828bb3e37b17f5698ce0853da9accfca6e
+Copyright:
+License:
+#Header:
+#@node xdr_ypbind_resptype
+#@subsection @code{xdr_ypbind_resptype}
+#@findex xdr_ypbind_resptype
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypbind_setdom.texi
+Hash: 715266fd7005c68155bc84c3bfd72a0dbd2839f4f9c1431cdccda41d2516c61b
+Copyright:
+License:
+#Header:
+#@node xdr_ypbind_setdom
+#@subsection @code{xdr_ypbind_setdom}
+#@findex xdr_ypbind_setdom
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypdelete_args.texi
+Hash: 5a2b2391166fd729def02629326df511cb557403bb3430e8c309d40f0151bd0e
+Copyright:
+License:
+#Header:
+#@node xdr_ypdelete_args
+#@subsection @code{xdr_ypdelete_args}
+#@findex xdr_ypdelete_args
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypmap_parms.texi
+Hash: 31deda1200c8b55648464a71a80e05c092d1c342a11dcf1621ae60f75649e2c3
+Copyright:
+License:
+#Header:
+#@node xdr_ypmap_parms
+#@subsection @code{xdr_ypmap_parms}
+#@findex xdr_ypmap_parms
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypmaplist.texi
+Hash: 3770fe4174a30510e6650d1532f1254d90b4ee9a8fd55a240704aeceac7116d4
+Copyright:
+License:
+#Header:
+#@node xdr_ypmaplist
+#@subsection @code{xdr_ypmaplist}
+#@findex xdr_ypmaplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_yppush_status.texi
+Hash: bed774ce7f2689102ac04fcebe6f8bb353d2fa812ccf8fef9e3c9f9ef7707539
+Copyright:
+License:
+#Header:
+#@node xdr_yppush_status
+#@subsection @code{xdr_yppush_status}
+#@findex xdr_yppush_status
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_yppushresp_xfr.texi
+Hash: caacebd076371cf8370ef66bd87d61c5a969ba9b2de9263437267a78a4582b2d
+Copyright:
+License:
+#Header:
+#@node xdr_yppushresp_xfr
+#@subsection @code{xdr_yppushresp_xfr}
+#@findex xdr_yppushresp_xfr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypreq_key.texi
+Hash: 5e8853ba7b6102e9ef59daad62f95b5ad79482a0809507ad302e7efb7e14c180
+Copyright:
+License:
+#Header:
+#@node xdr_ypreq_key
+#@subsection @code{xdr_ypreq_key}
+#@findex xdr_ypreq_key
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypreq_nokey.texi
+Hash: ca0a55c40a73ff170a59e2e77693a4b0099f9f21cf68112362b10c73ba4897bd
+Copyright:
+License:
+#Header:
+#@node xdr_ypreq_nokey
+#@subsection @code{xdr_ypreq_nokey}
+#@findex xdr_ypreq_nokey
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypreq_xfr.texi
+Hash: 38242199a4947757bcca43ae41c1aceeaf21204f91662b6c6a70870aa6c52105
+Copyright:
+License:
+#Header:
+#@node xdr_ypreq_xfr
+#@subsection @code{xdr_ypreq_xfr}
+#@findex xdr_ypreq_xfr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypresp_all.texi
+Hash: 7b3944e0fdfcd0437b44e330fd160a5a452738e4f2ed88a06c428507135704af
+Copyright:
+License:
+#Header:
+#@node xdr_ypresp_all
+#@subsection @code{xdr_ypresp_all}
+#@findex xdr_ypresp_all
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypresp_key_val.texi
+Hash: 16879a199e808011cfb7bce444c0400f537d3299a1c9667ca1581d622e8387f1
+Copyright:
+License:
+#Header:
+#@node xdr_ypresp_key_val
+#@subsection @code{xdr_ypresp_key_val}
+#@findex xdr_ypresp_key_val
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypresp_maplist.texi
+Hash: d8f02b128e983b30f2be817f09ec1636d1d22863908833b9a104231736c1757d
+Copyright:
+License:
+#Header:
+#@node xdr_ypresp_maplist
+#@subsection @code{xdr_ypresp_maplist}
+#@findex xdr_ypresp_maplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypresp_master.texi
+Hash: e623a774cfbf5390ac5ab6db1871df8fc813438aa10e701c19f067fbf11ca3e0
+Copyright:
+License:
+#Header:
+#@node xdr_ypresp_master
+#@subsection @code{xdr_ypresp_master}
+#@findex xdr_ypresp_master
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypresp_order.texi
+Hash: d68c39c59fcbfefdb10d7e77def68a96ee1536b33e42d7cae1249a59fbddc7e5
+Copyright:
+License:
+#Header:
+#@node xdr_ypresp_order
+#@subsection @code{xdr_ypresp_order}
+#@findex xdr_ypresp_order
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypresp_val.texi
+Hash: 7c45b13e75ad02e922ffc50bd1e0f74f246ff392ec0f7269f784490ff6421332
+Copyright:
+License:
+#Header:
+#@node xdr_ypresp_val
+#@subsection @code{xdr_ypresp_val}
+#@findex xdr_ypresp_val
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypresp_xfr.texi
+Hash: 6684da40fa119c7354fda920dbc8067d4e6769687a66c08c96342311d0dc1a9c
+Copyright:
+License:
+#Header:
+#@node xdr_ypresp_xfr
+#@subsection @code{xdr_ypresp_xfr}
+#@findex xdr_ypresp_xfr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypstat.texi
+Hash: 1e7de73d56c70be501e608841a86d6e7c23b5b3d58f1d9a3f6e09d9868d5d6e9
+Copyright:
+License:
+#Header:
+#@node xdr_ypstat
+#@subsection @code{xdr_ypstat}
+#@findex xdr_ypstat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypupdate_args.texi
+Hash: 77aaa0ef10b3095e45964efa46e739376002decd90cf42f0f8a8dec3d5eff977
+Copyright:
+License:
+#Header:
+#@node xdr_ypupdate_args
+#@subsection @code{xdr_ypupdate_args}
+#@findex xdr_ypupdate_args
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdr_ypxfrstat.texi
+Hash: c78e6f06c5fd2a43a28a72a7ce49d02b158b37062e80b1d9788be764b82b26ab
+Copyright:
+License:
+#Header:
+#@node xdr_ypxfrstat
+#@subsection @code{xdr_ypxfrstat}
+#@findex xdr_ypxfrstat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/xdrmem_create.texi
+Hash: 2a203690a726870fade84da1208be0cdfab169f22001ee6efe93f06e3742ebb7
+Copyright:
+License:
+#Header:
+#@node xdrmem_create
+#@subsection @code{xdrmem_create}
+#@findex xdrmem_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdrrec_create.texi
+Hash: 8073fe892a74de188dd302a4a43e971cf0e3fb48c86cebeef96240e0ac4bd4cc
+Copyright:
+License:
+#Header:
+#@node xdrrec_create
+#@subsection @code{xdrrec_create}
+#@findex xdrrec_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdrrec_endofrecord.texi
+Hash: 88344824ec838d41448198022405e5dac92019e2bc1475a230608b4518bec054
+Copyright:
+License:
+#Header:
+#@node xdrrec_endofrecord
+#@subsection @code{xdrrec_endofrecord}
+#@findex xdrrec_endofrecord
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdrrec_eof.texi
+Hash: 25422c24889db04aa8ff53d00ce41fae2e5444730364cb37890ccacd15e10f3d
+Copyright:
+License:
+#Header:
+#@node xdrrec_eof
+#@subsection @code{xdrrec_eof}
+#@findex xdrrec_eof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdrrec_skiprecord.texi
+Hash: 0b1d2e89f6f0d930e81e40412735caed420e496c1d7e2c3317083704ddbc822c
+Copyright:
+License:
+#Header:
+#@node xdrrec_skiprecord
+#@subsection @code{xdrrec_skiprecord}
+#@findex xdrrec_skiprecord
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xdrstdio_create.texi
+Hash: 0898f08554917e889fd206ae59a18d6bf78f9f57a5a9e636844660f8bb4460ba
+Copyright:
+License:
+#Header:
+#@node xdrstdio_create
+#@subsection @code{xdrstdio_create}
+#@findex xdrstdio_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xprt_register.texi
+Hash: c94e94912422f8a89d1046086b09b5f1aa13198a6ecd72276a6cba7caf0364ef
+Copyright:
+License:
+#Header:
+#@node xprt_register
+#@subsection @code{xprt_register}
+#@findex xprt_register
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/xprt_unregister.texi
+Hash: f682b2bfcd16651912315034106c71ff0946a50daaf430177bd0624a37f88416
+Copyright:
+License:
+#Header:
+#@node xprt_unregister
+#@subsection @code{xprt_unregister}
+#@findex xprt_unregister
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+File: ./doc/glibc-functions/y0f.texi
+Hash: 53011f664d3903683e4544d10dcf5b7c7f2c1222c9acab2e70d9f2c9df387afb
+Copyright:
+License:
+#Header:
+#@node y0f
+#@subsection @code{y0f}
+#@findex y0f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/y0l.texi
+Hash: 049581b8d62217de9d548fee3df56a779e216c9b490a92081b3e440174e277df
+Copyright:
+License:
+#Header:
+#@node y0l
+#@subsection @code{y0l}
+#@findex y0l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/y1f.texi
+Hash: 2af7a392fb4304dd9bdf7cedc4f950d151b3e72dc31b5eb42d9b53451859e389
+Copyright:
+License:
+#Header:
+#@node y1f
+#@subsection @code{y1f}
+#@findex y1f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/y1l.texi
+Hash: 9f65d87b286eb81df62bfdb118cb3ab8c763aab3cae81aea9a9dc16161bdaa12
+Copyright:
+License:
+#Header:
+#@node y1l
+#@subsection @code{y1l}
+#@findex y1l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ynf.texi
+Hash: b20e9430fc3cd02a0586eed22a0cd3eb2d271582b9087490395973f33038aac6
+Copyright:
+License:
+#Header:
+#@node ynf
+#@subsection @code{ynf}
+#@findex ynf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+File: ./doc/glibc-functions/ynl.texi
+Hash: 8802eb9677218d45cd4e44dd735d1115f0fcb9e61acec28ab17b887b50ffe117
+Copyright:
+License:
+#Header:
+#@node ynl
+#@subsection @code{ynl}
+#@findex ynl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_all.texi
+Hash: b42b025cf632d8cf7da519a7528a9a2d1210f4e357dcd9390c882bb8a38c0e53
+Copyright:
+License:
+#Header:
+#@node yp_all
+#@subsection @code{yp_all}
+#@findex yp_all
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_bind.texi
+Hash: be7340086b6000053f761dfd46aea30bcc1bd2f4dfa161204a8bedc5ec212967
+Copyright:
+License:
+#Header:
+#@node yp_bind
+#@subsection @code{yp_bind}
+#@findex yp_bind
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_first.texi
+Hash: 448d2709a2f0d219dbd749d8367b8c82fcb12aa01988d1ecc33e5deb2fc824c5
+Copyright:
+License:
+#Header:
+#@node yp_first
+#@subsection @code{yp_first}
+#@findex yp_first
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_get_default_domain.texi
+Hash: 41048d71e875a399559a8d3438f700a43b5468548935403691f02ca2351e141c
+Copyright:
+License:
+#Header:
+#@node yp_get_default_domain
+#@subsection @code{yp_get_default_domain}
+#@findex yp_get_default_domain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_master.texi
+Hash: 0b2a7eb836405fa27ed19e381580f7e43df719ab12e78763c129576b5cdd1a7c
+Copyright:
+License:
+#Header:
+#@node yp_master
+#@subsection @code{yp_master}
+#@findex yp_master
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_match.texi
+Hash: 627851384f34c2c955e0e1e24fb264440f4559b4e2d93ed5661a97bf32a4380d
+Copyright:
+License:
+#Header:
+#@node yp_match
+#@subsection @code{yp_match}
+#@findex yp_match
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_next.texi
+Hash: 6a2841054c2ea3aed8bf5bc393b4dd9b7b3178b199b119fdd82678eec3ed21a6
+Copyright:
+License:
+#Header:
+#@node yp_next
+#@subsection @code{yp_next}
+#@findex yp_next
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_order.texi
+Hash: 8eae91da78f387f713f35b9d102c4fa66c5931737f6f1467289f76628a8334e9
+Copyright:
+License:
+#Header:
+#@node yp_order
+#@subsection @code{yp_order}
+#@findex yp_order
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_unbind.texi
+Hash: bd6cf9c478e4596ec9082e569e2bf6937f7985d1ba7c2d5db1f9802195b5bd26
+Copyright:
+License:
+#Header:
+#@node yp_unbind
+#@subsection @code{yp_unbind}
+#@findex yp_unbind
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yp_update.texi
+Hash: 117e4ddb5bcaf2a5e0768d85e23471c5895cc162da1390b7c5fdb77ba5ddc775
+Copyright:
+License:
+#Header:
+#@node yp_update
+#@subsection @code{yp_update}
+#@findex yp_update
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ypbinderr_string.texi
+Hash: e7167ff396db2d51dfefcd5b793df6d529e9425dd1aead57cb012d97584e6cf6
+Copyright:
+License:
+#Header:
+#@node ypbinderr_string
+#@subsection @code{ypbinderr_string}
+#@findex ypbinderr_string
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/yperr_string.texi
+Hash: c94934aac4843428b891128424e3012dee61594fb6bd1dddf9d466de2ada7482
+Copyright:
+License:
+#Header:
+#@node yperr_string
+#@subsection @code{yperr_string}
+#@findex yperr_string
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-functions/ypprot_err.texi
+Hash: 2670cca93cbe02f004e8676febd96ceb18676682aae42a869b01c0697332a068
+Copyright:
+License:
+#Header:
+#@node ypprot_err
+#@subsection @code{ypprot_err}
+#@findex ypprot_err
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+File: ./doc/glibc-headers/a.out.texi
+Hash: c82b738632f1965d1559f7667c877af774465a98c6ca3f81c897beaf7b374357
+Copyright:
+License:
+#Header:
+#@node a.out.h
+#@section @file{a.out.h}
+#
+#Describes the structure of executables (and object files?) in the old
+#@code{a.out} format.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/glibc-headers/aliases.texi
+Hash: 94f129741de8a7fd4521bae2dc42f429abfaba102e9fa06c5a9351e1379a4c5f
+Copyright:
+License:
+#Header:
+#@node aliases.h
+#@section @file{aliases.h}
+#
+#Defines the type @code{struct aliasent} and declares the functions
+#@code{setaliasent}, @code{endaliasent},
+#@code{getaliasent}, @code{getaliasent_r},
+#@code{getaliasbyname}, @code{getaliasbyname_r}.
+#
+#Documentation:
+#@itemize
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/setaliasent.3.html,,man setaliasent}.
+#@end itemize
+#
+#Gnulib module: ---
+File: ./doc/glibc-headers/alloca.texi
+Hash: 42d72a383eea05edb7de100160f56e7ab4d915e5dab4668c2fd128f4b651d2f0
+Copyright:
+License:
+#Header:
+#@node alloca.h
+#@section @file{alloca.h}
+#
+#Declares the @code{alloca} function of function-like macro.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Variable Size Automatic,,Automatic Storage with Variable Size,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Variable-Size-Automatic.html},
+#@end ifnotinfo
+#@item
+File: ./doc/glibc-headers/ar.texi
+Hash: 63a2433058954240c8a3d62a4b5b0a2809326d5c6b82b623799d2a8cf39cc734
+Copyright:
+License:
+#Header:
+#@node ar.h
+#@section @file{ar.h}
+#
+#Describes the structure of files produced by the @samp{ar} program.
+#Defines the type @code{struct ar_hdr} and the macros @code{ARMAG},
+#@code{SARMAG}, @code{ARFMAG}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-headers/argp.texi
+Hash: 7250680a987ff78ed8feac3a74ec4a5661c071de4e4d1dfc60de9db22d28e589
+Copyright:
+License:
+#Header:
+#@node argp.h
+#@section @file{argp.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Argp,,Parsing Program Options with Argp,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Argp.html}.
+#@end ifnotinfo
+#@end itemize
+#
+#Gnulib module: argp
+File: ./doc/glibc-headers/argz.texi
+Hash: c0d05a1e13f8f4f7a4a4002cb7e9683b657434da45c97b304951986f7d94bfc9
+Copyright:
+License:
+#Header:
+#@node argz.h
+#@section @file{argz.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Argz Functions,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Argz-Functions.html},
+#@end ifnotinfo
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/argz.3.html,,man argz}.
+#@end itemize
+File: ./doc/glibc-headers/byteswap.texi
+Hash: daf819b6395c3de377b3efb8f8176107e27f2b3b26561d77a8a3b2dad08e147a
+Copyright:
+License:
+#Header:
+#@node byteswap.h
+#@section @file{byteswap.h}
+#
+#Defines the functions or function-like macros @code{bswap_16}, @code{bswap_32},
+#@code{bswap_64}.
+#
+#Gnulib module: byteswap
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#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, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/glibc-headers/crypt.texi
+Hash: fa453cee950ed9d2d41db4eac6a4c5fcad6f4186d3d207d519045a9f68ae65ef
+Copyright:
+License:
+#Header:
+#@node crypt.h
+#@section @file{crypt.h}
+#
+#Defines the type @code{struct crypt_data} and declares the functions
+#@code{crypt}, @code{crypt_r},
+#@code{setkey}, @code{setkey_r},
+#@code{encrypt}, @code{encrypt_r}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{crypt,,Encrypting Passwords,libc},
+#@ref{DES Encryption,,,libc},
+#@end ifinfo
+File: ./doc/glibc-headers/endian.texi
+Hash: 0f822251f51808592a371b872b6ac045d213519befa9311b36eb6e28bddc9324
+Copyright:
+License:
+#Header:
+#@node endian.h
+#@section @file{endian.h}
+#
+#Describe's the platform's endianness (byte ordering of words stored in memory).
+#Defines the macros @code{BYTE_ORDER}, @code{LITTLE_ENDIAN}, @code{BIG_ENDIAN},
+#@code{PDP_ENDIAN}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-headers/envz.texi
+Hash: 939b798b1ec8e61e63e9f93a82c69c5db6f6c05bf98f7f3bbfb8e44c9bb4453e
+Copyright:
+License:
+#Header:
+#@node envz.h
+#@section @file{envz.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Envz Functions,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Envz-Functions.html},
+#@end ifnotinfo
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/envz.3.html,,man envz}.
+#@end itemize
+File: ./doc/glibc-headers/err.texi
+Hash: 771c351eba6fadf44f8ac86e707dfc90823ead9582e51fb8c95a54702a09395d
+Copyright:
+License:
+#Header:
+#@node err.h
+#@section @file{err.h}
+#
+#Declares the functions
+#@code{warn}, @code{vwarn}, @code{warnx}, @code{vwarnx},
+#@code{err}, @code{verr}, @code{errx}, @code{verrx}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Error Messages,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Error-Messages.html},
+File: ./doc/glibc-headers/error.texi
+Hash: 564594bacc029daac4577221c831b68ab6e6b141d225252b2e5a1ff6a2b5c377
+Copyright:
+License:
+#Header:
+#@node error.h
+#@section @file{error.h}
+#
+#Declares the functions @code{error}, @code{error_at_line} and the variables
+#@code{error_print_progname}, @code{error_message_count},
+#@code{error_one_per_line}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Error Messages,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Error-Messages.html},
+File: ./doc/glibc-headers/execinfo.texi
+Hash: 442281157e2f5c7d15617b99dc65c5e2740ed8132d5ef4b6a637d7bd0efe8a16
+Copyright:
+License:
+#Header:
+#@node execinfo.h
+#@section @file{execinfo.h}
+#
+#Declares the functions @code{backtrace}, @code{backtrace_symbols},
+#@code{backtrace_symbols_fd}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Backtraces,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Backtraces.html},
+#@end ifnotinfo
+File: ./doc/glibc-headers/fpu_control.texi
+Hash: 0d1f21a6828be61eaafc50791e6648cadd3cf5986071c19912bb0e485780e01e
+Copyright:
+License:
+#Header:
+#@node fpu_control.h
+#@section @file{fpu_control.h}
+#
+#Handling of the FPU control word. Defines the @code{fpu_control_t} type,
+#declares the @code{__fpu_control} variable, and defines the @code{_FPU_GETCW},
+#@code{_FPU_SETCW} macros.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/glibc-headers/fstab.texi
+Hash: d765e5f871ae90bba1b85512cdbbd9d04babbb1073e89f28a5e4203003ccbb3b
+Copyright:
+License:
+#Header:
+#@node fstab.h
+#@section @file{fstab.h}
+#
+#Defines the type @code{struct fstab}, the macros @code{FSTAB_*},
+#@code{_PATH_FSTAB}, and declares the functions
+#@code{setfsent}, @code{endfsent},
+#@code{getfsent}, @code{getfsspec}, @code{getfsfile}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{fstab,,The `fstab' file,libc},
+#@end ifinfo
+#@ifnotinfo
+File: ./doc/glibc-headers/fts.texi
+Hash: 05a382b4ee91017936ce7dceda2379ade746af1154b3977321604b116f237f5b
+Copyright:
+License:
+#Header:
+#@node fts.h
+#@section @file{fts.h}
+#
+#Defines the types @code{FTS}, @code{FTSENT} and the macros @code{FTS_*},
+#and declares the functions @code{fts_open}, @code{fts_read},
+#@code{fts_children}, @code{fts_set}, @code{fts_close}.
+#
+#Documentation:
+#@itemize
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/fts.3.html,,man fts}.
+#@end itemize
+#
+#Gnulib module: ---
+File: ./doc/glibc-headers/getopt.texi
+Hash: d2425536ed01e34b35b1f3c58f4cf07ca9b09f6d81663efab78da5a5ab688a03
+Copyright:
+License:
+#Header:
+#@node getopt.h
+#@section @file{getopt.h}
+#
+#Defines the type @code{struct option} and declares the variables
+#@code{optarg}, @code{optind}, @code{opterr}, @code{optopt}
+#and the functions @code{getopt}, @code{getopt_long}, @code{getopt_long_only}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Getopt,,Parsing program options using `getopt',libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Getopt.html},
+File: ./doc/glibc-headers/ieee754.texi
+Hash: 515398e288e2a4e2e6118c4c896dbb4c1a9019d6b91221aa076f2d5cac32f9f7
+Copyright:
+License:
+#Header:
+#@node ieee754.h
+#@section @file{ieee754.h}
+#
+#Defines the types @code{union ieee754_float}, @code{union ieee754_double},
+#@code{union ieee854_long_double}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/glibc-headers/ifaddrs.texi
+Hash: c85198be6c0f9e8ac1c65d365a6cc7bc0cc665bdbc72fe83acf7b0ab0cc955c9
+Copyright:
+License:
+#Header:
+#@node ifaddrs.h
+#@section @file{ifaddrs.h}
+#
+#Defines the type @code{struct ifaddrs} and declares the functions
+#@code{getifaddrs}, @code{freeifaddrs}.
+#
+#Documentation:
+#@itemize
+#@item
+#@url{http://ecos.sourceware.org/docs-latest/ref/net-common-tcpip-manpages-getifaddrs.html}.
+#@end itemize
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+File: ./doc/glibc-headers/libintl.texi
+Hash: 79beb5970e6f446c6a04900828534f021471762201935c60cfd021c6332b7e78
+Copyright:
+License:
+#Header:
+#@node libintl.h
+#@section @file{libintl.h}
+#
+#Defines the macros @code{__USE_GNU_GETTEXT},
+#@code{__GNU_GETTEXT_SUPPORTED_REVISION}, and declares the functions
+#@code{gettext}, @code{dgettext}, @code{dcgettext},
+#@code{ngettext}, @code{dngettext}, @code{dcngettext},
+#@code{textdomain}, @code{bindtextdomain}, @code{bind_textdomain_codeset}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Message catalogs with gettext,,The `gettext' family of functions,libc},
+#@end ifinfo
+File: ./doc/glibc-headers/mcheck.texi
+Hash: dedb846dbfd04c6c9a2a967d276c9de008ac4c79e61e07aeafd412846df98fee
+Copyright:
+License:
+#Header:
+#@node mcheck.h
+#@section @file{mcheck.h}
+#
+#Defines the type @code{enum mcheck_status} and declares the functions
+#@code{mcheck}, @code{mcheck_pedantic}, @code{mcheck_check_all}, @code{mprobe},
+#@code{mtrace}, @code{muntrace}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Heap Consistency Checking,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Heap-Consistency-Checking.html}.
+File: ./doc/glibc-headers/mntent.texi
+Hash: bd4559256ee3494644710f4e1602495d4050f8fa0d4c703f11fcaf8fde02a704
+Copyright:
+License:
+#Header:
+#@node mntent.h
+#@section @file{mntent.h}
+#
+#Defines the type @code{struct mntent} and the macros @code{MNTTAB},
+#@code{MOUNTED}, @code{MNTTYPE_*}, @code{MNTOPT_*}, and declares the functions
+#@code{setmntent}, @code{getmntent}, @code{getmntent_r}, @code{addmntent},
+#@code{endmntent}, @code{hasmntopt}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{mtab,,The `mtab' file,libc},
+#@end ifinfo
+#@ifnotinfo
+File: ./doc/glibc-headers/obstack.texi
+Hash: 1c5f322397603a32199f6a1983459423e6610d00288bfb2f3e8b8ee875abd7a8
+Copyright:
+License:
+#Header:
+#@node obstack.h
+#@section @file{obstack.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Obstacks,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Obstacks.html}.
+#@end ifnotinfo
+#@end itemize
+#
+#Gnulib module: obstack
+File: ./doc/glibc-headers/paths.texi
+Hash: 8dc24f98bf823265dd3378f42860137cacdfd735284b75108ef5437552a339b1
+Copyright:
+License:
+#Header:
+#@node paths.h
+#@section @file{paths.h}
+#
+#Defines the macros @code{_PATH_*}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/glibc-headers/printf.texi
+Hash: c7159716f5c2910ec7d390f7877340ba3998b5fbbb63bd559484742f859ba86b
+Copyright:
+License:
+#Header:
+#@node printf.h
+#@section @file{printf.h}
+#
+#Defines the type @code{struct printf_info} and the macros and enum values
+#@code{PA_*}, and declares the functions
+#@code{printf_function}, @code{printf_arginfo_function},
+#@code{register_printf_function}, @code{parse_printf_format},
+#@code{printf_size}, @code{printf_size_info}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Parsing a Template String,,,libc},
+#@end ifinfo
+File: ./doc/glibc-headers/pty.texi
+Hash: 210686eb5ebf3e3163fa609fea0156ea611363bde9b6a363135e2697765a0594
+Copyright:
+License:
+#Header:
+#@node pty.h
+#@section @file{pty.h}
+#
+#Declares the functions @code{openpty} and @code{forkpty}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Pseudo-Terminal Pairs,,Opening a Pseudo-Terminal Pair,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Pseudo_002dTerminal-Pairs.html},
+#@end ifnotinfo
+#@item
+File: ./doc/glibc-headers/resolv.texi
+Hash: 67e701d549c3af1a21fa81ac7bb0aea9bc236210f49d4a58e44a93ef173d7d1d
+Copyright:
+License:
+#Header:
+#@node resolv.h
+#@section @file{resolv.h}
+#
+#Defines the types @code{res_sendhookact}, @code{res_send_qhook},
+#@code{res_send_rhook}, @code{res_state}, @code{struct res_sym} and the
+#macros @code{_PATH_RESCONF}, @code{RES_*}, and declares the functions
+#@code{fp_nquery}, @code{fp_query},
+#@code{hostalias},
+#@code{p_query},
+#@code{res_close}, @code{res_init}, @code{res_isourserver},
+#@code{res_mkquery}, @code{res_query}, @code{res_querydomain},
+#@code{res_search}, @code{res_send}.
+#
+#Documentation:
+#@itemize
+File: ./doc/glibc-headers/shadow.texi
+Hash: a366437bb8a42ee9261518470bfbaf0fdc8da97ebdfafd9b582e0896d7f739ad
+Copyright:
+License:
+#Header:
+#@node shadow.h
+#@section @file{shadow.h}
+#
+#Defines the type @code{struct spwd} and declares the functions
+#@code{setspent}, @code{endspent},
+#@code{getspent}, @code{getspent_r},
+#@code{getspnam}, @code{getspnam_r},
+#@code{sgetspent}, @code{sgetspent_r},
+#@code{fgetspent}, @code{fgetspent_r},
+#@code{putspent},
+#@code{lckpwdf}, @code{ulckpwdf}.
+#
+#Documentation:
+#@itemize
+#@item
+File: ./doc/glibc-headers/sys_ioctl.texi
+Hash: 9368a7f1aab344a4a2b9c5e895868ca14cc69044c0b1c04a8bf3a9c89cef6e41
+Copyright:
+License:
+#Header:
+#@node sys/ioctl.h
+#@section @file{sys/ioctl.h}
+#
+#Declares the function @code{ioctl}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{IOCTLs,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/IOCTLs.html},
+#@end ifnotinfo
+#@item
+File: ./doc/glibc-headers/sysexits.texi
+Hash: e281f6c23b36b8fd6bfaaa9e8983259765fa320d989f9d77639cdf67c7b74182
+Copyright:
+License:
+#Header:
+#@node sysexits.h
+#@section @file{sysexits.h}
+#
+#Defines the @code{EX_*} macros, including @code{EX_OK}.
+#
+#Gnulib module: sysexits
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, Interix 3.5, BeOS.
+#@item
+#The macro @code{EX_CONFIG} is missing on some platforms:
+#HP-UX 11.
+File: ./doc/glibc-headers/ttyent.texi
+Hash: a9e0f8c8e52a08d612b970503007b714f785c88f0d36786a6f2a8917b56c59d8
+Copyright:
+License:
+#Header:
+#@node ttyent.h
+#@section @file{ttyent.h}
+#
+#Defines the type @code{struct ttyent} and declares the functions
+#@code{setttyent}, @code{endttyent}, @code{getttyent}, @code{getttynam}.
+#
+#Documentation:
+#@itemize
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/setttyent.3.html,,man setttyent}.
+#@end itemize
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+
+File: ./doc/gnu-oids.texi
+Hash: a8b7560867c2aed55edee1312ccb3b71d4a7d36209c0544d538aafc0c990c7d2
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License:
+ Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved.
+#@c
+#@c When adding new OIDs, please add them also to
+#@c http://www.alvestrand.no/objectid/  (except it gets an internal
+#@c server error, so never mind)
+#@c (Our page is http://www.alvestrand.no/objectid/1.3.6.1.4.1.11591.html.)
+#
+#1.3.6.1.4.1.11591 GNU
+File: ./doc/gnulib-intro.texi
+Hash: 8afe4cf237d90be78640df9ef7349588a2a5bcb07901f8bc2ad44b625b00afea
+Copyright:
+License:
+#Header:
+#@node Benefits
+#@section Benefits of using Gnulib
+#
+#Gnulib is useful to enhance various aspects of a package:
+#
+#@itemize @bullet
+#@item
+#Portability: With Gnulib, a package maintainer can program against the
+#POSIX and GNU libc APIs and nevertheless expect good portability to
+#platforms that don't implement POSIX.
+#
+#@item
+#Maintainability: When a package uses modules from Gnulib instead of code
+#written specifically for that package, the maintainer has less code to
+#maintain.
+File: ./doc/gnulib-tool.texi
+Hash: 86878555c512a6423372b2cd838d55c7c6a02da7eb97664a78e4bbf111f33b31
+Copyright: 2005-2009 Free Software Foundation, Inc.
+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.
+#
+#@pindex gnulib-tool
+#@cindex invoking @command{gnulib-tool}
+File: ./doc/gnulib.texi
+Hash: de3a5da4c9cc7db7d7ef6de60a5248025bed7cbc6b9dc0320c0075bb28b18b77
+Copyright: 2004-2009 Free Software Foundation, Inc.
+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-*-
+#@comment %**start of header
+#@setfilename gnulib.info
+#@settitle GNU Gnulib
+#@syncodeindex fn cp
+#@syncodeindex pg cp
+#@ifclear texi2html
+#@firstparagraphindent insert
+#@end ifclear
+#@comment %**end of header
+#
+#@comment Defines the UPDATED variable.
+#@include updated-stamp
+#
+#@copying
+File: ./doc/gpl-2.0.texi
+Hash: ba36a1e79e0a6db5aa3012803fd12acab7bc7be569da100c6659fff959670389
+Copyright: 1989, 1991 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#
+#@heading Preamble
+File: ./doc/gpl-3.0.texi
+Hash: 1c68a24b291a0eebaa1fabba67326ad8c5d48968b84bba0907bf74d8d3b01971
+Copyright: 2007 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#@end display
+#
+#@heading Preamble
+File: ./doc/havelib.texi
+Hash: b178e7f4be5c66b0756783fc65a9fdbefb2ddb9e2fce18cfe4838383506ba25f
+Copyright:
+License:
+#Header:
+#@node Searching for Libraries
+#@section Searching for Libraries
+#
+#The following macros check for the presence or location of certain C, C++, or
+#Fortran library archive files.
+#
+#@unnumberedsubsec Simple Library Tests
+#
+#The macros @code{AC_CHECK_LIB}, @code{AC_SEARCH_LIBS} from GNU Autoconf check
+#for the presence of certain C, C++, or Fortran library archive files.
+#The libraries are looked up in the default linker path -- a system dependent
+#list of directories, that usually contains the @file{/usr/lib} directory --
+# and those directories given by @code{-L} options in the @code{LDFLAGS}
+#variable.
+File: ./doc/inet_ntoa.texi
+Hash: 44cfa1261391ab7b6da6a8387826d35826ef9238214aea7713a3bdae92621afc
+Copyright: 2005 Free Software Foundation, Inc.
+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:
+#@node inet_ntoa
+#@section inet_ntoa
+#@findex inet_ntoa
+#
+#@c Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#
+#The @code{inet_ntoa} function need not be reentrant, and consequently
+#is not required to be thread safe.  Implementations of
+File: ./doc/install.texi
+Hash: 3579aa06fdcde2788de2bdb2ac9e3f7dddaaf305033e3819b0bd5e8bcd321ad5
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License:
+ Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved.  This file is offered as-is,
+ without warranty of any kind.
+File: ./doc/ld-output-def.texi
+Hash: f3adaf3de58b4ee8286574e8dc7d25e0d536753026018880d7ed6299129dee1c
+Copyright:
+License:
+#Header:
+#@node Visual Studio Compatibility
+#@section Visual Studio Compatibility
+#@cindex DEF files
+#@cindex LD DEF files
+#
+#The @code{lib-msvc-compat} module detects whether the linker supports
+#@code{--output-def} when building a library.  That parameter is used
+#to generate a DEF file for a shared library (DLL).  DEF files are
+#useful for developers that use Visual Studio to develop programs that
+#links to your library.  See the GNU LD manual for more information.
+#
+#There are other ways to create a DEF file, but we believe they are all
+#sub-optimal to using @code{--output-def} during the build process.
+#The variants we have considered include:
+File: ./doc/ld-version-script.texi
+Hash: 21a0a61901f55f0d7c8ba37d1ce6dc1d569e74583bd96a03ea211db7d969fc10
+Copyright:
+License:
+#Header:
+#i@node LD Version Scripts
+#@section LD Version Scripts
+#
+#The @code{lib-symbol-versions} module can be used to add shared
+#library versioning support.  Currently, only GNU LD and the Solaris
+#linker supports this.
+#
+#Version scripts provides information that can be used by GNU/Linux
+#distribution packaging tools.  For example, Debian has a tool
+#@code{dpkg-shlibdeps} that can determine the minimal required version
+#of each dependency (by looking at the symbol list) and stuff the
+#information into the Debian specific packaging files.
+#
+#For more information and other uses of version scripts, see Ulrich
+#Drepper's paper @url{http://people.redhat.com/drepper/dsohowto.pdf}
+File: ./doc/lgpl-2.1.texi
+Hash: 85eec7ec57d7c054ced20ff937a0dbb6f85ef080feef81c969e3338c4e07c237
+Copyright: 1991, 1999 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#
+#[This is the first released version of the Lesser GPL.  It also counts
+#as the successor of the GNU Library Public License, version 2, hence the
+File: ./doc/lgpl-3.0.texi
+Hash: a4c865bb56a69cee86c1ab9bb354cd6a81b95e64a6ed096b1b3e616af3f85cc1
+Copyright: 2007 Free Software Foundation, Inc.
+License:
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+#@end display
+#
+#This version of the GNU Lesser General Public License incorporates
+#the terms and conditions of version 3 of the GNU General Public
+File: ./doc/lib-symbol-visibility.texi
+Hash: ace49800754530f3421436b0c69c07faa05fec9319591a7a4d30b2bd37a98525
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc.
+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.
+#
+#The @code{lib-symbol-visibility} module allows precise control of the
+File: ./doc/maintain.texi
+Hash: c3f2ff808bd13ddf5c9dfdecff85d6bc5581e6338bf9919e43aa41a7d2a5ed05
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+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.tex    @c -*-texinfo-*-
+#@c %**start of header
+#@setfilename maintain.info
+#@settitle Information for Maintainers of GNU Software
+#@c For double-sided printing, uncomment:
+#@c @setchapternewpage odd
+#@c This date is automagically updated when you save this file:
+#@set lastupdate July 24, 2009
+#@c %**end of header
+#
+#@dircategory GNU organization
+#@direntry
+#* Maintaining: (maintain).        Maintaining GNU software.
+#@end direntry
+File: ./doc/make-stds.texi
+Hash: 6856144813c56da2dd64ded78323b4e4e1be9177837113f827f9340b8cb74446
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+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:
+#@comment This file is included by both standards.texi and make.texinfo.
+#@comment It was broken out of standards.texi on 1/6/93 by roland.
+#
+#@node Makefile Conventions
+#@chapter Makefile Conventions
+#@comment standards.texi does not print an index, but make.texinfo does.
+#@cindex makefile, conventions for
+#@cindex conventions for makefiles
+#@cindex standards for makefiles
+#
+#@c Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001,
+#@c 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+#@c
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3
+File: ./doc/manywarnings.texi
+Hash: eb20f35c0202b22d36b97d775196f85053b54dc0a181eced05ac1f19457dd4df
+Copyright:
+License:
+#Header:
+#@node manywarnings
+#@section manywarnings
+#
+#The @code{manywarnings} module allows you to enable as many GCC warnings as
+#possible for your package. The purpose is to protect against introducing new
+#code that triggers warnings that weren't already triggered by the existing code
+#base.
+#
+#An example use of the module is as follows:
+#
+#@smallexample
+#gl_MANYWARN_ALL_GCC([warnings])
+## Set up the list of the pointless, undesired warnings.
+#nw=
+#nw="$nw -Wsystem-headers"       # Don't let system headers trigger warnings
+File: ./doc/pastposix-functions/bcmp.texi
+Hash: ee5e5047ceaf869e5c235c6f2702e7f43b6b4ea02ef553524b75e92be07c640b
+Copyright:
+License:
+#Header:
+#@node bcmp
+#@section @code{bcmp}
+#@findex bcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bcmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/bcopy.texi
+Hash: 223523ff87be634108d2bf747ce5fbe13ad98f02904e0c098e5bbf60bf490330
+Copyright:
+License:
+#Header:
+#@node bcopy
+#@section @code{bcopy}
+#@findex bcopy
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bcopy.html}
+#
+#Gnulib module: bcopy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 2.4, mingw.
+#@end itemize
+File: ./doc/pastposix-functions/bsd_signal.texi
+Hash: 00704a5cfe69597fb6d992575594832eb5947e8748892a721d7ffb17283aa90b
+Copyright:
+License:
+#Header:
+#@node bsd_signal
+#@section @code{bsd_signal}
+#@findex bsd_signal
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bsd_signal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/bzero.texi
+Hash: c850be8ba6f681e50eb0a4ecc5820bf7e59d6ff4b4614588c060201ea49eb02e
+Copyright:
+License:
+#Header:
+#@node bzero
+#@section @code{bzero}
+#@findex bzero
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bzero.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/ecvt.texi
+Hash: e6504270c1681b6065cb639e57224dd1f372edfa0a59123f7d37173406a4f494
+Copyright:
+License:
+#Header:
+#@node ecvt
+#@section @code{ecvt}
+#@findex ecvt
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/ecvt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/fcvt.texi
+Hash: 430225c066876772ad6b84ef2fec19a1c57b804a039583810795399f63705b54
+Copyright:
+License:
+#Header:
+#@node fcvt
+#@section @code{fcvt}
+#@findex fcvt
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/fcvt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/ftime.texi
+Hash: 89c4865146e1c4cbe085be8b535cc4895846e0d7dc5d9463cd893f2a2611cc6b
+Copyright:
+License:
+#Header:
+#@node ftime
+#@section @code{ftime}
+#@findex ftime
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/ftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/gcvt.texi
+Hash: b58c5c40dd157cd45a90cc8116c094bc7467118421b812fa7603d85ef5f9a216
+Copyright:
+License:
+#Header:
+#@node gcvt
+#@section @code{gcvt}
+#@findex gcvt
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/gcvt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/getcontext.texi
+Hash: d4cff088a3b331819944b6dd371788d793587a91a2e300d45e194025ba3912f0
+Copyright:
+License:
+#Header:
+#@node getcontext
+#@section @code{getcontext}
+#@findex getcontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/getcontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/gethostbyaddr.texi
+Hash: f62bfb5224b154effd3082e24c0573f955ccece64433a088bf72f82c97797593
+Copyright:
+License:
+#Header:
+#@node gethostbyaddr
+#@section @code{gethostbyaddr}
+#@findex gethostbyaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/gethostbyaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/gethostbyname.texi
+Hash: 776bee42bc3143a75a126fc67510c85e732caff095d2618cf3dad9adfde2823e
+Copyright:
+License:
+#Header:
+#@node gethostbyname
+#@section @code{gethostbyname}
+#@findex gethostbyname
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/gethostbyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/getwd.texi
+Hash: 0ea55e75af07fb3979e1a63cf6b6182eefbaea7dd5556d849894438bd700541e
+Copyright:
+License:
+#Header:
+#@node getwd
+#@section @code{getwd}
+#@findex getwd
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/getwd.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/h_errno.texi
+Hash: 8ad4e6a01308643335b767c77d0f461f310eeeb59a03fd2b7057f5064c165625
+Copyright:
+License:
+#Header:
+#@node h_errno
+#@section @code{h_errno}
+#@findex h_errno
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/h_errno.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/index.texi
+Hash: a5fca5d0786ced2a2f131a143afab2f5ee54b26b419e1be48f0139c208117de8
+Copyright:
+License:
+#Header:
+#@node index
+#@section @code{index}
+#@findex index
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/index.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/makecontext.texi
+Hash: 1c5f3629d45da8aa766f448b81564a651ce98fcf39f5982732a39f9309b6760b
+Copyright:
+License:
+#Header:
+#@node makecontext
+#@section @code{makecontext}
+#@findex makecontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/makecontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/mktemp.texi
+Hash: 9eb524104f966e5d2bec99631296f09f0f359d79cd59f39feeb96ab11d99fc43
+Copyright:
+License:
+#Header:
+#@node mktemp
+#@section @code{mktemp}
+#@findex mktemp
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/mktemp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/pthread_attr_getstackaddr.texi
+Hash: 4d63b667e605bb58aa0663e91f62ede2047edc8b47c59feb336a73fcbfe9fc8a
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getstackaddr
+#@section @code{pthread_attr_getstackaddr}
+#@findex pthread_attr_getstackaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/pthread_attr_getstackaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/pthread_attr_setstackaddr.texi
+Hash: 6321fd00b2cdfca18d37e2da59c1746b49d208d9342fd98061524fae66a617fc
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setstackaddr
+#@section @code{pthread_attr_setstackaddr}
+#@findex pthread_attr_setstackaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/pthread_attr_setstackaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/rindex.texi
+Hash: 7d63a4ee6bc483b81e2d88abf9ecc5576e30f3c911e8a00ae2a6c79aeaa0f141
+Copyright:
+License:
+#Header:
+#@node rindex
+#@section @code{rindex}
+#@findex rindex
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/rindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/scalb.texi
+Hash: 466c68b70229a839f6d041c664ca3b58a0cd8bbe7b878e3d1fbe68f1bf578b90
+Copyright:
+License:
+#Header:
+#@node scalb
+#@section @code{scalb}
+#@findex scalb
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/scalb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/pastposix-functions/setcontext.texi
+Hash: cf06f7a1492f1b932e521f9532748e9d6e93638ac687bda4eabebd45b8f14fda
+Copyright:
+License:
+#Header:
+#@node setcontext
+#@section @code{setcontext}
+#@findex setcontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/setcontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/swapcontext.texi
+Hash: cbd3d366ba77cedb5d159f4ba6325e42dc851244f91750aac38dd037bbe32ebd
+Copyright:
+License:
+#Header:
+#@node swapcontext
+#@section @code{swapcontext}
+#@findex swapcontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/swapcontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/ualarm.texi
+Hash: 2e8b19c1c34350007a55f47aec6a9c248d12f48f6b5b350f391b723c0b93392c
+Copyright:
+License:
+#Header:
+#@node ualarm
+#@section @code{ualarm}
+#@findex ualarm
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/ualarm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/usleep.texi
+Hash: f501d093118e406965e4dad35b035eee7346fec9ca5ee2a69867718e32d277fe
+Copyright:
+License:
+#Header:
+#@node usleep
+#@section @code{usleep}
+#@findex usleep
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/usleep.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/vfork.texi
+Hash: 36148ae554abcc4b634cf714f4fd99d663a957814057cf580370d48944a22ff5
+Copyright:
+License:
+#Header:
+#@node vfork
+#@section @code{vfork}
+#@findex vfork
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/vfork.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/pastposix-functions/wcswcs.texi
+Hash: c56c89e0ec1d7221fa616889acfc8be4eff6a18d830fb452fd62c2c59c115c32
+Copyright:
+License:
+#Header:
+#@node wcswcs
+#@section @code{wcswcs}
+#@findex wcswcs
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/wcswcs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/FD_CLR.texi
+Hash: 4bdcc69109a06b2a638508e0e88920c7b9144c36295828451960cc3937dfa0ee
+Copyright:
+License:
+#Header:
+#@node FD_CLR
+#@section @code{FD_CLR}
+#@findex FD_CLR
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_CLR.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/FD_ISSET.texi
+Hash: 1291518a4f9111d9e9475c542cc9c025c2150e824852f4f5d689b43aff16f0d1
+Copyright:
+License:
+#Header:
+#@node FD_ISSET
+#@section @code{FD_ISSET}
+#@findex FD_ISSET
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_ISSET.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/FD_SET.texi
+Hash: 16e13795165195f4a4eacd97bb731c1cc32746395eda808584fe24e7bf2bf040
+Copyright:
+License:
+#Header:
+#@node FD_SET
+#@section @code{FD_SET}
+#@findex FD_SET
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_SET.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/FD_ZERO.texi
+Hash: 867ed157d794920b1e6ef522bd1389065fa176a2745516597adc9d957c6d9c1f
+Copyright:
+License:
+#Header:
+#@node FD_ZERO
+#@section @code{FD_ZERO}
+#@findex FD_ZERO
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_ZERO.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/_Exit_C99.texi
+Hash: f2971a822bc1838157a0c388c7112b4fb3512e7285ad00028a64ed2d126560ca
+Copyright:
+License:
+#Header:
+#@node _Exit
+#@section @code{_Exit}
+#@findex _Exit
+#@c This file would ideally be called _Exit.texi, but then it would collide
+#@c with _exit.texi on case-insensitive file systems (MacOS X HFS+ and Woe32
+#@c file systems).
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_Exit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/_exit.texi
+Hash: 617e14d15ded9c83e30656eee2982fbd7779fae2a9ebb85434e731e0448ea376
+Copyright:
+License:
+#Header:
+#@node _exit
+#@section @code{_exit}
+#@findex _exit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_exit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/_longjmp.texi
+Hash: a4efad25c9a2aa0a0bb68cb8f8d93469f8dededd867d67616165bd2cac5b49ea
+Copyright:
+License:
+#Header:
+#@node _longjmp
+#@section @code{_longjmp}
+#@findex _longjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_longjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/_setjmp.texi
+Hash: fd4f68ff284ebc28908272e8ba70caa11cd851a607710395440093198b78da33
+Copyright:
+License:
+#Header:
+#@node _setjmp
+#@section @code{_setjmp}
+#@findex _setjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_setjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/_tolower.texi
+Hash: af965647c2059fa305a0ea66425e067f6351285e242a80bfb79892d04af1efe2
+Copyright:
+License:
+#Header:
+#@node _tolower
+#@section @code{_tolower}
+#@findex _tolower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_tolower.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/_toupper.texi
+Hash: a60a13b20e2c158a30d313107892d5c7445595700c098bf69aa2e09a9932a27d
+Copyright:
+License:
+#Header:
+#@node _toupper
+#@section @code{_toupper}
+#@findex _toupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_toupper.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/a64l.texi
+Hash: 9a48aa5a59249118c5ed8abb938d8c66ee17754847ba48b97d1bb34ebd736950
+Copyright:
+License:
+#Header:
+#@node a64l
+#@section @code{a64l}
+#@findex a64l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/a64l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/abort.texi
+Hash: f7017d331926830c3d0ee3ef193aaba54cc29e400d26730478300ed46c330278
+Copyright:
+License:
+#Header:
+#@node abort
+#@section @code{abort}
+#@findex abort
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/abort.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/abs.texi
+Hash: 8a6be2b119b4780391f1a407aef5ce6064c1f1c2fb42b2d9801e81446320a575
+Copyright:
+License:
+#Header:
+#@node abs
+#@section @code{abs}
+#@findex abs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/abs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/accept.texi
+Hash: 81b3c3211aee16330e76a0b86a339f4d352a02421066633fc356a3bff5365aec
+Copyright:
+License:
+#Header:
+#@node accept
+#@section @code{accept}
+#@findex accept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/accept.html}
+#
+#Gnulib module: accept
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), the descriptors returned by
+#the @code{accept} function can not be used in calls to @code{read},
+#@code{write}, and @code{close}; you have to use @code{recv}, @code{send},
+#@code{closesocket} in these cases instead.
+File: ./doc/posix-functions/access.texi
+Hash: 5c9fe6527a708f0f5699ddaa241a010325972adaaf5f6dbd5a05728a80ab7de0
+Copyright:
+License:
+#Header:
+#@node access
+#@section @code{access}
+#@findex access
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/access.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/acos.texi
+Hash: 150b61e719501d08ba13f5c263800804a50eefb71d3ce76b4c267c5cf01f297c
+Copyright:
+License:
+#Header:
+#@node acos
+#@section @code{acos}
+#@findex acos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/acosf.texi
+Hash: 9c84c5a1592f90ebe189dd0411e60fae1dc44b75d1b85235767ba29fdb461845
+Copyright:
+License:
+#Header:
+#@node acosf
+#@section @code{acosf}
+#@findex acosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/acosh.texi
+Hash: 194f7fc07993dbde9913bcdc50b1f595c79f07e3bcc99a22abd2c7f996be9615
+Copyright:
+License:
+#Header:
+#@node acosh
+#@section @code{acosh}
+#@findex acosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/acoshf.texi
+Hash: 16975c50d57f3c7d1e6e146f12dd4fb00edf62eb981cd7ca0086ba4637a6c4ae
+Copyright:
+License:
+#Header:
+#@node acoshf
+#@section @code{acoshf}
+#@findex acoshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acoshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/acoshl.texi
+Hash: c48a11ab5a5cbe1b315d4eba844ada7b360515d9dde684063df356b4e26ca7cf
+Copyright:
+License:
+#Header:
+#@node acoshl
+#@section @code{acoshl}
+#@findex acoshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acoshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/acosl.texi
+Hash: e7792ee050ec415ebb3afb0943ed08c5a1d8473e4a3965fc294a40f54508ff80
+Copyright:
+License:
+#Header:
+#@node acosl
+#@section @code{acosl}
+#@findex acosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/aio_cancel.texi
+Hash: b66233d7d61128517a0b7295d5acec1e95f4b39184ffb18d77fb8ef6b78fe623
+Copyright:
+License:
+#Header:
+#@node aio_cancel
+#@section @code{aio_cancel}
+#@findex aio_cancel
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_cancel.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/aio_error.texi
+Hash: c373cc41047b3d210041a50ec055a65ffe89026e4fdf391bc4a45890df6fe34c
+Copyright:
+License:
+#Header:
+#@node aio_error
+#@section @code{aio_error}
+#@findex aio_error
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_error.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/aio_fsync.texi
+Hash: e727b3d41bef54f2e5c2729130af2eb90f1010edc998c99bd06e02f466e47cdc
+Copyright:
+License:
+#Header:
+#@node aio_fsync
+#@section @code{aio_fsync}
+#@findex aio_fsync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_fsync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/aio_read.texi
+Hash: 3d17ee9b9556d524d7d7f90a80fe07b3fcd01a23d833c1bd12815ded8abe1f0c
+Copyright:
+License:
+#Header:
+#@node aio_read
+#@section @code{aio_read}
+#@findex aio_read
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_read.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/aio_return.texi
+Hash: 7991e57a0afdf4886417e32b5ff2fefca051625e020d2f99c6ba13a9ba0b93f6
+Copyright:
+License:
+#Header:
+#@node aio_return
+#@section @code{aio_return}
+#@findex aio_return
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_return.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/aio_suspend.texi
+Hash: 6a7462cef0037932257eeb80998e3fe8d56418d33006cdfd729b36c2ee2442f9
+Copyright:
+License:
+#Header:
+#@node aio_suspend
+#@section @code{aio_suspend}
+#@findex aio_suspend
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_suspend.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/aio_write.texi
+Hash: 1bcfee726b7f2c39b8ab864a98213996e3d6550bc91ffe27e68ca52cc42fef61
+Copyright:
+License:
+#Header:
+#@node aio_write
+#@section @code{aio_write}
+#@findex aio_write
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_write.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/alarm.texi
+Hash: e2e54168615ce20a9bdb520184cdb94f8c87bc7afbe08bad9e3fa30228948609
+Copyright:
+License:
+#Header:
+#@node alarm
+#@section @code{alarm}
+#@findex alarm
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/alarm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/alphasort.texi
+Hash: ef1142784d13d61cc5243b241b611436b5c41936674ff9c822f3bd5a525a541d
+Copyright:
+License:
+#Header:
+#@node alphasort
+#@section @code{alphasort}
+#@findex alphasort
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/alphasort.html}
+#
+#Gnulib module: alphasort
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 9, mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/asctime.texi
+Hash: 721bc2ac5ac79045cbf87988e789bbab5132485fcfb82753f1341d315c4ac690
+Copyright:
+License:
+#Header:
+#@node asctime
+#@section @code{asctime}
+#@findex asctime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asctime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/asctime_r.texi
+Hash: f9f95df6f49642a423caa4d7f15c2f032790dc10388af51c7661f87407f1f260
+Copyright:
+License:
+#Header:
+#@node asctime_r
+#@section @code{asctime_r}
+#@findex asctime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asctime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/asin.texi
+Hash: b329f7976db842d1b576513d498164f1469586519242f55a3549f35d19fa5c8a
+Copyright:
+License:
+#Header:
+#@node asin
+#@section @code{asin}
+#@findex asin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/asinf.texi
+Hash: dcc23541874407b670f6aaa98d3206d52d1dc7d332c61591c21b902c0c88175a
+Copyright:
+License:
+#Header:
+#@node asinf
+#@section @code{asinf}
+#@findex asinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/asinh.texi
+Hash: ca1f10207ab80b34856d7d221917ab4e3ea8ec66daabfad193f620a43e0890fa
+Copyright:
+License:
+#Header:
+#@node asinh
+#@section @code{asinh}
+#@findex asinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/asinhf.texi
+Hash: 57aa296f938827a7b7ccc0146a519d2daec080d5a4fd9faaeb912ba6b25fc5a7
+Copyright:
+License:
+#Header:
+#@node asinhf
+#@section @code{asinhf}
+#@findex asinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/asinhl.texi
+Hash: 5334814ec20f8cb6f5b4fa90b116944da8b21130f87f170143da8c5e7d0ed90a
+Copyright:
+License:
+#Header:
+#@node asinhl
+#@section @code{asinhl}
+#@findex asinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/asinl.texi
+Hash: f38089461ff6de8a2e20fe6faf14bb3536b88885f71406ec3678f9eeddb3b7e2
+Copyright:
+License:
+#Header:
+#@node asinl
+#@section @code{asinl}
+#@findex asinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/assert.texi
+Hash: c57a5393ad06cfbf14e522f23e99c9f7c79ff4295814b68d038ebfc9914898a1
+Copyright:
+License:
+#Header:
+#@node assert
+#@section @code{assert}
+#@findex assert
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/assert.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/atan.texi
+Hash: 4ff1b784715d8fccd274a4d46d6c0a2aaa69ba2d80d1b6551033c492cf599c98
+Copyright:
+License:
+#Header:
+#@node atan
+#@section @code{atan}
+#@findex atan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/atan2.texi
+Hash: 7fdc70bbb2d4ec9e2f5cb007bc3c45617de137614d5d793d80e6a1c7d28fdcb9
+Copyright:
+License:
+#Header:
+#@node atan2
+#@section @code{atan2}
+#@findex atan2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan2.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/atan2f.texi
+Hash: e097eb1773d31fceff278a30c31286bc5600c4b73b1c152778dd1057036982d9
+Copyright:
+License:
+#Header:
+#@node atan2f
+#@section @code{atan2f}
+#@findex atan2f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan2f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atan2l.texi
+Hash: f4c5ca77363c312560873e8094350021d32b086379d14a23fb80a75147fbc45c
+Copyright:
+License:
+#Header:
+#@node atan2l
+#@section @code{atan2l}
+#@findex atan2l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan2l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atanf.texi
+Hash: ba3c7c2fc2662ad55ef268494c70149f99f16a3ef9f266870508454cd70e12a3
+Copyright:
+License:
+#Header:
+#@node atanf
+#@section @code{atanf}
+#@findex atanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atanh.texi
+Hash: 2ebfd2d4f0608e214eee8e76ea21fa027dd8496d685b81231e7e7e40bcd83689
+Copyright:
+License:
+#Header:
+#@node atanh
+#@section @code{atanh}
+#@findex atanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atanhf.texi
+Hash: 327fcf33922e20f61594c5d6bfb40a36d60661a50594ed1373cb04182f78ad1f
+Copyright:
+License:
+#Header:
+#@node atanhf
+#@section @code{atanhf}
+#@findex atanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atanhl.texi
+Hash: 7d84523ad7598e7932a11e3bdf4cfaa78a0e2844bfa8fef21ac0a9445a7d2461
+Copyright:
+License:
+#Header:
+#@node atanhl
+#@section @code{atanhl}
+#@findex atanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atanl.texi
+Hash: f9fdd043f291ef30c72d8b86bec63f81872c4e27c075eb44555e3519a942ce71
+Copyright:
+License:
+#Header:
+#@node atanl
+#@section @code{atanl}
+#@findex atanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atexit.texi
+Hash: 07af21ce2184b60a35aff17a7de75adac18a1c23a31c8ef3966fe5a19b11f702
+Copyright:
+License:
+#Header:
+#@node atexit
+#@section @code{atexit}
+#@findex atexit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atexit.html}
+#
+#Gnulib module: atexit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/atof.texi
+Hash: cb598c82f7c415f1525ac2f407c7924853f15d7f63a42471e2e980e263aed83b
+Copyright:
+License:
+#Header:
+#@node atof
+#@section @code{atof}
+#@findex atof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/atoi.texi
+Hash: 42f659e4671bf747e181f5ef4b3f949ecb73cdd988944a3847e0b43b3af9a980
+Copyright:
+License:
+#Header:
+#@node atoi
+#@section @code{atoi}
+#@findex atoi
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atoi.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/atol.texi
+Hash: 509a54f5251640192f8b2054f91f5c2d8acf54dbe7ed65ef8ef07747502402af
+Copyright:
+License:
+#Header:
+#@node atol
+#@section @code{atol}
+#@findex atol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/atoll.texi
+Hash: 8c9a6dc1b25278f7455c06e10fdccf05c49405df1d7116aca867349387b4d9f4
+Copyright:
+License:
+#Header:
+#@node atoll
+#@section @code{atoll}
+#@findex atoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atoll.html}
+#
+#Gnulib module: atoll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, OSF/1 5.1, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/basename.texi
+Hash: 580230c22dd6f6cf1cf798e506e89d861118db39bc129e9f4257f55de4915995
+Copyright:
+License:
+#Header:
+#@node basename
+#@section @code{basename}
+#@findex basename
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/basename.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/bind.texi
+Hash: 075c556c5fdc1c0a9aa62c6cc8c9c94ab0a632352b43e43c36daf2682dafbcac
+Copyright:
+License:
+#Header:
+#@node bind
+#@section @code{bind}
+#@findex bind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/bind.html}
+#
+#Gnulib module: bind
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{bind}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+File: ./doc/posix-functions/bsearch.texi
+Hash: a52cfb1ef7418d53462eb86d9b8153cf8589b501f912e649c765afe6ee090968
+Copyright:
+License:
+#Header:
+#@node bsearch
+#@section @code{bsearch}
+#@findex bsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/bsearch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/btowc.texi
+Hash: 86660f1a58cfde44606f43b85c540b2e731dca2e3387fb1a2486656615ba03e4
+Copyright:
+License:
+#Header:
+#@node btowc
+#@section @code{btowc}
+#@findex btowc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/btowc.html}
+#
+#Gnulib module: btowc
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 5.3, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not return WEOF for an EOF argument on some platforms:
+File: ./doc/posix-functions/cabs.texi
+Hash: 5a57e05203246e471ecb597d82a6df81a9a9324e7f9d41c4c07524134f1a742f
+Copyright:
+License:
+#Header:
+#@node cabs
+#@section @code{cabs}
+#@findex cabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cabs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cabsf.texi
+Hash: 6206f6a5f20a0c6471551ea93ba80961472d58caa288e80acc5400a973546d49
+Copyright:
+License:
+#Header:
+#@node cabsf
+#@section @code{cabsf}
+#@findex cabsf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cabsf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cabsl.texi
+Hash: d6d3a323b448fe92e604e0121be72ea0fdf5c8876ab74c851cae2119804a23af
+Copyright:
+License:
+#Header:
+#@node cabsl
+#@section @code{cabsl}
+#@findex cabsl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cabsl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cacos.texi
+Hash: 50eeefeabe4315e966bc544fdef355a310e83c8d3a199628c70c4333fb3659c6
+Copyright:
+License:
+#Header:
+#@node cacos
+#@section @code{cacos}
+#@findex cacos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cacosf.texi
+Hash: 5574c38edf482540ee0ccabea8512ea3b254bc971aac84d48c0814a9161b71ab
+Copyright:
+License:
+#Header:
+#@node cacosf
+#@section @code{cacosf}
+#@findex cacosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cacosh.texi
+Hash: d5668e987d967fa28f2fc14ee7b0b32cab5b7ce204f9724133c81b1ab9d0d38c
+Copyright:
+License:
+#Header:
+#@node cacosh
+#@section @code{cacosh}
+#@findex cacosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cacoshf.texi
+Hash: 09c419d35ce19ad5101b87b37cb67507975fa38ad4e5558a78c3fb28897d45a7
+Copyright:
+License:
+#Header:
+#@node cacoshf
+#@section @code{cacoshf}
+#@findex cacoshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacoshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cacoshl.texi
+Hash: dc375481504fafa3bd2f505b3a24f913052b5d7cc8f6be09d322b23ecd72fe4f
+Copyright:
+License:
+#Header:
+#@node cacoshl
+#@section @code{cacoshl}
+#@findex cacoshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacoshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cacosl.texi
+Hash: bf1d59e5f937aa85da28fa866443894e6a227636f9c2075f81c13a6ff1f010fb
+Copyright:
+License:
+#Header:
+#@node cacosl
+#@section @code{cacosl}
+#@findex cacosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/calloc.texi
+Hash: 8d5ecf56975464579d01f08920bee2441850c4e3e295ee55688c1669a6d871c3
+Copyright:
+License:
+#Header:
+#@node calloc
+#@section @code{calloc}
+#@findex calloc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/calloc.html}
+#
+#Gnulib module: calloc-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Upon failure, the function does not set @code{errno} to @code{ENOMEM} on
+#some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/carg.texi
+Hash: a82fbcbbd57f46c534a0b7c0498648ccb5d1b990a71c3f00b7f71d62ead996f1
+Copyright:
+License:
+#Header:
+#@node carg
+#@section @code{carg}
+#@findex carg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/carg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cargf.texi
+Hash: 3400afd0256e66a6906d3ec9034955305cd3018876434b982005c1070ff4d9b1
+Copyright:
+License:
+#Header:
+#@node cargf
+#@section @code{cargf}
+#@findex cargf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cargf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cargl.texi
+Hash: 05ba0a0471f75afc9164bf93664b3e3169236684072ba2e750805ba7c441ce71
+Copyright:
+License:
+#Header:
+#@node cargl
+#@section @code{cargl}
+#@findex cargl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cargl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/casin.texi
+Hash: 088c0bcfac54314d20520422d335a2cdd8fd8de1fa28f7a3574b049b64206d4c
+Copyright:
+License:
+#Header:
+#@node casin
+#@section @code{casin}
+#@findex casin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/casinf.texi
+Hash: e1eda8eda74e50383462f6250d8797995b4bd9e33630a97b11068457b25079ad
+Copyright:
+License:
+#Header:
+#@node casinf
+#@section @code{casinf}
+#@findex casinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/casinh.texi
+Hash: c92401d5821a5c2e8eae6e1ee0e4d0f404fed62fe860d51ca34276cbe5c67fdc
+Copyright:
+License:
+#Header:
+#@node casinh
+#@section @code{casinh}
+#@findex casinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/casinhf.texi
+Hash: 955a15c8ef8373798497a79b8303d6ddc32b5a9ca5132389339e2934344d3d45
+Copyright:
+License:
+#Header:
+#@node casinhf
+#@section @code{casinhf}
+#@findex casinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/casinhl.texi
+Hash: bc36d55b4db6c64eec973c48e5f4e01bf2524e0774b4ed7575a0962e6c752d60
+Copyright:
+License:
+#Header:
+#@node casinhl
+#@section @code{casinhl}
+#@findex casinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/casinl.texi
+Hash: 2fdcbfd22461c6328f3a88b4a220c43c7e669f760b9247dc13924213b3608ca4
+Copyright:
+License:
+#Header:
+#@node casinl
+#@section @code{casinl}
+#@findex casinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catan.texi
+Hash: 1900ac3c57172c7fcf543e7c2bdbbe29786d3e2de52b270034ba0d1043b03142
+Copyright:
+License:
+#Header:
+#@node catan
+#@section @code{catan}
+#@findex catan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catanf.texi
+Hash: 15a02393981d9d54e9343892174f0f4460b9a912a7e081154ee9549d2e7ffbf0
+Copyright:
+License:
+#Header:
+#@node catanf
+#@section @code{catanf}
+#@findex catanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catanh.texi
+Hash: 26f0ae150358d27a41ebd8a1ea04f9894175f61babb39a6b98f5d61599a9edd1
+Copyright:
+License:
+#Header:
+#@node catanh
+#@section @code{catanh}
+#@findex catanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catanhf.texi
+Hash: 4e75f5881fbb08aa54a2fff4134b3762fa0e12469c74932a38fd9e4207a3623a
+Copyright:
+License:
+#Header:
+#@node catanhf
+#@section @code{catanhf}
+#@findex catanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catanhl.texi
+Hash: 82d0c974c64a7cf16231948261385d9481c370fccd9c1505479c1570315fcd47
+Copyright:
+License:
+#Header:
+#@node catanhl
+#@section @code{catanhl}
+#@findex catanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catanl.texi
+Hash: 9e7691d069d4a4738e083cf638a18a533a7c823dcd5703365ab766d077e8744f
+Copyright:
+License:
+#Header:
+#@node catanl
+#@section @code{catanl}
+#@findex catanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catclose.texi
+Hash: 01ecba8a97e46807f4fbb86f8f783a4aac58738c54a0100b32283f4d64f2307f
+Copyright:
+License:
+#Header:
+#@node catclose
+#@section @code{catclose}
+#@findex catclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catclose.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catgets.texi
+Hash: 85222dd53c8d87d37d1fc345d441786afb858cfbd76117d6ad374541305c418b
+Copyright:
+License:
+#Header:
+#@node catgets
+#@section @code{catgets}
+#@findex catgets
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catgets.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/catopen.texi
+Hash: 6735bd2f884c12725cdae1f82a0d5e53c6773f3803e206c4d2fbb773e74834c2
+Copyright:
+License:
+#Header:
+#@node catopen
+#@section @code{catopen}
+#@findex catopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cbrt.texi
+Hash: 67c9f016fcf80f7a7bb55861e8547c42548312e7370fc73728b5274032f976b6
+Copyright:
+License:
+#Header:
+#@node cbrt
+#@section @code{cbrt}
+#@findex cbrt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/cbrtf.texi
+Hash: 803d4a7e0a751e168dc18cd98d0f2c41155e2c26493040183d792e4024515762
+Copyright:
+License:
+#Header:
+#@node cbrtf
+#@section @code{cbrtf}
+#@findex cbrtf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrtf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cbrtl.texi
+Hash: 43de9ac1aa9e5cc0d8bd8702ede4d1aa16e6dcef3ad574242605a0c8bbec94cd
+Copyright:
+License:
+#Header:
+#@node cbrtl
+#@section @code{cbrtl}
+#@findex cbrtl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrtl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ccos.texi
+Hash: 8fa59bae0d8f0c675e9ef48de43de0b4c10b0507a31cd2d81550f52d9712cff0
+Copyright:
+License:
+#Header:
+#@node ccos
+#@section @code{ccos}
+#@findex ccos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ccosf.texi
+Hash: 2eaf3ff8e1a7a5cbb0233238640c6a1134ae3cc80acc412585115fd63358bf61
+Copyright:
+License:
+#Header:
+#@node ccosf
+#@section @code{ccosf}
+#@findex ccosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ccosh.texi
+Hash: 8acf4ecf1abbec6b25ab0cc53f8a452f4ddb32bd61ff4a6ff94c16a5602ec2ab
+Copyright:
+License:
+#Header:
+#@node ccosh
+#@section @code{ccosh}
+#@findex ccosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ccoshf.texi
+Hash: f30beb9e547118702e7f30525f258e4cf50a5195e03fb66554802fe0a580f7c7
+Copyright:
+License:
+#Header:
+#@node ccoshf
+#@section @code{ccoshf}
+#@findex ccoshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccoshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ccoshl.texi
+Hash: eb9e28e48f625d3e2eb5e13e96cbbe361b852162d3d90ba26a5837e1889af495
+Copyright:
+License:
+#Header:
+#@node ccoshl
+#@section @code{ccoshl}
+#@findex ccoshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccoshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ccosl.texi
+Hash: 3d9df8f9f71f802e5d84323b16351e60dbabdbb3cd0abd9bc862b3e291439694
+Copyright:
+License:
+#Header:
+#@node ccosl
+#@section @code{ccosl}
+#@findex ccosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ceil.texi
+Hash: cf8b5752573720cc25bec831c538c1394b14f3b1460f5cc3a2e16ac7016e0497
+Copyright:
+License:
+#Header:
+#@node ceil
+#@section @code{ceil}
+#@findex ceil
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ceil.html}
+#
+#Gnulib module: ceil
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/ceilf.texi
+Hash: e13c58fd23e0ed41d99a7bd4d0e8d7849bd2da76d7ce095fdaa587ccb3839d6f
+Copyright:
+License:
+#Header:
+#@node ceilf
+#@section @code{ceilf}
+#@findex ceilf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ceilf.html}
+#
+#Gnulib module: ceilf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, Solaris 9.
+#@end itemize
+File: ./doc/posix-functions/ceill.texi
+Hash: c9b79f28ab9283d893f155d1f25c8e75cb360e0d04af0b245bf3e1d009217a5a
+Copyright:
+License:
+#Header:
+#@node ceill
+#@section @code{ceill}
+#@findex ceill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ceill.html}
+#
+#Gnulib module: ceill
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/cexp.texi
+Hash: d3f7892298fdf378f2828a6b51fe4805c92d3a2a217a3e38d4bed5f7c4cc3da4
+Copyright:
+License:
+#Header:
+#@node cexp
+#@section @code{cexp}
+#@findex cexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cexp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cexpf.texi
+Hash: 09f585a4aba129816d1cb526a14f28ff83ca3fa54016e7bf8b8c08494c2db323
+Copyright:
+License:
+#Header:
+#@node cexpf
+#@section @code{cexpf}
+#@findex cexpf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cexpf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cexpl.texi
+Hash: 883e3b88e16b87337802472c75c00fa5b35462c0b8573f7ef558e9a4c0e4faf9
+Copyright:
+License:
+#Header:
+#@node cexpl
+#@section @code{cexpl}
+#@findex cexpl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cexpl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cfgetispeed.texi
+Hash: 14c4e6e62c223931253fb497e69a93dad3a1c6a51fca15f3e63337795107bea5
+Copyright:
+License:
+#Header:
+#@node cfgetispeed
+#@section @code{cfgetispeed}
+#@findex cfgetispeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfgetispeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cfgetospeed.texi
+Hash: c2519db2b4f519fd3f66640aabd8e497ba1ce5892d23c916a38576bbb580361e
+Copyright:
+License:
+#Header:
+#@node cfgetospeed
+#@section @code{cfgetospeed}
+#@findex cfgetospeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfgetospeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cfsetispeed.texi
+Hash: 3b3d21a8f207d8e41d3c912c4a0083264a6fa411c2da6c3f604d7050dee0fed8
+Copyright:
+License:
+#Header:
+#@node cfsetispeed
+#@section @code{cfsetispeed}
+#@findex cfsetispeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfsetispeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cfsetospeed.texi
+Hash: c20afc895be661df0733a8dc75794fa7293263468d39678a301ff494d2c87109
+Copyright:
+License:
+#Header:
+#@node cfsetospeed
+#@section @code{cfsetospeed}
+#@findex cfsetospeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfsetospeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/chdir.texi
+Hash: 53aded6f64b0941116e51303b73ac8e6e9278e3f201af7c6ad326820b5e2e3f6
+Copyright:
+License:
+#Header:
+#@node chdir
+#@section @code{chdir}
+#@findex chdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/chdir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/chmod.texi
+Hash: 3a349653c163fa2e3564b1e31ed14ab490934bba7fd3d0096f0d7b1efded7348
+Copyright:
+License:
+#Header:
+#@node chmod
+#@section @code{chmod}
+#@findex chmod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/chmod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/chown.texi
+Hash: fb9f116f87fc01e4ef30e188f7c9360ac6f517f9eb1370ae2491f5246ed6fef0
+Copyright:
+License:
+#Header:
+#@node chown
+#@section @code{chown}
+#@findex chown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/chown.html}
+#
+#Gnulib module: chown
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When passed an argument of -1, some implementations really set the owner
+#user/group id of the file to this value, rather than leaving that id of the
+#file alone.
+#@item
+File: ./doc/posix-functions/cimag.texi
+Hash: fd22dd26750766a15751078eb653fdc2ddde0ce0fbd929b258c9fe161e04170e
+Copyright:
+License:
+#Header:
+#@node cimag
+#@section @code{cimag}
+#@findex cimag
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cimag.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cimagf.texi
+Hash: 76a569fc520aa0eb83fadc9a9e735b2a0a5f3f6daeeeaab322bac1b697554888
+Copyright:
+License:
+#Header:
+#@node cimagf
+#@section @code{cimagf}
+#@findex cimagf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cimagf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cimagl.texi
+Hash: c881d444238f5203c0d3b0087372957be2f909c63037c1d14ee0a916707a9c6d
+Copyright:
+License:
+#Header:
+#@node cimagl
+#@section @code{cimagl}
+#@findex cimagl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cimagl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clearerr.texi
+Hash: 5fed5a649725e8940e5adb12d4fbf3f5af27aade47daa719911b155f7421149d
+Copyright:
+License:
+#Header:
+#@node clearerr
+#@section @code{clearerr}
+#@findex clearerr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clearerr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/clock.texi
+Hash: 71e1ceb2d0f5f512ab4a9a0fb2ce9e895457e1b6c7425130bf8ba7896980978a
+Copyright:
+License:
+#Header:
+#@node clock
+#@section @code{clock}
+#@findex clock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/clock_getcpuclockid.texi
+Hash: e72acf21acf80e70335aa212455e60bf1f9815caa0e8d1bf2d2d192c9e337803
+Copyright:
+License:
+#Header:
+#@node clock_getcpuclockid
+#@section @code{clock_getcpuclockid}
+#@findex clock_getcpuclockid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_getcpuclockid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clock_getres.texi
+Hash: bf955ddbae540035a89e35302304365a2a775aabb9ae7fccbc9c66948de3619e
+Copyright:
+License:
+#Header:
+#@node clock_getres
+#@section @code{clock_getres}
+#@findex clock_getres
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_getres.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clock_gettime.texi
+Hash: ac68c2fc02227f916df88dfa46f6b2dfbe111860e20dfa605934d149550ef2e2
+Copyright:
+License:
+#Header:
+#@node clock_gettime
+#@section @code{clock_gettime}
+#@findex clock_gettime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_gettime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clock_nanosleep.texi
+Hash: 59ca36060acae6a447a4111243c638108a3a98fcf1b53dd7681aaf989698df2a
+Copyright:
+License:
+#Header:
+#@node clock_nanosleep
+#@section @code{clock_nanosleep}
+#@findex clock_nanosleep
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_nanosleep.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clock_settime.texi
+Hash: 297b8d0066f505aa8c21939c73612aaf536cf0e4f977f1edbb2c4f242d2c5a3b
+Copyright:
+License:
+#Header:
+#@node clock_settime
+#@section @code{clock_settime}
+#@findex clock_settime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_settime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clog.texi
+Hash: 47702f69c3982416c0512a7bd4025df239fefbe4a2f1707cd4745b9fdb500379
+Copyright:
+License:
+#Header:
+#@node clog
+#@section @code{clog}
+#@findex clog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clogf.texi
+Hash: 2e2bd1295966040f14759ef405f2038a279e164148b402035e9f0633e8e9f49e
+Copyright:
+License:
+#Header:
+#@node clogf
+#@section @code{clogf}
+#@findex clogf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clogf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/clogl.texi
+Hash: d40dfa8fa5b96d52d881955e61b8f0cedd381b1e8ca3d7b5ab72c35fb5cdaf55
+Copyright:
+License:
+#Header:
+#@node clogl
+#@section @code{clogl}
+#@findex clogl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clogl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/close.texi
+Hash: cdb920f0119a8df783e378bc05571ee2ca4308b3f841b50ca48bd1a3a592ecdc
+Copyright:
+License:
+#Header:
+#@node close
+#@section @code{close}
+#@findex close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/close.html}
+#
+#Gnulib module: close
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{socket} and @code{accept}
+#do not return file descriptors that can be closed by @code{close}.
+#Instead, @code{closesocket} must be used.
+#@end itemize
+File: ./doc/posix-functions/closedir.texi
+Hash: 7e1885ff9368f59c6f2b55a3f04b6ff7a6aa6b2ca796b91c3c88c5c8ec50eaf7
+Copyright:
+License:
+#Header:
+#@node closedir
+#@section @code{closedir}
+#@findex closedir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/closedir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/closelog.texi
+Hash: 30ca3ffe1cf65500c3bcc3580781dcc34252bea949f3270ce75ad084a281b055
+Copyright:
+License:
+#Header:
+#@node closelog
+#@section @code{closelog}
+#@findex closelog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/closelog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/confstr.texi
+Hash: 2ce3fc57057be6a24091d7ea399f22cba994b4346cef4ad9e0905d51edb913bb
+Copyright:
+License:
+#Header:
+#@node confstr
+#@section @code{confstr}
+#@findex confstr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/confstr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/conj.texi
+Hash: 0eb7d2bbdb99c6fd78b92c2b7914b2877cf9e69c4ba5b330f498ef280b11e362
+Copyright:
+License:
+#Header:
+#@node conj
+#@section @code{conj}
+#@findex conj
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/conj.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/conjf.texi
+Hash: 11074f4091f08fd28a9c95b2c7dba4bd66f6fffe7db41e961cfc565ec2d5e960
+Copyright:
+License:
+#Header:
+#@node conjf
+#@section @code{conjf}
+#@findex conjf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/conjf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/conjl.texi
+Hash: 2c89f05a72f75624bbe8a6c3541f8d3907e91507537a6a5fa75fdceab2a35963
+Copyright:
+License:
+#Header:
+#@node conjl
+#@section @code{conjl}
+#@findex conjl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/conjl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/connect.texi
+Hash: 122c3713f1fc98b41082aeaf30a2698ca66f35c223d70b97b76ef1b622c58db0
+Copyright:
+License:
+#Header:
+#@node connect
+#@section @code{connect}
+#@findex connect
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/connect.html}
+#
+#Gnulib module: connect
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{connect} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/copysign.texi
+Hash: 93dede54d4a068e03c2a790b968101fcce78809d3aa2353f8cf98fda60d7c269
+Copyright:
+License:
+#Header:
+#@node copysign
+#@section @code{copysign}
+#@findex copysign
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/copysign.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/copysignf.texi
+Hash: 936705fb4bcc082135aa1afc2248b7cfc45cf37f22d002866acaa14c654baaff
+Copyright:
+License:
+#Header:
+#@node copysignf
+#@section @code{copysignf}
+#@findex copysignf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/copysignf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/copysignl.texi
+Hash: 5540cb65bb917d842bc6d0e81dcce0f16f2d1a6d0a8bb9add553a8c9559fabe7
+Copyright:
+License:
+#Header:
+#@node copysignl
+#@section @code{copysignl}
+#@findex copysignl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/copysignl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cos.texi
+Hash: 80045abb71f4e33aea591a9a33a90bef9af7125bbb532ff6e163c7c900307481
+Copyright:
+License:
+#Header:
+#@node cos
+#@section @code{cos}
+#@findex cos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/cosf.texi
+Hash: 6a11bab0ddf9d06df138b7698cf452d382efa0ac3c383bf36c1b2932b9e8f892
+Copyright:
+License:
+#Header:
+#@node cosf
+#@section @code{cosf}
+#@findex cosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cosh.texi
+Hash: dcd6e2553d7fcd67f7d7ac4b296e0b86c27791599a33b0f849b7b6b9ae783102
+Copyright:
+License:
+#Header:
+#@node cosh
+#@section @code{cosh}
+#@findex cosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/coshf.texi
+Hash: ac511adc238f0fc43aee913691ce5b4d5758b02ba0edc1f377f07bc2b24b427d
+Copyright:
+License:
+#Header:
+#@node coshf
+#@section @code{coshf}
+#@findex coshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/coshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/coshl.texi
+Hash: 10b1339882714ecb27f3595789ff7e57531e1394b8047b6a66d9784f909f0a64
+Copyright:
+License:
+#Header:
+#@node coshl
+#@section @code{coshl}
+#@findex coshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/coshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cosl.texi
+Hash: 29fb7a5e98a754431e7f3a277096efe178611cc623d9e14b592014d367fd3c58
+Copyright:
+License:
+#Header:
+#@node cosl
+#@section @code{cosl}
+#@findex cosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cpow.texi
+Hash: c196fd3e6b5e82b2df412700bd551e90fdcb006566259e526e52d5066a7f136a
+Copyright:
+License:
+#Header:
+#@node cpow
+#@section @code{cpow}
+#@findex cpow
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cpow.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cpowf.texi
+Hash: 20082274ab3053bb9211077523ac71a8564395068d111a99a4471e5bc315270a
+Copyright:
+License:
+#Header:
+#@node cpowf
+#@section @code{cpowf}
+#@findex cpowf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cpowf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cpowl.texi
+Hash: 0aa484e5a20be1692c9b64d6039dd16438e77e2176ec0f54625f67c854b498b2
+Copyright:
+License:
+#Header:
+#@node cpowl
+#@section @code{cpowl}
+#@findex cpowl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cpowl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cproj.texi
+Hash: 4f7a4e43573aea662d11b57f91b99a7039874efc4c3cc6de132223a6dc634f3b
+Copyright:
+License:
+#Header:
+#@node cproj
+#@section @code{cproj}
+#@findex cproj
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cproj.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cprojf.texi
+Hash: b964a10e871a0bf9d13731339a259aa619636a7a3f618a002b287ff1ab07e402
+Copyright:
+License:
+#Header:
+#@node cprojf
+#@section @code{cprojf}
+#@findex cprojf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cprojf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/cprojl.texi
+Hash: 7f382c38eb94bcc1fa720f6c78e14a0b20186f2f595d2c3894535797f3e52942
+Copyright:
+License:
+#Header:
+#@node cprojl
+#@section @code{cprojl}
+#@findex cprojl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cprojl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/creal.texi
+Hash: 8079a8295b42f1edf95f7aeb2f5be551b970419bfdf820bbce90b95c10754e45
+Copyright:
+License:
+#Header:
+#@node creal
+#@section @code{creal}
+#@findex creal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/creal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/crealf.texi
+Hash: f25ddd8b33eb1c125e29e84ae98346e7e5bd73fe20ed9b18090e2080ef09f851
+Copyright:
+License:
+#Header:
+#@node crealf
+#@section @code{crealf}
+#@findex crealf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/crealf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/creall.texi
+Hash: 77e4a42b2d8f9df278e80f0af88cc71dd02401f1ecbddcca69cb825cab14f2cf
+Copyright:
+License:
+#Header:
+#@node creall
+#@section @code{creall}
+#@findex creall
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/creall.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/creat.texi
+Hash: d7c959e3c46a579a8bdeecfc246074e2c424686307d26c1a2210fb8317cb37c6
+Copyright:
+License:
+#Header:
+#@node creat
+#@section @code{creat}
+#@findex creat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/creat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/crypt.texi
+Hash: 624eda7840abf45802a77fc455c11da3a559654831f98db3d3f531ed87f2d5b8
+Copyright:
+License:
+#Header:
+#@node crypt
+#@section @code{crypt}
+#@findex crypt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/crypt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csin.texi
+Hash: a3921e459decb8485fa5b129f122cef9545da177d143a848426285bbaadeb33c
+Copyright:
+License:
+#Header:
+#@node csin
+#@section @code{csin}
+#@findex csin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csinf.texi
+Hash: 7d43a6e3c333aea75c123600828d0b90aa74bbded515c37a4db2b85ee38c126f
+Copyright:
+License:
+#Header:
+#@node csinf
+#@section @code{csinf}
+#@findex csinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csinh.texi
+Hash: c1ec8076f91041ba9035541b53fa4ea34899663273fca8b5a1aa7bf0cb69a8a3
+Copyright:
+License:
+#Header:
+#@node csinh
+#@section @code{csinh}
+#@findex csinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csinhf.texi
+Hash: 0e63f7261e62673ea3b38947c2a39fd9db130b5f5f6a331868887d540e142eb4
+Copyright:
+License:
+#Header:
+#@node csinhf
+#@section @code{csinhf}
+#@findex csinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csinhl.texi
+Hash: 6fbfd0066984d87f0912c9ecdb72a51d186bc09e5c6ba6ae1e28384af1cf5d31
+Copyright:
+License:
+#Header:
+#@node csinhl
+#@section @code{csinhl}
+#@findex csinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csinl.texi
+Hash: b007c3e190ebac0645cd770b5c59156ce9fefdd69d6efe8c4c63fb31f755e647
+Copyright:
+License:
+#Header:
+#@node csinl
+#@section @code{csinl}
+#@findex csinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csqrt.texi
+Hash: 674aaf134efc75885dbf3a74d1b636639cb36e0a4184887474a94ebf2c2117a5
+Copyright:
+License:
+#Header:
+#@node csqrt
+#@section @code{csqrt}
+#@findex csqrt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csqrt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csqrtf.texi
+Hash: dee3f07a84edad6fe1c9fc858ddddbfde40e931e0eba9cd6ed4f129ddccb0c32
+Copyright:
+License:
+#Header:
+#@node csqrtf
+#@section @code{csqrtf}
+#@findex csqrtf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csqrtf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/csqrtl.texi
+Hash: 6e5c675bdaa9c6de16b1437dee1a4578708ca2d94cad7ab22385916abcbf83e1
+Copyright:
+License:
+#Header:
+#@node csqrtl
+#@section @code{csqrtl}
+#@findex csqrtl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csqrtl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctan.texi
+Hash: b3788601cf4d71a0cd3e0f83b165f9556069a213808938b81f8762424ac4cde1
+Copyright:
+License:
+#Header:
+#@node ctan
+#@section @code{ctan}
+#@findex ctan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctanf.texi
+Hash: c6ade3600b8cb0d385042d424923b9aea79b8679bd9eb4572f88dbb02c6f7a90
+Copyright:
+License:
+#Header:
+#@node ctanf
+#@section @code{ctanf}
+#@findex ctanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctanh.texi
+Hash: bd520abfb5efe1fb710b0517325d5182e0545c9689b91778748c9412721b3620
+Copyright:
+License:
+#Header:
+#@node ctanh
+#@section @code{ctanh}
+#@findex ctanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctanhf.texi
+Hash: 3720fbb944a55cd90c0a1f0d77340b8cad30d78fe539987b1c69bd7413f11f76
+Copyright:
+License:
+#Header:
+#@node ctanhf
+#@section @code{ctanhf}
+#@findex ctanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctanhl.texi
+Hash: e113c1cf9ab21c84fa4c81d59985e973897534cc9e6665f558871d0cf03e73c6
+Copyright:
+License:
+#Header:
+#@node ctanhl
+#@section @code{ctanhl}
+#@findex ctanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctanl.texi
+Hash: c74871a8ab6020712b65b9fd9c94c489711ef5a70448492128fa827232d23241
+Copyright:
+License:
+#Header:
+#@node ctanl
+#@section @code{ctanl}
+#@findex ctanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctermid.texi
+Hash: 998eb7b4802db4cd5694a08d47f1fa146468dabeb663940c9a4cee7ea3eaf42b
+Copyright:
+License:
+#Header:
+#@node ctermid
+#@section @code{ctermid}
+#@findex ctermid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctermid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctime.texi
+Hash: 876f9405ee65afc513f57061e6dfec1fb9574bf891461ba945785c568bfcd824
+Copyright:
+License:
+#Header:
+#@node ctime
+#@section @code{ctime}
+#@findex ctime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ctime_r.texi
+Hash: f61cab990b7729cbfa70832fec62258bdb1525389b98ce8812758d43f48f7209
+Copyright:
+License:
+#Header:
+#@node ctime_r
+#@section @code{ctime_r}
+#@findex ctime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/daylight.texi
+Hash: 8d3098ea9ad8b8ef46605bc072c9331cbdea31642aadd1cba1c0b77dd2e26d05
+Copyright:
+License:
+#Header:
+#@node daylight
+#@section @code{daylight}
+#@findex daylight
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/daylight.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_clearerr.texi
+Hash: 404719a3ea24ab08a483c2d52fbc4ce115c9f62356a612c8d5b37c6d2f88d935
+Copyright:
+License:
+#Header:
+#@node dbm_clearerr
+#@section @code{dbm_clearerr}
+#@findex dbm_clearerr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_clearerr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_close.texi
+Hash: 6548f4878fe9cc6e0bc32b937fe1a6f124dc133cdccea8a9d5f35af09af63c2a
+Copyright:
+License:
+#Header:
+#@node dbm_close
+#@section @code{dbm_close}
+#@findex dbm_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_delete.texi
+Hash: 6fdb38f85cb8686811b1f8d621bce24ae42e425900e214548bdefa3cc6580296
+Copyright:
+License:
+#Header:
+#@node dbm_delete
+#@section @code{dbm_delete}
+#@findex dbm_delete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_delete.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_error.texi
+Hash: ba9684e442829d2cd936d0401e6c75a9ae5c98c09272748d6d193d4e8bdbccd6
+Copyright:
+License:
+#Header:
+#@node dbm_error
+#@section @code{dbm_error}
+#@findex dbm_error
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_error.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_fetch.texi
+Hash: 6d17b86b8c0819900bd8c5d9fe44d29e1107aae2add1a3e9439adaadab897c21
+Copyright:
+License:
+#Header:
+#@node dbm_fetch
+#@section @code{dbm_fetch}
+#@findex dbm_fetch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_fetch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_firstkey.texi
+Hash: 7c66943240b0604d0884c80187d2009341aa20acb5992586bce538c60250e1c1
+Copyright:
+License:
+#Header:
+#@node dbm_firstkey
+#@section @code{dbm_firstkey}
+#@findex dbm_firstkey
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_firstkey.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_nextkey.texi
+Hash: 907dd9d709bd00b11a2c1817ccf8cb6a99fa421dca171b04f45cb1fedebe38e1
+Copyright:
+License:
+#Header:
+#@node dbm_nextkey
+#@section @code{dbm_nextkey}
+#@findex dbm_nextkey
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_nextkey.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_open.texi
+Hash: 1cc347d0c6a0be9a8e6d9dec70c02c6d3dedab0fb0d7fa81da905fc8acb78849
+Copyright:
+License:
+#Header:
+#@node dbm_open
+#@section @code{dbm_open}
+#@findex dbm_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dbm_store.texi
+Hash: 9efc0b89e379c522dda1685b5f77dc8fe675d5322d86a80b109e1192448946e9
+Copyright:
+License:
+#Header:
+#@node dbm_store
+#@section @code{dbm_store}
+#@findex dbm_store
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_store.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/difftime.texi
+Hash: 84a0956c4c5dcddc035048c947ef6629a6e66095464de78530e27871000c15bb
+Copyright:
+License:
+#Header:
+#@node difftime
+#@section @code{difftime}
+#@findex difftime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/difftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/dirfd.texi
+Hash: 2bd7841ff2afa0a70d616b84e1906017373f51418bdd86ca173a04dff6f34705
+Copyright:
+License:
+#Header:
+#@node dirfd
+#@section @code{dirfd}
+#@findex dirfd
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dirfd.html}
+#
+#Gnulib module: dirfd
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, mingw.
+#@end itemize
+File: ./doc/posix-functions/dirname.texi
+Hash: f40d32a5b09a2d3082bd21b2dbefb29e49487fff0e58e65aebf7684001a2cccc
+Copyright:
+License:
+#Header:
+#@node dirname
+#@section @code{dirname}
+#@findex dirname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dirname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/div.texi
+Hash: 8abae0791655f93d6f27ab614e8aab52311af2f48ace39be233641eb023bbb54
+Copyright:
+License:
+#Header:
+#@node div
+#@section @code{div}
+#@findex div
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/div.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/dlclose.texi
+Hash: b7ad68ff89c49b30e1120badaca083df7a0212c4cd958724d2ea503699839ec8
+Copyright:
+License:
+#Header:
+#@node dlclose
+#@section @code{dlclose}
+#@findex dlclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlclose.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dlerror.texi
+Hash: 18aa8e729144b1c85ed453e1836cfdcb36a51e27948f9be843a8fc5052273686
+Copyright:
+License:
+#Header:
+#@node dlerror
+#@section @code{dlerror}
+#@findex dlerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlerror.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dlopen.texi
+Hash: 4c4b9aafdfdb94ad9522183dcc6e15ea6612ec8878d2cddc263b0c8fd1e525b0
+Copyright:
+License:
+#Header:
+#@node dlopen
+#@section @code{dlopen}
+#@findex dlopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dlsym.texi
+Hash: dd6299cfe6e25b4ebdd8c529c1830ec00c5aabce68fe16f83a0fad14d0266a6e
+Copyright:
+License:
+#Header:
+#@node dlsym
+#@section @code{dlsym}
+#@findex dlsym
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlsym.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dprintf.texi
+Hash: 4751b081c02483b01d9b3b4340023c6f72f038c6686acaf54e22c02946547333
+Copyright:
+License:
+#Header:
+#@node dprintf
+#@section @code{dprintf}
+#@findex dprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dprintf.html}
+#
+#Gnulib module: dprintf or dprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{dprintf} or @code{dprintf-posix}:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#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.
+#@end itemize
+File: ./doc/posix-functions/drand48.texi
+Hash: a1f797c389c3e5ec0aa1eb2c68a1c83aed789fe57d9bd614926f905fcd89e020
+Copyright:
+License:
+#Header:
+#@node drand48
+#@section @code{drand48}
+#@findex drand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/drand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/dup.texi
+Hash: b84bc5f93c7ef614338e0acaea061c144c4db4bef66e45640957a5f7d68ac292
+Copyright:
+License:
+#Header:
+#@node dup
+#@section @code{dup}
+#@findex dup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dup.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/dup2.texi
+Hash: 6828543830165fe771f033b863d748a69fe320dbeca8ddff166cb1cf61f4f12e
+Copyright:
+License:
+#Header:
+#@node dup2
+#@section @code{dup2}
+#@findex dup2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dup2.html}
+#
+#Gnulib module: dup2
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function always returns 0 for success on some platforms:
+#mingw.
+#
+#@item
+File: ./doc/posix-functions/duplocale.texi
+Hash: 710286021da197a56a6ff757ea4b40eb32315d8cdd124b218fde41b477292cce
+Copyright:
+License:
+#Header:
+#@node duplocale
+#@section @code{duplocale}
+#@findex duplocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/duplocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/encrypt.texi
+Hash: ffff0c779c125a709762efbe2bbaf866da55f9ae8393e65bc5091fc7fa271658
+Copyright:
+License:
+#Header:
+#@node encrypt
+#@section @code{encrypt}
+#@findex encrypt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/encrypt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/endgrent.texi
+Hash: 4e04d52da59c5b86120124d10eaead06c5d849601c0086f6f9c834b8b2e49c62
+Copyright:
+License:
+#Header:
+#@node endgrent
+#@section @code{endgrent}
+#@findex endgrent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endgrent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/endhostent.texi
+Hash: d4743bbdeecf932ce5f921a9697664b6e546fdc0ff5c1d0ce2bef461801ad3fe
+Copyright:
+License:
+#Header:
+#@node endhostent
+#@section @code{endhostent}
+#@findex endhostent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endhostent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/endnetent.texi
+Hash: 35901299f3d5b96b44b5eb948d7487f22459c03c4727060ee906472a4e312adc
+Copyright:
+License:
+#Header:
+#@node endnetent
+#@section @code{endnetent}
+#@findex endnetent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endnetent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/endprotoent.texi
+Hash: 9c3786c66c5d21c3c66fd8549c52c7e49d0d62e009874b2b7a793b928e1af183
+Copyright:
+License:
+#Header:
+#@node endprotoent
+#@section @code{endprotoent}
+#@findex endprotoent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endprotoent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/endpwent.texi
+Hash: af0fe91d02a2753ca91f54afaf844c3707ced1d9be084ccac9e8cefb9ebe1b31
+Copyright:
+License:
+#Header:
+#@node endpwent
+#@section @code{endpwent}
+#@findex endpwent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endpwent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/endservent.texi
+Hash: c85845c73056fb697ef3ae552c71cfdaccae39eb7773d0cc29e3bcd1e79c0ce2
+Copyright:
+License:
+#Header:
+#@node endservent
+#@section @code{endservent}
+#@findex endservent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endservent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/endutxent.texi
+Hash: bb8a45f95293fa56ec75b28457798dd1b02c7b3182b15f58c4248cf7481d9e58
+Copyright:
+License:
+#Header:
+#@node endutxent
+#@section @code{endutxent}
+#@findex endutxent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endutxent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/environ.texi
+Hash: e747cca924afc1250dbc590720b67ba9544e2a9cb2f94e82589b313e6a879de5
+Copyright:
+License:
+#Header:
+#@node environ
+#@section @code{environ}
+#@findex environ
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/environ.html}
+#
+#Gnulib module: environ
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#POSIX does not require this variable to be declared, and it is indeed not
+#declared on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10.
+#@item
+File: ./doc/posix-functions/erand48.texi
+Hash: 9fc0f6ee76cd0df9c17bdfe1476a1988701d217815345d2e0c0b6c16a2f896ff
+Copyright:
+License:
+#Header:
+#@node erand48
+#@section @code{erand48}
+#@findex erand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/erf.texi
+Hash: 6a0bddafde57341e89aedc7b0c94be4d959ef1d17041a2ad94edd14eee8dd3aa
+Copyright:
+License:
+#Header:
+#@node erf
+#@section @code{erf}
+#@findex erf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/erfc.texi
+Hash: f7444fc988cc99e0fd5446db910fd6d7afcfa0c6d4af7f69a14279b5ab8764f7
+Copyright:
+License:
+#Header:
+#@node erfc
+#@section @code{erfc}
+#@findex erfc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/erfcf.texi
+Hash: c7f88297596ece737d50e1ad13f8c91e74a1b527820e1af073e08acf85db5ae0
+Copyright:
+License:
+#Header:
+#@node erfcf
+#@section @code{erfcf}
+#@findex erfcf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfcf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/erfcl.texi
+Hash: 8ff05f100bfca3045397b764329527a06a324242fe3e7fb12e7ad7017e0a6415
+Copyright:
+License:
+#Header:
+#@node erfcl
+#@section @code{erfcl}
+#@findex erfcl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfcl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/erff.texi
+Hash: 94bddf50aa84764165cf1b5515a0d4822d31a78191c2fc058ad8dd11d6b87538
+Copyright:
+License:
+#Header:
+#@node erff
+#@section @code{erff}
+#@findex erff
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erff.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/erfl.texi
+Hash: b9cea5650518bc063a5f516d263389c127b354ee95a6a244f63c139ee4aff932
+Copyright:
+License:
+#Header:
+#@node erfl
+#@section @code{erfl}
+#@findex erfl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/errno.texi
+Hash: c0bff9e535b487ea1482ae7839b2e0beb289bcec626771844faf76f21a3b2333
+Copyright:
+License:
+#Header:
+#@node errno
+#@section @code{errno}
+#@findex errno
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/errno.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/execl.texi
+Hash: c6c83a0078524e270da3abf8c26bcc630b35e6fb919dfe39752ea97d562d72f8
+Copyright:
+License:
+#Header:
+#@node execl
+#@section @code{execl}
+#@findex execl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/execle.texi
+Hash: 07664367ccaccf55659cf34f6b7129c7f3f581aa26ce635c1ab013412e05ae45
+Copyright:
+License:
+#Header:
+#@node execle
+#@section @code{execle}
+#@findex execle
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execle.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/execlp.texi
+Hash: ab00274de528810efb9aceee886685a863f27112315256f0480c1a4d8843371d
+Copyright:
+License:
+#Header:
+#@node execlp
+#@section @code{execlp}
+#@findex execlp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execlp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/execv.texi
+Hash: e883433082ab1ac2be9bdf46989b074da82660c56db5ea58500bc26598ac89f1
+Copyright:
+License:
+#Header:
+#@node execv
+#@section @code{execv}
+#@findex execv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/execve.texi
+Hash: 24209843e836bcdf1137fd665736c2818b4315e9b506a39bb714d91e998bafcd
+Copyright:
+License:
+#Header:
+#@node execve
+#@section @code{execve}
+#@findex execve
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execve.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/execvp.texi
+Hash: 289494b8493d01c6d99eab7016f77c2ab1571db2ceee8a9b02c5c901d7a056fc
+Copyright:
+License:
+#Header:
+#@node execvp
+#@section @code{execvp}
+#@findex execvp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execvp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/exit.texi
+Hash: bad61c12c0e3e5dfabfd90405e72e5dd828138ca2d2e5261ade25edfd7c97bc8
+Copyright:
+License:
+#Header:
+#@node exit
+#@section @code{exit}
+#@findex exit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exit.html}
+#
+#Gnulib module: exit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some problems with the macros @code{EXIT_SUCCESS} and @code{EXIT_FAILURE},
+#see @ref{stdlib.h}.
+#@end itemize
+File: ./doc/posix-functions/exp.texi
+Hash: a1022846973af4a29037736d84104cc89ce1379a01df12b468890ef0474e0419
+Copyright:
+License:
+#Header:
+#@node exp
+#@section @code{exp}
+#@findex exp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/exp2.texi
+Hash: 8c017fc45146c3df6aea1366497a258bc3a4db0644f0bef6bacda5f4e4833266
+Copyright:
+License:
+#Header:
+#@node exp2
+#@section @code{exp2}
+#@findex exp2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp2.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/exp2f.texi
+Hash: 6f2524530958b637f54013d885de946b49bc5b79b6d465436e1e03dcf1952f6c
+Copyright:
+License:
+#Header:
+#@node exp2f
+#@section @code{exp2f}
+#@findex exp2f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp2f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/exp2l.texi
+Hash: 7ef33c7a723390ab01411dcd5c5441a11362046a9e8b31ef68bbe4a4dc06a7a3
+Copyright:
+License:
+#Header:
+#@node exp2l
+#@section @code{exp2l}
+#@findex exp2l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp2l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/expf.texi
+Hash: 0b478085209dd93a9db5bbce385735bd59753036228a6dc21cdc955d74d5fcd7
+Copyright:
+License:
+#Header:
+#@node expf
+#@section @code{expf}
+#@findex expf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/expl.texi
+Hash: 72311a84d89f58e68fbec7f6fc2c9b9920c27de99832dc73a3424377bf28db52
+Copyright:
+License:
+#Header:
+#@node expl
+#@section @code{expl}
+#@findex expl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/expm1.texi
+Hash: 0a4624e622e7d4e617219004a6095aaa748dd6ec2dcaaf7133518448b81be4a8
+Copyright:
+License:
+#Header:
+#@node expm1
+#@section @code{expm1}
+#@findex expm1
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expm1.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/expm1f.texi
+Hash: 6602aa751036b237ea9fc139d16405892a01d4d4738974a93671e2b24ece70a9
+Copyright:
+License:
+#Header:
+#@node expm1f
+#@section @code{expm1f}
+#@findex expm1f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expm1f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/expm1l.texi
+Hash: 0107f0369e91579efd87610be8b2b738b16b1b95378d3588ec286cde144d0c42
+Copyright:
+License:
+#Header:
+#@node expm1l
+#@section @code{expm1l}
+#@findex expm1l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expm1l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fabs.texi
+Hash: c612c588a2cfffd96be4f47419e7ef786861c356100cc27616f21cbe5723eccb
+Copyright:
+License:
+#Header:
+#@node fabs
+#@section @code{fabs}
+#@findex fabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fabs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/fabsf.texi
+Hash: ea51158ca0b73c832f1bcbede534dabd7771f99529353e24ca24569a90965703
+Copyright:
+License:
+#Header:
+#@node fabsf
+#@section @code{fabsf}
+#@findex fabsf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fabsf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fabsl.texi
+Hash: d651616c3fb582db805e35c045e9bb8d0f0529f3aef35e96ff269fff414acae7
+Copyright:
+License:
+#Header:
+#@node fabsl
+#@section @code{fabsl}
+#@findex fabsl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fabsl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/faccessat.texi
+Hash: 0a8c43215d15ff69db0e57a500af9439c420b21c2ee4cc491931e601edb3f308
+Copyright:
+License:
+#Header:
+#@node faccessat
+#@section @code{faccessat}
+#@findex faccessat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/faccessat.html}
+#
+#Gnulib module: faccessat
+#
+#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/fattach.texi
+Hash: 2335deee0d43aa46c1c3503f7feae75c7c142c535296827a8e6e183b18a7e756
+Copyright:
+License:
+#Header:
+#@node fattach
+#@section @code{fattach}
+#@findex fattach
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fattach.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fchdir.texi
+Hash: 8f0f8b4111a6a4dc2945e10940df05e54955ad67de944cb7c9fc3fd965ddcb61
+Copyright:
+License:
+#Header:
+#@node fchdir
+#@section @code{fchdir}
+#@findex fchdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchdir.html}
+#
+#Gnulib module: fchdir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Tandem/NSK, mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/fchmod.texi
+Hash: 9bfcb2e4f0142676a15392cad61a13121966364ba601e3e45ba4df6a4fddb283
+Copyright:
+License:
+#Header:
+#@node fchmod
+#@section @code{fchmod}
+#@findex fchmod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchmod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fchmodat.texi
+Hash: 791d16ea744eadb81ceffa282aeedc529ee1432f726b782ba507c62a330259d1
+Copyright:
+License:
+#Header:
+#@node fchmodat
+#@section @code{fchmodat}
+#@findex fchmodat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchmodat.html}
+#
+#Gnulib module: openat
+#
+#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.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+File: ./doc/posix-functions/fchown.texi
+Hash: 3f8e50fb78c4ca01b3c9d74c32d562d9309038b0aaf2a7ee22ddea159be69c5b
+Copyright:
+License:
+#Header:
+#@node fchown
+#@section @code{fchown}
+#@findex fchown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchown.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fchownat.texi
+Hash: e17fc8eff75380638ff191900612065d2fc77e8926e59ca860c6faad743650ef
+Copyright:
+License:
+#Header:
+#@node fchownat
+#@section @code{fchownat}
+#@findex fchownat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchownat.html}
+#
+#Gnulib module: openat
+#
+#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, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+File: ./doc/posix-functions/fclose.texi
+Hash: b68bb8ad4e081e12205b3f7dcfa105c005cbe8fdb312880af5d87be355525e9f
+Copyright:
+License:
+#Header:
+#@node fclose
+#@section @code{fclose}
+#@findex fclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fclose.html}
+#
+#Gnulib module: fclose
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{socket} and @code{accept}
+#followed by @code{fdopen} do not return streams that can be closed by
+#@code{fclose}.
+#@end itemize
+File: ./doc/posix-functions/fcntl.texi
+Hash: 17f3caf36d2c2f9a664acd0c737de34d5a64c6e6bdc186f325ca6867222adccf
+Copyright:
+License:
+#Header:
+#@node fcntl
+#@section @code{fcntl}
+#@findex fcntl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fcntl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fdatasync.texi
+Hash: 57f7709061810bd5896998adeb9f3d2fe72380a7f2dc09bded617489700ef2f2
+Copyright:
+License:
+#Header:
+#@node fdatasync
+#@section @code{fdatasync}
+#@findex fdatasync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fdetach.texi
+Hash: fd54a027b23acd7d79f8f796360b31949be6d6d99d77a21ee56cb0aefd2f4208
+Copyright:
+License:
+#Header:
+#@node fdetach
+#@section @code{fdetach}
+#@findex fdetach
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdetach.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fdim.texi
+Hash: 387bce6ebad92e5ef48ffe946c26a2a42310baa9c69a47d7ff020f61b698899a
+Copyright:
+License:
+#Header:
+#@node fdim
+#@section @code{fdim}
+#@findex fdim
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdim.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fdimf.texi
+Hash: 04e0f917203a56effba8c34a4541f6bc2a107f6d09b70e51af95a6473320fa02
+Copyright:
+License:
+#Header:
+#@node fdimf
+#@section @code{fdimf}
+#@findex fdimf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdimf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fdiml.texi
+Hash: e4ab81e086d8a6b6633e26501eb964e8c5f9de428edd84b106ce690f7c8637c3
+Copyright:
+License:
+#Header:
+#@node fdiml
+#@section @code{fdiml}
+#@findex fdiml
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdiml.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fdopen.texi
+Hash: e763566373aec112a9e84b961c32faf690c517c3db12d6eb5a6f839f42b765d9
+Copyright:
+License:
+#Header:
+#@node fdopen
+#@section @code{fdopen}
+#@findex fdopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fdopendir.texi
+Hash: 77c4e1f653c030b8389397c264b670095f530d9a4f131679c1db06dff8143cca
+Copyright:
+License:
+#Header:
+#@node fdopendir
+#@section @code{fdopendir}
+#@findex fdopendir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdopendir.html}
+#
+#Gnulib module: fdopendir
+#
+#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, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and
+File: ./doc/posix-functions/feclearexcept.texi
+Hash: b982ba6aeaedabf3354982f022c731c771f3cd82f055f6f59d666a8f1a57bcaf
+Copyright:
+License:
+#Header:
+#@node feclearexcept
+#@section @code{feclearexcept}
+#@findex feclearexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feclearexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fegetenv.texi
+Hash: 0899bacdfa0523a69893c4968ba4889363c79409c45e55c3ea8782351e3f9e16
+Copyright:
+License:
+#Header:
+#@node fegetenv
+#@section @code{fegetenv}
+#@findex fegetenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fegetenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fegetexceptflag.texi
+Hash: 34c0d1502982592c37c0e902a639dbc3ae01546f3c93ce70ca9f8c7d17e38156
+Copyright:
+License:
+#Header:
+#@node fegetexceptflag
+#@section @code{fegetexceptflag}
+#@findex fegetexceptflag
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fegetexceptflag.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fegetround.texi
+Hash: bcd175725d7173502ca62d3e7f40a23565add2e0d8a50f5e6b31d622a2f7c834
+Copyright:
+License:
+#Header:
+#@node fegetround
+#@section @code{fegetround}
+#@findex fegetround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fegetround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/feholdexcept.texi
+Hash: 6a8976e6ff7285ec392afbd6d41c13756842fb99c799645ae85ce5c536aa1757
+Copyright:
+License:
+#Header:
+#@node feholdexcept
+#@section @code{feholdexcept}
+#@findex feholdexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feholdexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/feof.texi
+Hash: 20663c1a2fa66678f13880eea8ab1c99980cdef004bdb5e2cb5f182a0654cbe1
+Copyright:
+License:
+#Header:
+#@node feof
+#@section @code{feof}
+#@findex feof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/feraiseexcept.texi
+Hash: 752c504ac8b81d058b11051349d0b2e4291fcc1c488ea6f29fdd111c97ce4ffb
+Copyright:
+License:
+#Header:
+#@node feraiseexcept
+#@section @code{feraiseexcept}
+#@findex feraiseexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feraiseexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ferror.texi
+Hash: 2cc317e89975e266a5d297a47d3cb2a9a147d5b82f9199535182f440b9008a81
+Copyright:
+License:
+#Header:
+#@node ferror
+#@section @code{ferror}
+#@findex ferror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ferror.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/fesetenv.texi
+Hash: 3d2f6a1d8b2e5939ba3ebdde32deb42cf59eb78c27ffbc6387f7c4e149d35097
+Copyright:
+License:
+#Header:
+#@node fesetenv
+#@section @code{fesetenv}
+#@findex fesetenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fesetenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fesetexceptflag.texi
+Hash: 97552023ee289a5ff8e84e60b3520a19fb0f9a4874de3c470657f10b0c6a8068
+Copyright:
+License:
+#Header:
+#@node fesetexceptflag
+#@section @code{fesetexceptflag}
+#@findex fesetexceptflag
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fesetexceptflag.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fesetround.texi
+Hash: 39499b13852e55ef8009ae3db5a7aebad2afc986a40f26b7c48c151b9e86fc24
+Copyright:
+License:
+#Header:
+#@node fesetround
+#@section @code{fesetround}
+#@findex fesetround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fesetround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fetestexcept.texi
+Hash: 4eac9c618c477726e112f8b26dbb7d2d4397be157969de91943c43742a390550
+Copyright:
+License:
+#Header:
+#@node fetestexcept
+#@section @code{fetestexcept}
+#@findex fetestexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fetestexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/feupdateenv.texi
+Hash: 8b153cba36a94a6c2b66f6e421ecd4e2b9a46036392e2210785970e6ab34b8e8
+Copyright:
+License:
+#Header:
+#@node feupdateenv
+#@section @code{feupdateenv}
+#@findex feupdateenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feupdateenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fexecve.texi
+Hash: df29f2ca7c01d154444462d530e082f939e3151a011ef347587deb8f25a3690d
+Copyright:
+License:
+#Header:
+#@node fexecve
+#@section @code{fexecve}
+#@findex fexecve
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fexecve.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fflush.texi
+Hash: 9bcd03018a5e64e321e5da36fc16b1ac1c3247e6e8ffda3d7339b1d1e9fe8294
+Copyright:
+License:
+#Header:
+#@node fflush
+#@section @code{fflush}
+#@findex fflush
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fflush.html}
+#
+#Gnulib module: fflush
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{fflush} followed by @code{fseek} or @code{fseeko}, applied to an input
+#stream, should have the effect of positioning the underlying file descriptor.
+#It doesn't do this on some platforms.
+#@item
+File: ./doc/posix-functions/ffs.texi
+Hash: 21aa35d4426a78734a84676cb0d454c75acee469c9ffd615a5fbb9de9daa1a42
+Copyright:
+License:
+#Header:
+#@node ffs
+#@section @code{ffs}
+#@findex ffs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ffs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fgetc.texi
+Hash: e7c425a41e66d08ffac2b8d0222bf45baf73e2f9459b8795691411c4b5357659
+Copyright:
+License:
+#Header:
+#@node fgetc
+#@section @code{fgetc}
+#@findex fgetc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fgetpos.texi
+Hash: 275859ced43d62e5be3273f8c7c7fa9442de1b8d1287714892e23f0087f467f9
+Copyright:
+License:
+#Header:
+#@node fgetpos
+#@section @code{fgetpos}
+#@findex fgetpos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetpos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fgets.texi
+Hash: 71414045cbbe67d9efb6b83bce606a8de25b97f9e08980d09d10444db31a02a7
+Copyright:
+License:
+#Header:
+#@node fgets
+#@section @code{fgets}
+#@findex fgets
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgets.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fgetwc.texi
+Hash: a603a66a1e031dd3727b3b379a537e32014c54e932b01846b26200af8510ea94
+Copyright:
+License:
+#Header:
+#@node fgetwc
+#@section @code{fgetwc}
+#@findex fgetwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fgetws.texi
+Hash: e396ca7cb9c9423e66bacf0c7e4aa69ff7b814a1bd5ebb0e6810220b55a68bb8
+Copyright:
+License:
+#Header:
+#@node fgetws
+#@section @code{fgetws}
+#@findex fgetws
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetws.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fileno.texi
+Hash: abc9e47b66277f9ba067894c61eef516a4cd6da18b0bd79671f5117ad7a9e37b
+Copyright:
+License:
+#Header:
+#@node fileno
+#@section @code{fileno}
+#@findex fileno
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fileno.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/flockfile.texi
+Hash: ef8a277424e6a1aba4db3cfc8341fb0ce9acf254adb5691c66986e3462484cb4
+Copyright:
+License:
+#Header:
+#@node flockfile
+#@section @code{flockfile}
+#@findex flockfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/flockfile.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/floor.texi
+Hash: b07bf778811aac7f3e96a3af59c18dec2a8944c6a6b30082ff2eb0f6eebcd70d
+Copyright:
+License:
+#Header:
+#@node floor
+#@section @code{floor}
+#@findex floor
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/floor.html}
+#
+#Gnulib module: floor
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/floorf.texi
+Hash: ec2e982ab48eb54039f21f74d449bbd932bf6ce341f44ed67443841fafb99517
+Copyright:
+License:
+#Header:
+#@node floorf
+#@section @code{floorf}
+#@findex floorf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/floorf.html}
+#
+#Gnulib module: floorf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, Solaris 9.
+#@end itemize
+File: ./doc/posix-functions/floorl.texi
+Hash: 4bd7c2e91d448d223f565886a273c53f07df96dce012d7afb8057de24dcbaf29
+Copyright:
+License:
+#Header:
+#@node floorl
+#@section @code{floorl}
+#@findex floorl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/floorl.html}
+#
+#Gnulib module: floorl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/fma.texi
+Hash: e7afe0eb9016dee7ae95382952e183234e3d4e632950f62cde0cda8b3458feca
+Copyright:
+License:
+#Header:
+#@node fma
+#@section @code{fma}
+#@findex fma
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fma.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmaf.texi
+Hash: 92a275d7d2e32246725903039974adea241feae8587da17c6161230d307e4f8a
+Copyright:
+License:
+#Header:
+#@node fmaf
+#@section @code{fmaf}
+#@findex fmaf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmaf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmal.texi
+Hash: d26907c96ceae9a7551c6a50ae32adddf5657735ec64d5ff3bc23301a1bc9440
+Copyright:
+License:
+#Header:
+#@node fmal
+#@section @code{fmal}
+#@findex fmal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmax.texi
+Hash: a45b7a4dd49c6ccb1d51374c51a37958f64f965be332e874b741671f00c6a2c7
+Copyright:
+License:
+#Header:
+#@node fmax
+#@section @code{fmax}
+#@findex fmax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmax.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmaxf.texi
+Hash: cc63ffb93e596bd2d86d82f3b3dd04626cc8683c8e919dc1f1868b6e8b549335
+Copyright:
+License:
+#Header:
+#@node fmaxf
+#@section @code{fmaxf}
+#@findex fmaxf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmaxf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmaxl.texi
+Hash: f3a58f157499f078945af3bea4bdf315a104abb54df51e7b12dca522da70eba9
+Copyright:
+License:
+#Header:
+#@node fmaxl
+#@section @code{fmaxl}
+#@findex fmaxl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmaxl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmemopen.texi
+Hash: 977725664c869f310611befaeafecddca0a4595deb9aa92b1e5edf38854a527d
+Copyright:
+License:
+#Header:
+#@node fmemopen
+#@section @code{fmemopen}
+#@findex fmemopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmemopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmin.texi
+Hash: 00763f301200d7eac7d4ebc557feaf0901bc2efa0a1d7ed5b91dc3fa0edd8841
+Copyright:
+License:
+#Header:
+#@node fmin
+#@section @code{fmin}
+#@findex fmin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fminf.texi
+Hash: 3755886d1bb03aaec9755b2c34e4972ef0c8387c82b056d527b1afc61a5f0fb2
+Copyright:
+License:
+#Header:
+#@node fminf
+#@section @code{fminf}
+#@findex fminf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fminf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fminl.texi
+Hash: b5a0cc5a37fd46620b53cde5c2657ad4095f85f712ff3f0f414c4692a98489bf
+Copyright:
+License:
+#Header:
+#@node fminl
+#@section @code{fminl}
+#@findex fminl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fminl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmod.texi
+Hash: 5862ec5b61a832641dde66acb7eb859b7407994f7624cb83001e4e5411877b24
+Copyright:
+License:
+#Header:
+#@node fmod
+#@section @code{fmod}
+#@findex fmod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/fmodf.texi
+Hash: be9fb731e931317464eaadfa409ac9ba5fac8cf6f488f1dca04dfb25f4a87c9e
+Copyright:
+License:
+#Header:
+#@node fmodf
+#@section @code{fmodf}
+#@findex fmodf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmodf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmodl.texi
+Hash: da2bd3cfd9d33b8218d82300d5863a329002ab59ee62c591df043c7cbc3e2bf5
+Copyright:
+License:
+#Header:
+#@node fmodl
+#@section @code{fmodl}
+#@findex fmodl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmodl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fmtmsg.texi
+Hash: cda2c53b8e96e2e813629d5a07ee3ec6bae5dae9835cd30bfb79b5a6cd9809ea
+Copyright:
+License:
+#Header:
+#@node fmtmsg
+#@section @code{fmtmsg}
+#@findex fmtmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmtmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fnmatch.texi
+Hash: 4be762a04e97a3e099e16422bcdf9db17a4385c25e71916c2dc8620cce12c689
+Copyright:
+License:
+#Header:
+#@node fnmatch
+#@section @code{fnmatch}
+#@findex fnmatch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html}
+#
+#Gnulib module: fnmatch or fnmatch-gnu
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw.
+#@item
+#This function is broken in some versions of Solaris and glibc.
+File: ./doc/posix-functions/fopen.texi
+Hash: cb37df82cdfc62d799a6208a0cb896815c99a21aa72e61ee66add9794bc0caef
+Copyright:
+License:
+#Header:
+#@node fopen
+#@section @code{fopen}
+#@findex fopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fopen.html}
+#
+#Gnulib module: fopen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not fail when the file name argument ends in a slash
+#and (without the slash) names a nonexistent file or a file that is not a
+#directory, on some platforms:
+#HP-UX 11.00, Solaris 9, Irix 5.3.
+File: ./doc/posix-functions/fork.texi
+Hash: 47e401050fdd39055e37b7942ecf9e6acc2dd1b0ba893ca9efce7fbe07512f26
+Copyright:
+License:
+#Header:
+#@node fork
+#@section @code{fork}
+#@findex fork
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fork.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fpathconf.texi
+Hash: dc753382cbb40d381330cae488511d20499ac593648fdea05451978ec6236e18
+Copyright:
+License:
+#Header:
+#@node fpathconf
+#@section @code{fpathconf}
+#@findex fpathconf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fpathconf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fpclassify.texi
+Hash: 4f9658ae83ffe86a91686e050b951b3a779cff3a3d113b99a8d567580a71ce2e
+Copyright:
+License:
+#Header:
+#@node fpclassify
+#@section @code{fpclassify}
+#@findex fpclassify
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fpclassify.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fprintf.texi
+Hash: b9f426d7699941849d81c004ea41301049efff02e408a1dab1b04c5a33c2e1f5
+Copyright:
+License:
+#Header:
+#@node fprintf
+#@section @code{fprintf}
+#@findex fprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fprintf.html}
+#
+#Gnulib module: fprintf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{fprintf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+File: ./doc/posix-functions/fputc.texi
+Hash: b13cd308b550d7216762f444ad5ff6437fab475480073a7c372b42c0414e9568
+Copyright:
+License:
+#Header:
+#@node fputc
+#@section @code{fputc}
+#@findex fputc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputc.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/fputs.texi
+Hash: f443e76ec0801cf0481eb89de8e604d424c93acc535cceb7a11050b2d602d617
+Copyright:
+License:
+#Header:
+#@node fputs
+#@section @code{fputs}
+#@findex fputs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputs.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/fputwc.texi
+Hash: c69261284cad8a715adc606ac68ce522bfd1a94849d795d8289febf07cdad00e
+Copyright:
+License:
+#Header:
+#@node fputwc
+#@section @code{fputwc}
+#@findex fputwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fputws.texi
+Hash: a0056c49a80a1aa877213437ddd4cb5955ac2c462fa78f053a4c3a6f3782d334
+Copyright:
+License:
+#Header:
+#@node fputws
+#@section @code{fputws}
+#@findex fputws
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputws.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fread.texi
+Hash: 203ffb455bb4140455e841f5fae6f63fea6055043808d00adafcc88b630cb01f
+Copyright:
+License:
+#Header:
+#@node fread
+#@section @code{fread}
+#@findex fread
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fread.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/free.texi
+Hash: 5d242e3032ca93238450312616b0835cee0d16bdd29424c0a5b8d9e265e306b0
+Copyright:
+License:
+#Header:
+#@node free
+#@section @code{free}
+#@findex free
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/free.html}
+#
+#Gnulib module: free
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On old platforms such as SunOS4, @code{free (NULL)} fails.
+#However, since all such systems are so old as to no longer
+#be considered ``reasonable portability targets,''
+#this module is no longer useful.
+File: ./doc/posix-functions/freeaddrinfo.texi
+Hash: 2a85ac5773ce37228a9b001b2f6102d2ccb5ee712dc6a104372a3caa7add64a3
+Copyright:
+License:
+#Header:
+#@node freeaddrinfo
+#@section @code{freeaddrinfo}
+#@findex freeaddrinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/freeaddrinfo.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/freelocale.texi
+Hash: 8776a23dd2eca0e57d0e59149570dc4afb924e23c11ae4ac4d8e9119ef78334a
+Copyright:
+License:
+#Header:
+#@node freelocale
+#@section @code{freelocale}
+#@findex freelocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/freelocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/freopen.texi
+Hash: c5b8bff1922535abcc1fec969516b476b349e17b5f65b47484da8bfe7f3f823c
+Copyright:
+License:
+#Header:
+#@node freopen
+#@section @code{freopen}
+#@findex freopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/freopen.html}
+#
+#Gnulib module: freopen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), this function does usually not
+#recognize the @file{/dev/null} filename.
+#@end itemize
+File: ./doc/posix-functions/frexp.texi
+Hash: 692f49020a87b80d1037790d020971803bc0afebe14c158150a4e52031487353
+Copyright:
+License:
+#Header:
+#@node frexp
+#@section @code{frexp}
+#@findex frexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/frexp.html}
+#
+#Gnulib module: frexp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not work on denormalized numbers on some platforms:
+#NetBSD 3.0.
+#@item
+#This function does not work on negative zero on some platforms:
+File: ./doc/posix-functions/frexpf.texi
+Hash: 331ce16fc8e4dc1d4b90dd42bc5e7ccb13e6190ee4286fb3fe9e4b6e78dc5bd6
+Copyright:
+License:
+#Header:
+#@node frexpf
+#@section @code{frexpf}
+#@findex frexpf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/frexpf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/frexpl.texi
+Hash: 2b05d97865d15965f7eaaf726466ca7938f8aa8a4fb5c3074b88296c6175fd8e
+Copyright:
+License:
+#Header:
+#@node frexpl
+#@section @code{frexpl}
+#@findex frexpl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/frexpl.html}
+#
+#Gnulib module: frexpl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5.
+#@item
+#This function does not work on finite numbers on some platforms:
+File: ./doc/posix-functions/fscanf.texi
+Hash: c6cbb6eb2da370d053d700306d3f3d2fced6edb533846ce87c3eecd9f5b64d05
+Copyright:
+License:
+#Header:
+#@node fscanf
+#@section @code{fscanf}
+#@findex fscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fseek.texi
+Hash: 44d940d7b3f70696e57564a133ec06b608f75eb80f823893cc8d791cf20858f4
+Copyright:
+License:
+#Header:
+#@node fseek
+#@section @code{fseek}
+#@findex fseek
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fseek.html}
+#
+#Gnulib module: fseek
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function mistakenly succeeds on pipes on some platforms: mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/fseeko.texi
+Hash: fce7c54e29aecbe63e018aa87b29db3cdc06947fed30a56dfdbb75ecffccfd68
+Copyright:
+License:
+#Header:
+#@node fseeko
+#@section @code{fseeko}
+#@findex fseeko
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fseeko.html}
+#
+#Gnulib module: fseeko
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1, mingw.
+#@item
+#The declaration of @code{fseeko} in @code{<stdio.h>} is not enabled by default
+File: ./doc/posix-functions/fsetpos.texi
+Hash: 406badc26cb637f4a19da664e003024401fc353dff4fd1b141a6d824183d2d7a
+Copyright:
+License:
+#Header:
+#@node fsetpos
+#@section @code{fsetpos}
+#@findex fsetpos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fsetpos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/fstat.texi
+Hash: 029d0fe3f92d95173e6f28cccdbe2fe0ea1ab1e62cda2da6da2602071242e5c3
+Copyright:
+License:
+#Header:
+#@node fstat
+#@section @code{fstat}
+#@findex fstat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fstat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fstatat.texi
+Hash: b452283c1ad4c7f6620b47e705c065d8ec9f7d7311e26521d50d978dde098b0c
+Copyright:
+License:
+#Header:
+#@node fstatat
+#@section @code{fstatat}
+#@findex fstatat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fstatat.html}
+#
+#Gnulib module: openat
+#
+#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, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+File: ./doc/posix-functions/fstatvfs.texi
+Hash: ea42e0f03ea940ad7488f661925d44bc715e874caff49d8cf4c755fb3afb9a0a
+Copyright:
+License:
+#Header:
+#@node fstatvfs
+#@section @code{fstatvfs}
+#@findex fstatvfs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fstatvfs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fsync.texi
+Hash: 8bf1bac4285f032b09e4f9c7087f3af31e559b5f52eca758141cbb391f5ac608
+Copyright:
+License:
+#Header:
+#@node fsync
+#@section @code{fsync}
+#@findex fsync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fsync.html}
+#
+#Gnulib module: fsync
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/ftell.texi
+Hash: 7a09c5de0c501bb7cdeb65cf20f5582009c8ff539b59a7c5fee036acd65c1a78
+Copyright:
+License:
+#Header:
+#@node ftell
+#@section @code{ftell}
+#@findex ftell
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftell.html}
+#
+#Gnulib module: ftell
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function mistakenly succeeds on pipes on some platforms: mingw.
+#@item
+#This function produces incorrect results immediately after @code{fseek} on some
+#platforms:
+File: ./doc/posix-functions/ftello.texi
+Hash: 37cf02f3716a62b6bba4c06fcadb95b4edf7b6cc034cd29b5b4a9b90ae04ac54
+Copyright:
+License:
+#Header:
+#@node ftello
+#@section @code{ftello}
+#@findex ftello
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftello.html}
+#
+#Gnulib module: ftello
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1, mingw.
+#@item
+#The declaration of @code{ftello} in @code{<stdio.h>} is not enabled by default
+File: ./doc/posix-functions/ftok.texi
+Hash: 9c0bb158262d297799d36d6d588c26e3e41b95226a77dd4cf11cd992e4a9a1e6
+Copyright:
+License:
+#Header:
+#@node ftok
+#@section @code{ftok}
+#@findex ftok
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftok.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ftruncate.texi
+Hash: f1e0566861d589db1bb60cda3d8b8317d1ff9520cc36f00549df03b3419b269e
+Copyright:
+License:
+#Header:
+#@node ftruncate
+#@section @code{ftruncate}
+#@findex ftruncate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/ftrylockfile.texi
+Hash: e43223544d05c58b1bead69da882754ab20a449b9b600200c4ea8709b16fa01f
+Copyright:
+License:
+#Header:
+#@node ftrylockfile
+#@section @code{ftrylockfile}
+#@findex ftrylockfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftrylockfile.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ftw.texi
+Hash: e978b2519b0f3806a7dab0e5e344fe47bca8fc2f523fde61b4dde209495588b1
+Copyright:
+License:
+#Header:
+#@node ftw
+#@section @code{ftw}
+#@findex ftw
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftw.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/funlockfile.texi
+Hash: 8b38246093f70a1e9599e3b040144aae94cf838305b81707500c579661d7f5ae
+Copyright:
+License:
+#Header:
+#@node funlockfile
+#@section @code{funlockfile}
+#@findex funlockfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/funlockfile.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/futimens.texi
+Hash: d1320304b274deef5c2d65cf3e1ffd0c50367a79176ef371756373ca29705fcb
+Copyright:
+License:
+#Header:
+#@node futimens
+#@section @code{futimens}
+#@findex futimens
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/futimens.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fwide.texi
+Hash: ad8af32a87ba8df0b7982ed23d296cf78858b76463e35ad868d09fcc6cdd6653
+Copyright:
+License:
+#Header:
+#@node fwide
+#@section @code{fwide}
+#@findex fwide
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwide.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fwprintf.texi
+Hash: 40435c2105f61e2dfae56b633e183a81a1d955f0d0d5e0a3cbfce5865fbaa133
+Copyright:
+License:
+#Header:
+#@node fwprintf
+#@section @code{fwprintf}
+#@findex fwprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/fwrite.texi
+Hash: 0bc2efa6c28e32fe14ef25c64543ad9693dbb01be6f3fc8a5086a76ae6ed95e1
+Copyright:
+License:
+#Header:
+#@node fwrite
+#@section @code{fwrite}
+#@findex fwrite
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwrite.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/fwscanf.texi
+Hash: 0350aa62241649e46ebcc0a699ed578f770f8d8c4ab946f80522abc793281936
+Copyright:
+License:
+#Header:
+#@node fwscanf
+#@section @code{fwscanf}
+#@findex fwscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/gai_strerror.texi
+Hash: 9fa1d09a15180298f0966016d7c07be6488b7d90ae0fabfb8bd7e41bc43f22d2
+Copyright:
+License:
+#Header:
+#@node gai_strerror
+#@section @code{gai_strerror}
+#@findex gai_strerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gai_strerror.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/getaddrinfo.texi
+Hash: 14a705c905635f12d64464c1acf0d56577117e53d94fcb0d641b12f4913a4dfd
+Copyright:
+License:
+#Header:
+#@node getaddrinfo
+#@section @code{getaddrinfo}
+#@findex getaddrinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getaddrinfo.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/getc.texi
+Hash: 58714462b4f4187bd08744681c000e72e90a9431f84add6e9360050466fbbf17
+Copyright:
+License:
+#Header:
+#@node getc
+#@section @code{getc}
+#@findex getc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getc_unlocked.texi
+Hash: 719010c698afd2db8d1b61b7885706a8940c7fc71fbd2a10a01468665a3ee895
+Copyright:
+License:
+#Header:
+#@node getc_unlocked
+#@section @code{getc_unlocked}
+#@findex getc_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getc_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getchar.texi
+Hash: 38cf4d3f15b593d55ec4c5968a96c38a6fbe440c9060e0ad506473175e94e95b
+Copyright:
+License:
+#Header:
+#@node getchar
+#@section @code{getchar}
+#@findex getchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getchar.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getchar_unlocked.texi
+Hash: be20adfbc37a9b00e3ff1dc74c54d3358c9fd38ac388e4818d22abcaecbd4ec7
+Copyright:
+License:
+#Header:
+#@node getchar_unlocked
+#@section @code{getchar_unlocked}
+#@findex getchar_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getchar_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getcwd.texi
+Hash: 17c216e7edd5cd839916fe367c97d27dd035e38e34a93c49bde48ea868c5296f
+Copyright:
+License:
+#Header:
+#@node getcwd
+#@section @code{getcwd}
+#@findex getcwd
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getcwd.html}
+#
+#Gnulib module: getcwd
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@item
+#On glibc platforms, @code{getcwd (NULL, n)} allocates memory for the result.
+#On other platforms, this call is not allowed.
+File: ./doc/posix-functions/getdate.texi
+Hash: 79d3612b99d1e09b631440139db05273fe95959c259b5127693a9cb0223b3cee
+Copyright:
+License:
+#Header:
+#@node getdate
+#@section @code{getdate}
+#@findex getdate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getdate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getdate_err.texi
+Hash: f92239cab29da0644d61d19629631685b6abcbc7b621f1aba5179029e5a28f84
+Copyright:
+License:
+#Header:
+#@node getdate_err
+#@section @code{getdate_err}
+#@findex getdate_err
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getdate_err.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getdelim.texi
+Hash: efafb82e4876cff26df193267dcbd2a3a2f1f2fd97431a4ec5c761663a3886e4
+Copyright:
+License:
+#Header:
+#@node getdelim
+#@section @code{getdelim}
+#@findex getdelim
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getdelim.html}
+#
+#Gnulib module: getdelim
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+#@item
+#This function is missing a declaration on some platforms:
+File: ./doc/posix-functions/getegid.texi
+Hash: b5b2f176703267d09132755529f870787751c23195ef12e2c9971d9a9c838a6d
+Copyright:
+License:
+#Header:
+#@node getegid
+#@section @code{getegid}
+#@findex getegid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getegid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getenv.texi
+Hash: 274cd2f5b8925d63386ac9c50ef8831a97f390e3e58e5977bf9785aae707cd97
+Copyright:
+License:
+#Header:
+#@node getenv
+#@section @code{getenv}
+#@findex getenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/geteuid.texi
+Hash: 5839ba963ace9183575af71a0ede6093646d1924b7d9e2db4fdebd83dbed9a0e
+Copyright:
+License:
+#Header:
+#@node geteuid
+#@section @code{geteuid}
+#@findex geteuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/geteuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getgid.texi
+Hash: 39a7aed4f6ecf6142c9c4c9f46a2d8a17a802609c2b75dc92ec40c30e196196b
+Copyright:
+License:
+#Header:
+#@node getgid
+#@section @code{getgid}
+#@findex getgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getgrent.texi
+Hash: 0596e2089898956df5fd5cae81e2c3a8891e10e1746e9f13a3c8357d7c9edcb5
+Copyright:
+License:
+#Header:
+#@node getgrent
+#@section @code{getgrent}
+#@findex getgrent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getgrgid.texi
+Hash: e90d86643f77ea14655319e842600c5f9de7a54494abce14088dd53ea2931a25
+Copyright:
+License:
+#Header:
+#@node getgrgid
+#@section @code{getgrgid}
+#@findex getgrgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getgrgid_r.texi
+Hash: ae21c2ca2f91e6e4083483a87b4dc644e670c029cd4cc1f1e1b14c0a0e0adedf
+Copyright:
+License:
+#Header:
+#@node getgrgid_r
+#@section @code{getgrgid_r}
+#@findex getgrgid_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrgid_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getgrnam.texi
+Hash: 7e47a3eaa33be90ec41d4856255adb5c1434663e691c7362ce1297d74ff858d2
+Copyright:
+License:
+#Header:
+#@node getgrnam
+#@section @code{getgrnam}
+#@findex getgrnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getgrnam_r.texi
+Hash: 2e107e9b689d02131cfc4599989f420a227a95b4c35d4bca5774e73a2ff568e8
+Copyright:
+License:
+#Header:
+#@node getgrnam_r
+#@section @code{getgrnam_r}
+#@findex getgrnam_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrnam_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getgroups.texi
+Hash: dc11c7f3733247e37a0bc53249ea948e76d259d158544b2a5a082a1d111129e0
+Copyright:
+License:
+#Header:
+#@node getgroups
+#@section @code{getgroups}
+#@findex getgroups
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgroups.html}
+#
+#Gnulib module: getgroups
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#On Ultrix 4.3, @code{getgroups (0, 0)} always fails.  See macro
+File: ./doc/posix-functions/gethostent.texi
+Hash: a1ddf37deaf3136d395c6e2fc6bc008837e691f6b6c615c6bfbac8c2316ceb5c
+Copyright:
+License:
+#Header:
+#@node gethostent
+#@section @code{gethostent}
+#@findex gethostent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gethostent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/gethostid.texi
+Hash: 75b6790bd3fd3e7bb67cc34c87a613cc4bfa446ce4e2a43a11e9788c583ed63c
+Copyright:
+License:
+#Header:
+#@node gethostid
+#@section @code{gethostid}
+#@findex gethostid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gethostid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/gethostname.texi
+Hash: 77e832d8786df64fef14857e4611bc7324c762142a78e5a347f789b35d563a1c
+Copyright:
+License:
+#Header:
+#@node gethostname
+#@section @code{gethostname}
+#@findex gethostname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gethostname.html}
+#
+#Gnulib module: gethostname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On mingw, this function has a prototype that differs from that
+#specified by POSIX, and it is defined only in the ws2_32 library.
+#@end itemize
+File: ./doc/posix-functions/getitimer.texi
+Hash: 35af7f4dc16bc874c784085e9bed6ab3be4728a30937389be5aa1e3026ce4f47
+Copyright:
+License:
+#Header:
+#@node getitimer
+#@section @code{getitimer}
+#@findex getitimer
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getitimer.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getline.texi
+Hash: cc4e1cdd660ad29d4fdf61fef17a363fd2de9ca8f2f9864e8a11fb14978e6715
+Copyright:
+License:
+#Header:
+#@node getline
+#@section @code{getline}
+#@findex getline
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getline.html}
+#
+#Gnulib module: getline
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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, mingw, Interix 3.5.
+#@item
+#This function is missing a declaration on some platforms:
+File: ./doc/posix-functions/getlogin.texi
+Hash: 1dcdcd176e1153b391bee72702dd8c20b7e79e32970b1db82044598c636350f6
+Copyright:
+License:
+#Header:
+#@node getlogin
+#@section @code{getlogin}
+#@findex getlogin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getlogin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getlogin_r.texi
+Hash: 7ad532d82f0519617a84dc82bf028aa4181ba189dda51b3ac511ab5648042f8e
+Copyright:
+License:
+#Header:
+#@node getlogin_r
+#@section @code{getlogin_r}
+#@findex getlogin_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getlogin_r.html}
+#
+#Gnulib module: getlogin_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, mingw.
+#@end itemize
+File: ./doc/posix-functions/getmsg.texi
+Hash: e67c2c51ff394f18250f43089b89a0820105195fe338f2b68ca2448fde73a130
+Copyright:
+License:
+#Header:
+#@node getmsg
+#@section @code{getmsg}
+#@findex getmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getnameinfo.texi
+Hash: 7ce827533a3feb9e2f219bc867cb7dbf8f5d39dae596203b9425157ee79fa86c
+Copyright:
+License:
+#Header:
+#@node getnameinfo
+#@section @code{getnameinfo}
+#@findex getnameinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnameinfo.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/getnetbyaddr.texi
+Hash: 4e93c87df34262cc9fe05be16d01964a06924666bc4513614053d626ae6b5ff7
+Copyright:
+License:
+#Header:
+#@node getnetbyaddr
+#@section @code{getnetbyaddr}
+#@findex getnetbyaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnetbyaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getnetbyname.texi
+Hash: 52a931503da2c42cbd8f8be86549e2575e48ab5b65090fa85ec33f2910e00cb2
+Copyright:
+License:
+#Header:
+#@node getnetbyname
+#@section @code{getnetbyname}
+#@findex getnetbyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnetbyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getnetent.texi
+Hash: b32da6dbd572fe5c7c653c8c600ebebe87b0f794b2758f02c7c175587c1b63ff
+Copyright:
+License:
+#Header:
+#@node getnetent
+#@section @code{getnetent}
+#@findex getnetent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnetent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getopt.texi
+Hash: af7f8ffb87a9e53611a6c79fa27787cb8686d2fad31f999c12e345d89db483ae
+Copyright:
+License:
+#Header:
+#@node getopt
+#@section @code{getopt}
+#@findex getopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getopt.html}
+#
+#Gnulib module: getopt-posix or getopt-gnu
+#
+#The module @code{getopt-gnu} has support for ``long options'' and for
+#``options that take optional arguments''.  Compared to the API defined by POSIX,
+#it adds a header file @code{<getopt.h>} and a function @code{getopt_long}.
+#
+#Portability problems fixed by either Gnulib module @code{getopt-posix} or @code{getopt-gnu}:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpeername.texi
+Hash: 3da780655ab68f30fec710038214a4e109ad4247a561349954bb1b0cfde8d117
+Copyright:
+License:
+#Header:
+#@node getpeername
+#@section @code{getpeername}
+#@findex getpeername
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpeername.html}
+#
+#Gnulib module: getpeername
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{getpeername} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/getpgid.texi
+Hash: 0b7b188ca82fc0428055b148ff19fcb11abe7c13f97b23f913ec4afeed84e3e3
+Copyright:
+License:
+#Header:
+#@node getpgid
+#@section @code{getpgid}
+#@findex getpgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpgrp.texi
+Hash: db8b430ed2f111ddbd6fe64c6fed03b269ab342d0242b27ab145239c9281296c
+Copyright:
+License:
+#Header:
+#@node getpgrp
+#@section @code{getpgrp}
+#@findex getpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpid.texi
+Hash: ac1bc30305416ea508f16362ec87cbe917851fdd1a598a828e711ede91b2d825
+Copyright:
+License:
+#Header:
+#@node getpid
+#@section @code{getpid}
+#@findex getpid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/getpmsg.texi
+Hash: aa2a70e33feb57d1e999ef4b424ecd3c44e308fc2b6446eae7418d25a30bb2c5
+Copyright:
+License:
+#Header:
+#@node getpmsg
+#@section @code{getpmsg}
+#@findex getpmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getppid.texi
+Hash: 6d2bf74d0a29e047baeb1ef37707f41406274cc3f248d75e8dc46781a6b68f69
+Copyright:
+License:
+#Header:
+#@node getppid
+#@section @code{getppid}
+#@findex getppid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getppid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpriority.texi
+Hash: e9c531e0f622d4d952957f619ff81ce3d19931316589b633ff0b611f43fd2843
+Copyright:
+License:
+#Header:
+#@node getpriority
+#@section @code{getpriority}
+#@findex getpriority
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpriority.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getprotobyname.texi
+Hash: 963e8861ff62a9d05859487128caa20536bb577825ce96399658e741f7be3193
+Copyright:
+License:
+#Header:
+#@node getprotobyname
+#@section @code{getprotobyname}
+#@findex getprotobyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getprotobyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getprotobynumber.texi
+Hash: e805cea0486255ad0074dde515a503115e33ed43868aecacfb1a0ac558cf8b98
+Copyright:
+License:
+#Header:
+#@node getprotobynumber
+#@section @code{getprotobynumber}
+#@findex getprotobynumber
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getprotobynumber.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getprotoent.texi
+Hash: 551ad27d45a3a2173629a313fa52369ff33c06beaec3bbc2377baf67b8bd6a63
+Copyright:
+License:
+#Header:
+#@node getprotoent
+#@section @code{getprotoent}
+#@findex getprotoent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getprotoent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpwent.texi
+Hash: 68e520992b1a0489112d7282fd41decd194ca4fd35a4d9b802cc3c4f7668109d
+Copyright:
+License:
+#Header:
+#@node getpwent
+#@section @code{getpwent}
+#@findex getpwent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpwnam.texi
+Hash: 998a0dbf244f755876f23b998c559ba89e13530dd2773a04938a04b5b4f4ea58
+Copyright:
+License:
+#Header:
+#@node getpwnam
+#@section @code{getpwnam}
+#@findex getpwnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpwnam_r.texi
+Hash: 70f8d6647f1e66692bd073a00720fdd78908c840c5d79bfdc49a0f125598a275
+Copyright:
+License:
+#Header:
+#@node getpwnam_r
+#@section @code{getpwnam_r}
+#@findex getpwnam_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwnam_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpwuid.texi
+Hash: e8fe050b21b5adc384e3955d5ffd092c6a04e7f31d5a9f4812d4d928483a13b4
+Copyright:
+License:
+#Header:
+#@node getpwuid
+#@section @code{getpwuid}
+#@findex getpwuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getpwuid_r.texi
+Hash: d44ef7b94c25b62423eedbe94c7a59721af5023d7f9798dcb6f9bca0b3188b84
+Copyright:
+License:
+#Header:
+#@node getpwuid_r
+#@section @code{getpwuid_r}
+#@findex getpwuid_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwuid_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getrlimit.texi
+Hash: 1741e65462f624b55fa08f6c137d5fef0491b29550153ff7b2298da4af716d35
+Copyright:
+License:
+#Header:
+#@node getrlimit
+#@section @code{getrlimit}
+#@findex getrlimit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getrlimit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getrusage.texi
+Hash: c9eeb4d92f5a2e7811c9223fd928527c6a5417e8594cbd9ea14eeefede635a25
+Copyright:
+License:
+#Header:
+#@node getrusage
+#@section @code{getrusage}
+#@findex getrusage
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getrusage.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/gets.texi
+Hash: 9acd238c8a9d2d9c4330c312cafbdcd705e2429713392b36d2ce7c289b4e53ae
+Copyright:
+License:
+#Header:
+#@node gets
+#@section @code{gets}
+#@findex gets
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gets.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getservbyname.texi
+Hash: 3ecea5dc3404e1e38010cd73a8404324b1f9d1b54340701156549b8d5bfd01be
+Copyright:
+License:
+#Header:
+#@node getservbyname
+#@section @code{getservbyname}
+#@findex getservbyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getservbyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getservbyport.texi
+Hash: bcdebeab2eff4908ac4d0c1c82b94bf2d68700c98b4cd97a78214034f96b2ed3
+Copyright:
+License:
+#Header:
+#@node getservbyport
+#@section @code{getservbyport}
+#@findex getservbyport
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getservbyport.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getservent.texi
+Hash: c838d8a89540e74f6101898ed07696b8825936baf417b8f2832655d311f571b9
+Copyright:
+License:
+#Header:
+#@node getservent
+#@section @code{getservent}
+#@findex getservent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getservent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getsid.texi
+Hash: 431bb53ecff71e3d8b417174c16796f529609cd3acb88ebc10eb477a349185bb
+Copyright:
+License:
+#Header:
+#@node getsid
+#@section @code{getsid}
+#@findex getsid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getsockname.texi
+Hash: 31f2b7be44434718f4efc1d7b1eeab9bf763e3e363342fb0650f7dd2febe12b3
+Copyright:
+License:
+#Header:
+#@node getsockname
+#@section @code{getsockname}
+#@findex getsockname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsockname.html}
+#
+#Gnulib module: getsockname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{getsockname} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/getsockopt.texi
+Hash: af2dad761ea7f44bcf81197c78bf3fcfb362822bad6f0ece6311338d86e3af08
+Copyright:
+License:
+#Header:
+#@node getsockopt
+#@section @code{getsockopt}
+#@findex getsockopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsockopt.html}
+#
+#Gnulib module: getsockopt
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{getsockopt} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/getsubopt.texi
+Hash: aa4a53d47e730a1f992d7f1aa922e1aa79be10c34bfb255f50c46bfcb2f31234
+Copyright:
+License:
+#Header:
+#@node getsubopt
+#@section @code{getsubopt}
+#@findex getsubopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsubopt.html}
+#
+#Gnulib module: getsubopt
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/gettimeofday.texi
+Hash: 92a496410d954f2a49525954f98a8b06037522f580f6c0db5ade027332d23bde
+Copyright:
+License:
+#Header:
+#@node gettimeofday
+#@section @code{gettimeofday}
+#@findex gettimeofday
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gettimeofday.html}
+#
+#Gnulib module: gettimeofday
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#This function is declared with a nonstandard function prototype (only one
+File: ./doc/posix-functions/getuid.texi
+Hash: 19539881b0771df459953a324b6b357f9054362136b7bf9e0dd8765b028602e1
+Copyright:
+License:
+#Header:
+#@node getuid
+#@section @code{getuid}
+#@findex getuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getutxent.texi
+Hash: 87341c2493c319192244895c4b3a8f0e235c13e0c6621010175a0c36db050f8b
+Copyright:
+License:
+#Header:
+#@node getutxent
+#@section @code{getutxent}
+#@findex getutxent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getutxent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getutxid.texi
+Hash: 0bbf1db488c0b8719e88a95cd605fa67768a93ef69ddd9169b67e61711ae1e9d
+Copyright:
+License:
+#Header:
+#@node getutxid
+#@section @code{getutxid}
+#@findex getutxid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getutxid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getutxline.texi
+Hash: d12b5dfe0bf0b375c1ca7848376ae825fc319ade3d15ad4eaef723461569e33a
+Copyright:
+License:
+#Header:
+#@node getutxline
+#@section @code{getutxline}
+#@findex getutxline
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getutxline.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getwc.texi
+Hash: 24a89fa271805bfe4e8cc573f5ca543254fe76dc9df6b5d9120d24be2e7e8409
+Copyright:
+License:
+#Header:
+#@node getwc
+#@section @code{getwc}
+#@findex getwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/getwchar.texi
+Hash: f75ad5d5c3cf53828966a82b52a7ef76b530dcdb646790e3e093dac8390a43f3
+Copyright:
+License:
+#Header:
+#@node getwchar
+#@section @code{getwchar}
+#@findex getwchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getwchar.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/glob.texi
+Hash: 768db78c0332b8bc395ab0e47410eda2ecd7e7199d167bdda85c58ecc1aa45a5
+Copyright:
+License:
+#Header:
+#@node glob
+#@section @code{glob}
+#@findex glob
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/glob.html}
+#
+#Gnulib module: glob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw, BeOS.
+#@item
+#This function may list symbolic links to nonexistent files among the results,
+File: ./doc/posix-functions/globfree.texi
+Hash: 377e052eed5cf3a7e869b6b866cfeac8cd5ee86bcbdb7a7e8917773dd9409ab8
+Copyright:
+License:
+#Header:
+#@node globfree
+#@section @code{globfree}
+#@findex globfree
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/globfree.html}
+#
+#Gnulib module: glob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/gmtime.texi
+Hash: 9066a6d0b686e0fd9eaf52c3daccffe11d300f0093beec88c8dea2637d591a89
+Copyright:
+License:
+#Header:
+#@node gmtime
+#@section @code{gmtime}
+#@findex gmtime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gmtime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/gmtime_r.texi
+Hash: d899d0d3944063104a3a87bec32233cf8c8c5c00340d8a31c276be78149609b2
+Copyright:
+License:
+#Header:
+#@node gmtime_r
+#@section @code{gmtime_r}
+#@findex gmtime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gmtime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/google-ranking.txt
+Hash: 6669619e4c21ebf3f0f0cfa39caf63574d638db746cee3ab5241ae4e8ab02dff
+Copyright:
+License:
+#Header:
+#free                                   2420000
+#write                                  1570000
+#time                                    768000
+#strlen                                  702000
+#index                                   697000
+#printf                                  690000
+#fprintf                                 641000
+#errno                                   616000
+#strcmp                                  604000
+#malloc                                  574000
+#memset                                  556000
+#sprintf                                 550000
+#read                                    547000
+#remove                                  527000
+#strcpy                                  510000
+File: ./doc/posix-functions/grantpt.texi
+Hash: ebd0e873fe02818ecf4ed2990c273103a39ad0f2043ff06acc9e07254bcd44f2
+Copyright:
+License:
+#Header:
+#@node grantpt
+#@section @code{grantpt}
+#@findex grantpt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/grantpt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/hcreate.texi
+Hash: 1f1de04c8b3137e208712afe58b67737a41e3c494046ea3632c2d6bebfdb5e08
+Copyright:
+License:
+#Header:
+#@node hcreate
+#@section @code{hcreate}
+#@findex hcreate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hcreate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/hdestroy.texi
+Hash: 852046bda95f89dc1f65f887ebfcb271af87a79cfa85a2c30a2596dea55ffb6c
+Copyright:
+License:
+#Header:
+#@node hdestroy
+#@section @code{hdestroy}
+#@findex hdestroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hdestroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/hsearch.texi
+Hash: 1c3dfdf5fd7c26d554eaa4394d12da4e71fb0ff8b6c6a7d956fbdf226e6db77c
+Copyright:
+License:
+#Header:
+#@node hsearch
+#@section @code{hsearch}
+#@findex hsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hsearch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/htonl.texi
+Hash: 96da0ca2386362f2d4e4dd58a33905ddbd207738ec194c1f90078bb0176b923d
+Copyright:
+License:
+#Header:
+#@node htonl
+#@section @code{htonl}
+#@findex htonl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/htonl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/htons.texi
+Hash: 112e415883bc9b3912343a8c5535eab4ed1e5eb8e2a0cb6203b1b4c829c2ac10
+Copyright:
+License:
+#Header:
+#@node htons
+#@section @code{htons}
+#@findex htons
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/htons.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/hypot.texi
+Hash: 5916e7c5c00d00967198f74805aafa986ae5501cc50a0b6c535f859c4accae49
+Copyright:
+License:
+#Header:
+#@node hypot
+#@section @code{hypot}
+#@findex hypot
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hypot.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/hypotf.texi
+Hash: dd7047f4fcc4c2890b72412ea78a97e134cb3d4b52b5eddb8523a2402c15fbd4
+Copyright:
+License:
+#Header:
+#@node hypotf
+#@section @code{hypotf}
+#@findex hypotf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hypotf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/hypotl.texi
+Hash: f90a4791fa83d5bb2611a343ee4e76c4b640340bb22acf21f71a0d33ec9a80e0
+Copyright:
+License:
+#Header:
+#@node hypotl
+#@section @code{hypotl}
+#@findex hypotl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hypotl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iconv.texi
+Hash: f965f19658c91456314bbd0c675bd6052312f237295341335b35c38475791d91
+Copyright:
+License:
+#Header:
+#@node iconv
+#@section @code{iconv}
+#@findex iconv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iconv.html}
+#
+#Gnulib module: iconv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#GNU libiconv is not found if installed in @file{$PREFIX/lib}.
+#@item
+#Failures are not distinguishable from successful returns on some platforms:
+#AIX 5.1.
+File: ./doc/posix-functions/iconv_close.texi
+Hash: 16082c1b0665d66075df97aca7dffc9193a3dd54469ce1e20fd61a7e65e01635
+Copyright:
+License:
+#Header:
+#@node iconv_close
+#@section @code{iconv_close}
+#@findex iconv_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iconv_close.html}
+#
+#Gnulib module: iconv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#GNU libiconv is not found if installed in @file{$PREFIX/lib}.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/iconv_open.texi
+Hash: 49b9b82fed6c3b4bf87cd2443ef07037863a7832c4cb38eb16f75dd2c83a2826
+Copyright:
+License:
+#Header:
+#@node iconv_open
+#@section @code{iconv_open}
+#@findex iconv_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iconv_open.html}
+#
+#Gnulib module: iconv, iconv_open, iconv_open-utf
+#
+#Portability problems fixed by either Gnulib module @code{iconv} or @code{iconv_open}:
+#@itemize
+#@item
+#GNU libiconv is not found if installed in @file{$PREFIX/lib}.
+#@item
+#No converter from EUC-JP to UTF-8 is provided on some platforms:
+#HP-UX 11.
+File: ./doc/posix-functions/if_freenameindex.texi
+Hash: 3409250e6643d5a9d763dad8f6d778213c5262060d57245d9969168b5717c8ef
+Copyright:
+License:
+#Header:
+#@node if_freenameindex
+#@section @code{if_freenameindex}
+#@findex if_freenameindex
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_freenameindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/if_indextoname.texi
+Hash: e0c658b26a0038f9e0d93a4e91f11249f2b4af91b6eea372a208a05cf161b2a8
+Copyright:
+License:
+#Header:
+#@node if_indextoname
+#@section @code{if_indextoname}
+#@findex if_indextoname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_indextoname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/if_nameindex.texi
+Hash: efe0055691b143943238c3973ce7a34ab9e1512434fad06838d9cb1579027e7d
+Copyright:
+License:
+#Header:
+#@node if_nameindex
+#@section @code{if_nameindex}
+#@findex if_nameindex
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_nameindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/if_nametoindex.texi
+Hash: ae69d6500c998134e95d763fd4d4d4b74f3b9a32ae8320f90da673dddd7082e7
+Copyright:
+License:
+#Header:
+#@node if_nametoindex
+#@section @code{if_nametoindex}
+#@findex if_nametoindex
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_nametoindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ilogb.texi
+Hash: 18dbb833f6c37415f3c211e4872a95fea279a0c41a745edc0581e9ccfaea9bf0
+Copyright:
+License:
+#Header:
+#@node ilogb
+#@section @code{ilogb}
+#@findex ilogb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ilogb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ilogbf.texi
+Hash: 1c1c7486eb6998de905eda978324bfc91f9c1b8ba52fcdc6ce6b1d26f3aa0a14
+Copyright:
+License:
+#Header:
+#@node ilogbf
+#@section @code{ilogbf}
+#@findex ilogbf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ilogbf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ilogbl.texi
+Hash: 3b010d3a7060a6064b0717b3c0cb764eaab983dde75fe55e71e7775e15e72ede
+Copyright:
+License:
+#Header:
+#@node ilogbl
+#@section @code{ilogbl}
+#@findex ilogbl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ilogbl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/imaxabs.texi
+Hash: 666ba73e5b2cde72e1e5b6bc0d407b8d52982031343e5627f4c7986c9f8ab588
+Copyright:
+License:
+#Header:
+#@node imaxabs
+#@section @code{imaxabs}
+#@findex imaxabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/imaxabs.html}
+#
+#Gnulib module: imaxabs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/imaxdiv.texi
+Hash: 138d9df51523cec7035dcf949fb2b46186fdbfc8e3f5d93e07abef452fe90ec4
+Copyright:
+License:
+#Header:
+#@node imaxdiv
+#@section @code{imaxdiv}
+#@findex imaxdiv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/imaxdiv.html}
+#
+#Gnulib module: imaxdiv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/inet_addr.texi
+Hash: 74b2fccbbd9d74392aa7fcb6c422f554038225e221802537f85556e3622f5b7a
+Copyright:
+License:
+#Header:
+#@node inet_addr
+#@section @code{inet_addr}
+#@findex inet_addr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_addr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/inet_ntoa.texi
+Hash: 17301bd2cf66ebdfb65182b0dade44f1dae8345b2125ff8d9356dcf108d83fa4
+Copyright:
+License:
+#Header:
+#@node inet_ntoa
+#@section @code{inet_ntoa}
+#@findex inet_ntoa
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_ntoa.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/inet_ntop.texi
+Hash: 2bfb9c3c48534a0ef693f09aa78498cebe4f1efdd5dc1287daffe91e312d3b46
+Copyright:
+License:
+#Header:
+#@node inet_ntop
+#@section @code{inet_ntop}
+#@findex inet_ntop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_ntop.html}
+#
+#Gnulib module: inet_ntop
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, OSF/1 4.0, Solaris 2.5.1, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/inet_pton.texi
+Hash: 179d6b99ccbdec429d7b7be478695dc0d41e2340f79f6d9c5b5a693cba0489ed
+Copyright:
+License:
+#Header:
+#@node inet_pton
+#@section @code{inet_pton}
+#@findex inet_pton
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_pton.html}
+#
+#Gnulib module: inet_pton
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, OSF/1 4.0, Solaris 2.5.1, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/initstate.texi
+Hash: ef35a8ba1f7a2c80bbc096e54a5309a312b91cc5cf46e6da71a3af2e92b733d5
+Copyright:
+License:
+#Header:
+#@node initstate
+#@section @code{initstate}
+#@findex initstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/initstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/insque.texi
+Hash: bd5c85638f4a8abfa676097f05367cf4a7a5c6df9e4814c7956a55497fd70cdd
+Copyright:
+License:
+#Header:
+#@node insque
+#@section @code{insque}
+#@findex insque
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/insque.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ioctl.texi
+Hash: 0e9992e44abd4da7febddb076d29b2cbcd8d088f04d6a99e46d65446440a621c
+Copyright:
+License:
+#Header:
+#@node ioctl
+#@section @code{ioctl}
+#@findex ioctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ioctl.html}
+#
+#Gnulib module: ioctl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{ioctl} is called
+#@code{ioctlsocket}, and error codes for this function are not placed in
+#@code{errno}, and @code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/isalnum.texi
+Hash: 7e8f6f0e1c5391eeeee418d3daba0ca9a8f1acc734524864a393b569cb4d9e7e
+Copyright:
+License:
+#Header:
+#@node isalnum
+#@section @code{isalnum}
+#@findex isalnum
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalnum.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isalnum_l.texi
+Hash: 184b40cbdba1ef6f81331ed1f0dbb4e7bad0df440e0c8a0d7069ac1908d68897
+Copyright:
+License:
+#Header:
+#@node isalnum_l
+#@section @code{isalnum_l}
+#@findex isalnum_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalnum_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isalpha.texi
+Hash: 21bde3d1e2fd36e6b70354be9db9d5b7bf8e1f1d4288c356e93cec01c117bca6
+Copyright:
+License:
+#Header:
+#@node isalpha
+#@section @code{isalpha}
+#@findex isalpha
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalpha.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isalpha_l.texi
+Hash: 891b0a65e8c759c81c621ba0197e0f95e55ca090eee63dcaccba5faa52ca9077
+Copyright:
+License:
+#Header:
+#@node isalpha_l
+#@section @code{isalpha_l}
+#@findex isalpha_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalpha_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isascii.texi
+Hash: 556beb2df9bb209f85e402d40e0fe3811644560424c74fb2b3ef07a8dd6d705b
+Copyright:
+License:
+#Header:
+#@node isascii
+#@section @code{isascii}
+#@findex isascii
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isascii.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isastream.texi
+Hash: 9eeda95fb91e67be24bb2e4b8ebcb41758144638e315c9b8a38e5f24c9c464a3
+Copyright:
+License:
+#Header:
+#@node isastream
+#@section @code{isastream}
+#@findex isastream
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isastream.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isatty.texi
+Hash: e2c2970db6e080721b6f59c180087535d30c7f0e6e49510851e8c56bbf62b571
+Copyright:
+License:
+#Header:
+#@node isatty
+#@section @code{isatty}
+#@findex isatty
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isatty.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isblank.texi
+Hash: 607aeac320bbcef0aff904e331fd9ba48021afb702586fadfb024e3c2399987a
+Copyright:
+License:
+#Header:
+#@node isblank
+#@section @code{isblank}
+#@findex isblank
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isblank.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isblank_l.texi
+Hash: 87c4aa73b132fb5e2406a64e6d5f4d9033fe4ccc616daf189d3d61ccaacaa732
+Copyright:
+License:
+#Header:
+#@node isblank_l
+#@section @code{isblank_l}
+#@findex isblank_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isblank_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iscntrl.texi
+Hash: 1bed23b3d80fa67f3d9c7863ae52969b33682335542e31bf5d3f1f2b64e25e09
+Copyright:
+License:
+#Header:
+#@node iscntrl
+#@section @code{iscntrl}
+#@findex iscntrl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iscntrl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/iscntrl_l.texi
+Hash: b81253dfdbbc5302ec5dc376fb8351bff010960f66b6c07cf6c792dc6359808a
+Copyright:
+License:
+#Header:
+#@node iscntrl_l
+#@section @code{iscntrl_l}
+#@findex iscntrl_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iscntrl_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isdigit.texi
+Hash: a099acfd541a9eb34af0f26be1e535eb935149cd2a5947c165a62b70c9f185d4
+Copyright:
+License:
+#Header:
+#@node isdigit
+#@section @code{isdigit}
+#@findex isdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isdigit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isdigit_l.texi
+Hash: 1c50a0ff745432c67953ccf4c610ffac0bd4d4a3ee60e5dddb93be325738db84
+Copyright:
+License:
+#Header:
+#@node isdigit_l
+#@section @code{isdigit_l}
+#@findex isdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isfinite.texi
+Hash: 8de73e1f76a93c11dd0144e087c5a5668d7a3356c4ad47b6a839386c6878abaa
+Copyright:
+License:
+#Header:
+#@node isfinite
+#@section @code{isfinite}
+#@findex isfinite
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isfinite.html}
+#
+#Gnulib module: isfinite
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This macro is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Interix 3.5.
+#@item
+#This macro incorrectly yields true for some @samp{double} arguments, on some
+File: ./doc/posix-functions/isgraph.texi
+Hash: c587baa5d3ff8f02b0d039fea812685da5bf8e75c7fcbc88f2814e62835758c7
+Copyright:
+License:
+#Header:
+#@node isgraph
+#@section @code{isgraph}
+#@findex isgraph
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgraph.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isgraph_l.texi
+Hash: 98888e1d5b988e61eaa41d7727524eaa67a1b20fc59aa4649d866b39630fb81a
+Copyright:
+License:
+#Header:
+#@node isgraph_l
+#@section @code{isgraph_l}
+#@findex isgraph_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgraph_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isgreater.texi
+Hash: d998c4e8134e688b0dbd93c7f31be3bee6fa1c6ac588447dbaf04296b983fb45
+Copyright:
+License:
+#Header:
+#@node isgreater
+#@section @code{isgreater}
+#@findex isgreater
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgreater.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isgreaterequal.texi
+Hash: ab4e53e9c3972f5aed62439cc18f494263bb0f880ef864045d24d0f02eb635cd
+Copyright:
+License:
+#Header:
+#@node isgreaterequal
+#@section @code{isgreaterequal}
+#@findex isgreaterequal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgreaterequal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isinf.texi
+Hash: eba9361c1691fec1805dbb0caeef08b27f06567a49e51e510a778c2f95decf10
+Copyright:
+License:
+#Header:
+#@node isinf
+#@section @code{isinf}
+#@findex isinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isinf.html}
+#
+#Gnulib module: isinf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This macro is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, OSF/1 5.1, Solaris 10.
+#@end itemize
+File: ./doc/posix-functions/isless.texi
+Hash: dd004ed16bf5f26451a45799145ea12ee1a016fa0966fe3eb6290da0386db8eb
+Copyright:
+License:
+#Header:
+#@node isless
+#@section @code{isless}
+#@findex isless
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isless.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/islessequal.texi
+Hash: 28e0f408e7dfce3c4fad65911c4558d2b2aa8aef2be00cf46c2bdae6383a8b1c
+Copyright:
+License:
+#Header:
+#@node islessequal
+#@section @code{islessequal}
+#@findex islessequal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islessequal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/islessgreater.texi
+Hash: cd242279d55f7ff21ca138eb552ad88514e3806094a2158a4df3eac316e2c0cf
+Copyright:
+License:
+#Header:
+#@node islessgreater
+#@section @code{islessgreater}
+#@findex islessgreater
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islessgreater.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/islower.texi
+Hash: 71c3f0e0c264095972634ce0074fd2083e8b2174467f9d894e5f4519dbed4cc3
+Copyright:
+License:
+#Header:
+#@node islower
+#@section @code{islower}
+#@findex islower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islower.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/islower_l.texi
+Hash: 96fcedded01879c7734672f03889e128a2f1dbc5f405b10d13627fc4b2523144
+Copyright:
+License:
+#Header:
+#@node islower_l
+#@section @code{islower_l}
+#@findex islower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isnan.texi
+Hash: 5214ffd8e70b47877e52ef9490a41b22c7ed2e3a6bc37c7782a4ca5c3ac07f11
+Copyright:
+License:
+#Header:
+#@node isnan
+#@section @code{isnan}
+#@findex isnan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isnan.html}
+#
+#Gnulib module: isnan
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{isnan} was introduced with C99 and is thus commonly not present
+#on pre-C99 systems.
+#@item
+#On IRIX 6.5 with @code{cc}, @code{isnan} does not recognize some NaNs.
+File: ./doc/posix-functions/isnormal.texi
+Hash: 2dd1a3add6afd000b680d1c31a781dc539c9658de7d445da59004bfd50e0783b
+Copyright:
+License:
+#Header:
+#@node isnormal
+#@section @code{isnormal}
+#@findex isnormal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isnormal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isprint.texi
+Hash: bf8d5e33042f9cf87ecd8cc480294ad8a7646150ad9ef130c8358c3eae863a90
+Copyright:
+License:
+#Header:
+#@node isprint
+#@section @code{isprint}
+#@findex isprint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isprint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isprint_l.texi
+Hash: 5cff105ffadf19f833473bbadfaaa615774fe044e725fa630923a66b3e7f8707
+Copyright:
+License:
+#Header:
+#@node isprint_l
+#@section @code{isprint_l}
+#@findex isprint_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isprint_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ispunct.texi
+Hash: 4fb607609ae1049ee43f812ba62fbb60c3272f24017331383aed15bafd786cd1
+Copyright:
+License:
+#Header:
+#@node ispunct
+#@section @code{ispunct}
+#@findex ispunct
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ispunct.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/ispunct_l.texi
+Hash: 18d2164678e563017b26a85fb23ec4d064c90da5a3e714113416b8c634505f4d
+Copyright:
+License:
+#Header:
+#@node ispunct_l
+#@section @code{ispunct_l}
+#@findex ispunct_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ispunct_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isspace.texi
+Hash: dfdacdcbfce11be693ae3ba8a9a7a3b61ca4817c0ebba178e618b4a6afa7110c
+Copyright:
+License:
+#Header:
+#@node isspace
+#@section @code{isspace}
+#@findex isspace
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isspace.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isspace_l.texi
+Hash: 9a9cbcf45014b1475014e6893b767c3bc3b8a2535e835a56cd748ae79bb7c131
+Copyright:
+License:
+#Header:
+#@node isspace_l
+#@section @code{isspace_l}
+#@findex isspace_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isspace_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isunordered.texi
+Hash: 627509cf98ac3516674b3f4b12aca1ab39c75bf3356a60c72c724751dbe27bd4
+Copyright:
+License:
+#Header:
+#@node isunordered
+#@section @code{isunordered}
+#@findex isunordered
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isunordered.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isupper.texi
+Hash: e5ecf479da300eaedb8c203077aa16f133a0d8b46870bf7575460ae23aa0eb86
+Copyright:
+License:
+#Header:
+#@node isupper
+#@section @code{isupper}
+#@findex isupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isupper.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isupper_l.texi
+Hash: 84dd39b30cb42e91a2527f26e9c643b49582f593536ff106a61f4827186690b6
+Copyright:
+License:
+#Header:
+#@node isupper_l
+#@section @code{isupper_l}
+#@findex isupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswalnum.texi
+Hash: c88cc6395532271af8c31a1c5919f67010036b8dec37195a5de9c9e6fc4fe99a
+Copyright:
+License:
+#Header:
+#@node iswalnum
+#@section @code{iswalnum}
+#@findex iswalnum
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalnum.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswalnum_l.texi
+Hash: c7b749280c0d42ff34ec793f356734be117a43ede8aab61c3eac40296b8a8359
+Copyright:
+License:
+#Header:
+#@node iswalnum_l
+#@section @code{iswalnum_l}
+#@findex iswalnum_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalnum_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswalpha.texi
+Hash: b8a1133f56ec62b284a4d3b3779f7faa3a3e71a0882041311a4875fa886799ef
+Copyright:
+License:
+#Header:
+#@node iswalpha
+#@section @code{iswalpha}
+#@findex iswalpha
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalpha.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswalpha_l.texi
+Hash: e0a8c0ea63ecd10ff043c3b5bc68e731cb92ee02b8e1525a750ce6ca9b28712e
+Copyright:
+License:
+#Header:
+#@node iswalpha_l
+#@section @code{iswalpha_l}
+#@findex iswalpha_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalpha_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswblank.texi
+Hash: faf5a6047eaaa0b928dba0c8cfb5eb9a505c0e5bb25f687c7bf9a3563727d030
+Copyright:
+License:
+#Header:
+#@node iswblank
+#@section @code{iswblank}
+#@findex iswblank
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswblank.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+#Linux libc5.
+#@end itemize
+File: ./doc/posix-functions/iswblank_l.texi
+Hash: f8ab06e1ce64e0c1a05e484a4252a62ffe13629ac1abda44784530d4816cbdf7
+Copyright:
+License:
+#Header:
+#@node iswblank_l
+#@section @code{iswblank_l}
+#@findex iswblank_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswblank_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswcntrl.texi
+Hash: e9ac01bd3a5328c6929e67d29991c8eabd27f30cefd73ba88b67f87383e0be83
+Copyright:
+License:
+#Header:
+#@node iswcntrl
+#@section @code{iswcntrl}
+#@findex iswcntrl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswcntrl.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswcntrl_l.texi
+Hash: 457ab57b3569fa9bd430130d48e2e2c8af2b63ba356bd0b53785e04957519624
+Copyright:
+License:
+#Header:
+#@node iswcntrl_l
+#@section @code{iswcntrl_l}
+#@findex iswcntrl_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswcntrl_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswctype.texi
+Hash: ef1349d2e828e29feea41a7a9e7b876f1c93d47ec38be89d1529905da34176d9
+Copyright:
+License:
+#Header:
+#@node iswctype
+#@section @code{iswctype}
+#@findex iswctype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswctype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswctype_l.texi
+Hash: c671724332e6cc92a3c3f170c366ec38aeefab3906b3e85e0d8f2b19e536dfac
+Copyright:
+License:
+#Header:
+#@node iswctype_l
+#@section @code{iswctype_l}
+#@findex iswctype_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswctype_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswdigit.texi
+Hash: 0e822111a3da05620947869ae4f3b596526ba2375fc5f56696a7e7a1561ac12e
+Copyright:
+License:
+#Header:
+#@node iswdigit
+#@section @code{iswdigit}
+#@findex iswdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswdigit.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswdigit_l.texi
+Hash: 22f6b5c90a47f37efe4ba4db24bed97cae416e8e0c8f6933a1d288bcb1ca185d
+Copyright:
+License:
+#Header:
+#@node iswdigit_l
+#@section @code{iswdigit_l}
+#@findex iswdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswgraph.texi
+Hash: 896e84f517e4788236750a0615c2133f547aeba276f20c53c87c42d9c53dc4c8
+Copyright:
+License:
+#Header:
+#@node iswgraph
+#@section @code{iswgraph}
+#@findex iswgraph
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswgraph.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswgraph_l.texi
+Hash: 10aee45c72cc14f9a99bec78b29aa44fe09e9c54a545008cc4b19baa4dec61a1
+Copyright:
+License:
+#Header:
+#@node iswgraph_l
+#@section @code{iswgraph_l}
+#@findex iswgraph_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswgraph_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswlower.texi
+Hash: 1a9d7fa78a4d5d99b5fbff24e4e93ead4ecacf42a38182cdfd6fb45136f6e28d
+Copyright:
+License:
+#Header:
+#@node iswlower
+#@section @code{iswlower}
+#@findex iswlower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswlower.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswlower_l.texi
+Hash: 25b3f6605949010e6e24d0c2e1f7b3510e17cfd8745092c6def04ae7dc005143
+Copyright:
+License:
+#Header:
+#@node iswlower_l
+#@section @code{iswlower_l}
+#@findex iswlower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswlower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswprint.texi
+Hash: 5e205ee334496a2f8d2c4d3aaf02ed2c1e8bc2afcf953ccfdc8615e0bb390b4a
+Copyright:
+License:
+#Header:
+#@node iswprint
+#@section @code{iswprint}
+#@findex iswprint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswprint.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswprint_l.texi
+Hash: 67681be4a107eb027c4062ff76d698c22b4ce822bd002dfa7a17b1493d54f45e
+Copyright:
+License:
+#Header:
+#@node iswprint_l
+#@section @code{iswprint_l}
+#@findex iswprint_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswprint_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswpunct.texi
+Hash: d73020eb450cf8316c2be7df99c089c6fe0034ef0600f050d907760b2e6ff366
+Copyright:
+License:
+#Header:
+#@node iswpunct
+#@section @code{iswpunct}
+#@findex iswpunct
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswpunct.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswpunct_l.texi
+Hash: 5e322758293c6c526a9eeb5a1b026d42b7faf671accd5638f9df410a04689eea
+Copyright:
+License:
+#Header:
+#@node iswpunct_l
+#@section @code{iswpunct_l}
+#@findex iswpunct_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswpunct_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswspace.texi
+Hash: c67ec587b829ddefc9f19782b9e1029ecdc6ab6c00583aff4ccaf07e51564193
+Copyright:
+License:
+#Header:
+#@node iswspace
+#@section @code{iswspace}
+#@findex iswspace
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswspace.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswspace_l.texi
+Hash: 0f4b7e4d958774500fae6e07482d9e57bd0da51d009cd74ccbd706e78ba58b08
+Copyright:
+License:
+#Header:
+#@node iswspace_l
+#@section @code{iswspace_l}
+#@findex iswspace_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswspace_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswupper.texi
+Hash: 528d4efc9e63b92cc7d1d0c7e31b7c77e67763927eeb07b4788aecb640c11719
+Copyright:
+License:
+#Header:
+#@node iswupper
+#@section @code{iswupper}
+#@findex iswupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswupper.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswupper_l.texi
+Hash: 6e31fe14738f6db822099564d598cf2f05446f077266420bf4d7422ef633ab38
+Copyright:
+License:
+#Header:
+#@node iswupper_l
+#@section @code{iswupper_l}
+#@findex iswupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/iswxdigit.texi
+Hash: 3526ec49ca1bd1d095e59320f1a32b5a218365abdedc5b43651cdb1be31176fe
+Copyright:
+License:
+#Header:
+#@node iswxdigit
+#@section @code{iswxdigit}
+#@findex iswxdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswxdigit.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 0 for all possible arguments on some platforms:
+File: ./doc/posix-functions/iswxdigit_l.texi
+Hash: 9936301340cebe26c7bcd05652078bb16be4607552be00033b001521ab9d41a9
+Copyright:
+License:
+#Header:
+#@node iswxdigit_l
+#@section @code{iswxdigit_l}
+#@findex iswxdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswxdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/isxdigit.texi
+Hash: 52cb4c1aa9423d60ea39014291385b09505d50690e931fec03fdf135080b1bdc
+Copyright:
+License:
+#Header:
+#@node isxdigit
+#@section @code{isxdigit}
+#@findex isxdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isxdigit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/isxdigit_l.texi
+Hash: d2ad8a517fc760eb3955762719d2090c1f9c1decfdc2887089f7eb266851562a
+Copyright:
+License:
+#Header:
+#@node isxdigit_l
+#@section @code{isxdigit_l}
+#@findex isxdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isxdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/j0.texi
+Hash: 92c5c4686c56a6222dc04a17a722b38fcb07bfadefa01ec42f495d70a4d704ce
+Copyright:
+License:
+#Header:
+#@node j0
+#@section @code{j0}
+#@findex j0
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/j0.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/j1.texi
+Hash: bca6d61fb0a24dad8de3b48af62434780af39426be5adfa93dc9957532493814
+Copyright:
+License:
+#Header:
+#@node j1
+#@section @code{j1}
+#@findex j1
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/j1.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/jn.texi
+Hash: 5b29066ceb64fe7ad17eb38d78939fc0e5f67fb7b89c71269a590db08bf9bd26
+Copyright:
+License:
+#Header:
+#@node jn
+#@section @code{jn}
+#@findex jn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/jn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/jrand48.texi
+Hash: 5eccfdaf1fb9d042601589acec674823d983cebc21a085b5c12bb7119ed3040d
+Copyright:
+License:
+#Header:
+#@node jrand48
+#@section @code{jrand48}
+#@findex jrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/jrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/kill.texi
+Hash: 11e385ab05f5ce42cb6247de6ee659925b11ecc4aae8abd33e1c2c674a40fdf4
+Copyright:
+License:
+#Header:
+#@node kill
+#@section @code{kill}
+#@findex kill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/kill.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/killpg.texi
+Hash: 22626f2cc60de026029ba237c7c48240d598b37acbd580a1b71c3c5928b73aab
+Copyright:
+License:
+#Header:
+#@node killpg
+#@section @code{killpg}
+#@findex killpg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/killpg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/l64a.texi
+Hash: 3a5a8f79a5d9f35a37ef6d7a789b7b472f3216854a7fcb47020cf74971354cb3
+Copyright:
+License:
+#Header:
+#@node l64a
+#@section @code{l64a}
+#@findex l64a
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/l64a.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/labs.texi
+Hash: c5d6a703807a85238752dd8f84cbce03bcd5814315c8604e89065b8a9f29f77a
+Copyright:
+License:
+#Header:
+#@node labs
+#@section @code{labs}
+#@findex labs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/labs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/lchown.texi
+Hash: 2a095b0a88ad06a14515b1dbde6ec7043620d305fc7b453723867cdf5ed0cb1f
+Copyright:
+License:
+#Header:
+#@node lchown
+#@section @code{lchown}
+#@findex lchown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lchown.html}
+#
+#Gnulib module: lchown
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/lcong48.texi
+Hash: 88459cb0ea9ae0af730dd212d7fc277aea0a7c769e94d2f6b79199ce12b2a512
+Copyright:
+License:
+#Header:
+#@node lcong48
+#@section @code{lcong48}
+#@findex lcong48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lcong48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ldexp.texi
+Hash: d8b30651c56cc57e6184976bcd3f5cdc4337432a710df366e0f95f5859ba6449
+Copyright:
+License:
+#Header:
+#@node ldexp
+#@section @code{ldexp}
+#@findex ldexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldexp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/ldexpf.texi
+Hash: d00bcb96e34e28360e66b5c978e0f9c1bb5b3bdb899b81fe0b02631ba7e84d4d
+Copyright:
+License:
+#Header:
+#@node ldexpf
+#@section @code{ldexpf}
+#@findex ldexpf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldexpf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ldexpl.texi
+Hash: 829ada339592493a785909dc30d169fbeb9dc8ac27f6bf686b8ebe09d785dbba
+Copyright:
+License:
+#Header:
+#@node ldexpl
+#@section @code{ldexpl}
+#@findex ldexpl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldexpl.html}
+#
+#Gnulib module: ldexpl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5.
+#@item
+#This function has no prototype in @code{<math.h>} on some platforms:
+File: ./doc/posix-functions/ldiv.texi
+Hash: d0888e9dfe273c20f6b12c927742f3d6638da50b661f54f0ecc3a1d496153711
+Copyright:
+License:
+#Header:
+#@node ldiv
+#@section @code{ldiv}
+#@findex ldiv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldiv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/lfind.texi
+Hash: a9ab017bcc9e5a9fcabf969e05e09ca84876c73534d89e870d8a1f3d903f3f98
+Copyright:
+License:
+#Header:
+#@node lfind
+#@section @code{lfind}
+#@findex lfind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lfind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lgamma.texi
+Hash: 470520a61a348188fbde1ddb355db3ec98317bbbd5a4bbef6235b7529dc8fa2a
+Copyright:
+License:
+#Header:
+#@node lgamma
+#@section @code{lgamma}
+#@findex lgamma
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lgamma.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/lgammaf.texi
+Hash: 3340ca1262b620b9ed75884a30a81db4835f22d9c860f0fdfbd49037ce37e709
+Copyright:
+License:
+#Header:
+#@node lgammaf
+#@section @code{lgammaf}
+#@findex lgammaf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lgammaf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lgammal.texi
+Hash: 5e5d8253d524d33f78063e3e074de5de4790d5287281de939f9ada54a6705852
+Copyright:
+License:
+#Header:
+#@node lgammal
+#@section @code{lgammal}
+#@findex lgammal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lgammal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/link.texi
+Hash: 721fb6b25032be524f91ee20555d327e72ab7483675467a12a62292b15936298
+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.
+#@end itemize
+File: ./doc/posix-functions/linkat.texi
+Hash: ce3f61559a6101fa604cccc0a81fbe487ceb354cf4adb09a34aa00f85e7fc351
+Copyright:
+License:
+#Header:
+#@node linkat
+#@section @code{linkat}
+#@findex linkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/linkat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lio_listio.texi
+Hash: c1d08fd64ff293ccace2ccce4dfb34ec109f7090f89c52f2cb06db5c54a8cffa
+Copyright:
+License:
+#Header:
+#@node lio_listio
+#@section @code{lio_listio}
+#@findex lio_listio
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lio_listio.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/listen.texi
+Hash: 03a2a6206b0bfcb7a04ed70467f6c79be8290cffa99530b8a9e039d33dbdd79f
+Copyright:
+License:
+#Header:
+#@node listen
+#@section @code{listen}
+#@findex listen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/listen.html}
+#
+#Gnulib module: listen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{listen}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+File: ./doc/posix-functions/llabs.texi
+Hash: 5704f5b51267973492147aeb77944c9ad0933fc1384a10a423b46df15b4901b5
+Copyright:
+License:
+#Header:
+#@node llabs
+#@section @code{llabs}
+#@findex llabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llabs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lldiv.texi
+Hash: ee22224d40c7a02e5745932772fee532f233469cdfb89c246432ef992ebac66a
+Copyright:
+License:
+#Header:
+#@node lldiv
+#@section @code{lldiv}
+#@findex lldiv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lldiv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/llrint.texi
+Hash: 3f862bfbf3caf84d717ca4155ee2f2ada393f410182a60fc56366f4925537dfd
+Copyright:
+License:
+#Header:
+#@node llrint
+#@section @code{llrint}
+#@findex llrint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llrint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/llrintf.texi
+Hash: 83247aede57c3ef038725aecc9f342683fc1b1cfdb67b650ceace4bb856a26dd
+Copyright:
+License:
+#Header:
+#@node llrintf
+#@section @code{llrintf}
+#@findex llrintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llrintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/llrintl.texi
+Hash: ab3eeef6cd1c1dc19abc2a4f396784418136ff2da2b0a6e6cd91e9d7b64d5b9f
+Copyright:
+License:
+#Header:
+#@node llrintl
+#@section @code{llrintl}
+#@findex llrintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llrintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/llround.texi
+Hash: c748140ca47bdf7b93d2ddb245999ef7671f9e6329ae7386dd7aa9bdc0c0c61d
+Copyright:
+License:
+#Header:
+#@node llround
+#@section @code{llround}
+#@findex llround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/llroundf.texi
+Hash: a974d182d48cf3f4f1387914256124829fc72ced4b4f0e241a1d298a1e6ab17c
+Copyright:
+License:
+#Header:
+#@node llroundf
+#@section @code{llroundf}
+#@findex llroundf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llroundf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/llroundl.texi
+Hash: 16c0786bf5b7bd64b25182d4c35925082061e14e27ab40c6203d0f5f7838d6cb
+Copyright:
+License:
+#Header:
+#@node llroundl
+#@section @code{llroundl}
+#@findex llroundl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llroundl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/localeconv.texi
+Hash: d9b5bac65cb3629c70d7c2bbc8423d1181dd32c3fd8e7a9c3db48a7fc5f2e884
+Copyright:
+License:
+#Header:
+#@node localeconv
+#@section @code{localeconv}
+#@findex localeconv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/localeconv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/localtime.texi
+Hash: f55efabe8a9cc3efe0e97ec9cc7abd10fdd6b44ce79eabb8ba9494a170c44414
+Copyright:
+License:
+#Header:
+#@node localtime
+#@section @code{localtime}
+#@findex localtime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/localtime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/localtime_r.texi
+Hash: 18eff3ee8b506b64c19546e4585097687ef46c56cf3023f29bbb7c36549bc668
+Copyright:
+License:
+#Header:
+#@node localtime_r
+#@section @code{localtime_r}
+#@findex localtime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/localtime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lockf.texi
+Hash: c7357159d3ec65d81d8ae3ae09048741deb17c3d24105341bb844ae4d6c68f75
+Copyright:
+License:
+#Header:
+#@node lockf
+#@section @code{lockf}
+#@findex lockf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lockf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/log.texi
+Hash: be6326972647fb62ffadb5a669d7d58dde061bc0c584cdd502e09f1b939d4926
+Copyright:
+License:
+#Header:
+#@node log
+#@section @code{log}
+#@findex log
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/log10.texi
+Hash: 4bf234e16cce10eb06a07bc2c0c01211e19431dd14e99f073621a87a4c1fb68f
+Copyright:
+License:
+#Header:
+#@node log10
+#@section @code{log10}
+#@findex log10
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log10.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/log10f.texi
+Hash: 811604f34b79d58d4d2b00f03dec4623e329696cae765555f7a016594f0310e8
+Copyright:
+License:
+#Header:
+#@node log10f
+#@section @code{log10f}
+#@findex log10f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log10f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/log10l.texi
+Hash: e985c831bb6f56ba639b385c95b36fbff47864717facca550c8cac55e5055b21
+Copyright:
+License:
+#Header:
+#@node log10l
+#@section @code{log10l}
+#@findex log10l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log10l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/log1p.texi
+Hash: 499f997d56262cd2f6418e1ec7e697e73874bf8fa3bf66d94d569994cc040c7f
+Copyright:
+License:
+#Header:
+#@node log1p
+#@section @code{log1p}
+#@findex log1p
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log1p.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/log1pf.texi
+Hash: 850d0d4573c9bf0ffb16b33e910d10c99a45e0cd8d0eac98494724760c777cd2
+Copyright:
+License:
+#Header:
+#@node log1pf
+#@section @code{log1pf}
+#@findex log1pf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log1pf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/log1pl.texi
+Hash: 6920d505b2ccd43777218043d90d6c4410d8c87997dd73b2f249bc2360d67582
+Copyright:
+License:
+#Header:
+#@node log1pl
+#@section @code{log1pl}
+#@findex log1pl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log1pl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/log2.texi
+Hash: 72c0f561bdbe81af893f8e873ebd4dbe806bad530db44f519b19409199082887
+Copyright:
+License:
+#Header:
+#@node log2
+#@section @code{log2}
+#@findex log2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log2.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/log2f.texi
+Hash: 109ae05a1b36fa1174a4d4407fa99b2c5eaae2e7b9e30f59e3faab1178d9e85f
+Copyright:
+License:
+#Header:
+#@node log2f
+#@section @code{log2f}
+#@findex log2f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log2f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/log2l.texi
+Hash: 98e4205ef799d4c24375f28e935eff27ccd0d67d86bd6779b8405677d11f0523
+Copyright:
+License:
+#Header:
+#@node log2l
+#@section @code{log2l}
+#@findex log2l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log2l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/logb.texi
+Hash: 6d395e4ef941920f778506ad202ac5dcb235ae030c9ccfe916329e49a63c7b71
+Copyright:
+License:
+#Header:
+#@node logb
+#@section @code{logb}
+#@findex logb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/logbf.texi
+Hash: c732075e88b1628ef63b9205c9def17bcaf758d1e0c35992a2fafc3d2528655f
+Copyright:
+License:
+#Header:
+#@node logbf
+#@section @code{logbf}
+#@findex logbf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logbf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/logbl.texi
+Hash: fca1988f0cb72ad80a0962568a412de015cffb28a4cbbb9a1a81db50e29f47c2
+Copyright:
+License:
+#Header:
+#@node logbl
+#@section @code{logbl}
+#@findex logbl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logbl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/logf.texi
+Hash: 599a740ebf9dc12b8baa17e0e18aa126df9b8bc2ac51aa7c7a556693ceb61af2
+Copyright:
+License:
+#Header:
+#@node logf
+#@section @code{logf}
+#@findex logf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/logl.texi
+Hash: 96139ba06494cf8c9fdb20a21e11fe8877bb1c22c528f5f8fafc57131b5be12b
+Copyright:
+License:
+#Header:
+#@node logl
+#@section @code{logl}
+#@findex logl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/longjmp.texi
+Hash: 8037266751fc7a136b74fc698dde403a0fa71c5aaf9c84d2f4e0ae27994fd458
+Copyright:
+License:
+#Header:
+#@node longjmp
+#@section @code{longjmp}
+#@findex longjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/longjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lrand48.texi
+Hash: 869c04b348c9b6123c213743a00e56a0f3c5b4140dd0c88b90af0677a594a7ac
+Copyright:
+License:
+#Header:
+#@node lrand48
+#@section @code{lrand48}
+#@findex lrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lrint.texi
+Hash: 5e8f49fd176642d39b75ce85fa4883dd177ae6365bb3f7bc01d1adfe57137f05
+Copyright:
+License:
+#Header:
+#@node lrint
+#@section @code{lrint}
+#@findex lrint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lrintf.texi
+Hash: 08dafff5e7cdc373b185b07d2e59e50c6c21f34bba5297e4622267f3e5ba81bf
+Copyright:
+License:
+#Header:
+#@node lrintf
+#@section @code{lrintf}
+#@findex lrintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lrintl.texi
+Hash: b6b93015a9cd70a2b2a2d7f4f6c4e03b259a83dfb0e4850be2dbc5125557a3a3
+Copyright:
+License:
+#Header:
+#@node lrintl
+#@section @code{lrintl}
+#@findex lrintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lround.texi
+Hash: 7ce7fba4c411195fb1fd21ceab0c0087af9f72fa0c8582ecf336f7e485e1d50f
+Copyright:
+License:
+#Header:
+#@node lround
+#@section @code{lround}
+#@findex lround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lroundf.texi
+Hash: d2fd89e04139885ec3fe722000f941fae649dc9a7e37e9e57651994f02c20e9c
+Copyright:
+License:
+#Header:
+#@node lroundf
+#@section @code{lroundf}
+#@findex lroundf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lroundf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lroundl.texi
+Hash: 921cf7eb1bc71b4502501b3ce8d15cdf97000bd44378a8c58f624e8b89f6d528
+Copyright:
+License:
+#Header:
+#@node lroundl
+#@section @code{lroundl}
+#@findex lroundl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lroundl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lsearch.texi
+Hash: 37eec18ff286f167792759b48ba4225deeb6aa273436f0b3dbbe0bdd23c4f2c6
+Copyright:
+License:
+#Header:
+#@node lsearch
+#@section @code{lsearch}
+#@findex lsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lsearch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/lseek.texi
+Hash: 51e17228d34badd1144f78cdd1d398bd81f85ac3231f9ce3c1158f58e2cd98ad
+Copyright:
+License:
+#Header:
+#@node lseek
+#@section @code{lseek}
+#@findex lseek
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lseek.html}
+#
+#Gnulib module: lseek
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function mistakenly succeeds on pipes on some platforms: mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/lstat.texi
+Hash: ee413eccd9b78bf14988721a2eeb3e0ef1a0f352a9381743add4a0fde7d15484
+Copyright:
+License:
+#Header:
+#@node lstat
+#@section @code{lstat}
+#@findex lstat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lstat.html}
+#
+#Gnulib module: lstat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When the argument ends in a slash, some platforms don't dereference the
+#argument.
+#@item
+#On Windows platforms (excluding Cygwin), symlinks are not supported, so
+File: ./doc/posix-functions/malloc.texi
+Hash: e78d7433731db2f25215c9b85d86bab4074a9386c851e3e7652b3a773f9ffa4c
+Copyright:
+License:
+#Header:
+#@node malloc
+#@section @code{malloc}
+#@findex malloc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/malloc.html}
+#
+#Gnulib module: malloc-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Upon failure, the function does not set @code{errno} to @code{ENOMEM} on
+#some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/mblen.texi
+Hash: 6d48d1ed4b248c087c438895fc11497d19518e31fd66e3b62dfb31a82725fba4
+Copyright:
+License:
+#Header:
+#@node mblen
+#@section @code{mblen}
+#@findex mblen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mblen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/mbrlen.texi
+Hash: 0ad799fbab5e5ba27244d58a868783bef00fefc119f78dc1e60bbd4798d4f51e
+Copyright:
+License:
+#Header:
+#@node mbrlen
+#@section @code{mbrlen}
+#@findex mbrlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbrlen.html}
+#
+#Gnulib module: mbrlen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not put the state into non-initial state when parsing an
+File: ./doc/posix-functions/mbrtowc.texi
+Hash: 520568480543ec68eb430ac4973176f6b1b2d43c0e6e4d45ba73aef60a87eee5
+Copyright:
+License:
+#Header:
+#@node mbrtowc
+#@section @code{mbrtowc}
+#@findex mbrtowc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbrtowc.html}
+#
+#Gnulib module: mbrtowc
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not put the state into non-initial state when parsing an
+File: ./doc/posix-functions/mbsinit.texi
+Hash: 5df56fe636ad7622c7d031432f90eb3e4538ae9741ef0dae2b26dce74bf28c6f
+Copyright:
+License:
+#Header:
+#@node mbsinit
+#@section @code{mbsinit}
+#@findex mbsinit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbsinit.html}
+#
+#Gnulib module: mbsinit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/mbsnrtowcs.texi
+Hash: 1e379a2b7e5692fee1cf2caa04b0f12222eb783c0aacffee63560278e24e6ecc
+Copyright:
+License:
+#Header:
+#@node mbsnrtowcs
+#@section @code{mbsnrtowcs}
+#@findex mbsnrtowcs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbsnrtowcs.html}
+#
+#Gnulib module: mbsnrtowcs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX
+#11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/mbsrtowcs.texi
+Hash: 45316856d475ec5e2b93376b87b78c48f7f8d80439cd569005b87b8ae1d7f903
+Copyright:
+License:
+#Header:
+#@node mbsrtowcs
+#@section @code{mbsrtowcs}
+#@findex mbsrtowcs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbsrtowcs.html}
+#
+#Gnulib module: mbsrtowcs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not work on some platforms:
+File: ./doc/posix-functions/mbstowcs.texi
+Hash: 0ce649672c4e398cd8cf49a87e9b998673d368e3f9cccb224a05f172ce73e065
+Copyright:
+License:
+#Header:
+#@node mbstowcs
+#@section @code{mbstowcs}
+#@findex mbstowcs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbstowcs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mbtowc.texi
+Hash: 715f7f61b6dea73f4e6db5662d9eb0d7117bf43a6e82afd979f2992d992de84d
+Copyright:
+License:
+#Header:
+#@node mbtowc
+#@section @code{mbtowc}
+#@findex mbtowc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbtowc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/memccpy.texi
+Hash: a6d645adccd00addeee11377bd0d94a9a49c5abc74697957704ef86ef88d7ecb
+Copyright:
+License:
+#Header:
+#@node memccpy
+#@section @code{memccpy}
+#@findex memccpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memccpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/memchr.texi
+Hash: 3548b31bdafed633760e3d40a863cfb4b7eb601216d255a29de29bb5f7088f9e
+Copyright:
+License:
+#Header:
+#@node memchr
+#@section @code{memchr}
+#@findex memchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memchr.html}
+#
+#Gnulib module: memchr
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#
+#@item
+#This function dereferences too much memory on some platforms:
+File: ./doc/posix-functions/memcmp.texi
+Hash: fb3797a49dc2164707d9ba379894b5b1e34d43b30e554e4bc3782e4509001f2f
+Copyright:
+License:
+#Header:
+#@node memcmp
+#@section @code{memcmp}
+#@findex memcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memcmp.html}
+#
+#Gnulib module: memcmp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@item
+#This function does not work on 8-bit data on some older platforms:
+#SunOS 4.1.3.
+File: ./doc/posix-functions/memcpy.texi
+Hash: 271f9b21c10b20785135079403e037a4f52ad844b7602913211ff63f94564bcb
+Copyright:
+License:
+#Header:
+#@node memcpy
+#@section @code{memcpy}
+#@findex memcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memcpy.html}
+#
+#Gnulib module: memcpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/memmove.texi
+Hash: 0f200deaacb14c33d323ffa83873f3b54922ae9f6c0306fe66c0516671387261
+Copyright:
+License:
+#Header:
+#@node memmove
+#@section @code{memmove}
+#@findex memmove
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memmove.html}
+#
+#Gnulib module: memmove
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/memset.texi
+Hash: 493093091c332e7fc5a23362e072380e883d206806a2326770839b8e60f0d3ca
+Copyright:
+License:
+#Header:
+#@node memset
+#@section @code{memset}
+#@findex memset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memset.html}
+#
+#Gnulib module: memset
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/mkdir.texi
+Hash: 93475369c168cbc0c38f7b20835aee152d2ae281996e0d345aac4cbfa7abc331
+Copyright:
+License:
+#Header:
+#@node mkdir
+#@section @code{mkdir}
+#@findex mkdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkdir.html}
+#
+#Gnulib module: mkdir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When the argument ends in a slash, the function call fails on some platforms.
+#@item
+#On Windows platforms (excluding Cygwin), this function is called @code{_mkdir}
+#and takes only one argument.  The fix (without Gnulib) is to define a macro
+File: ./doc/posix-functions/mkdirat.texi
+Hash: 55a0d02781ba86cb46e9723bea32885e1790894fa991dc3c01e6506e5fae2f81
+Copyright:
+License:
+#Header:
+#@node mkdirat
+#@section @code{mkdirat}
+#@findex mkdirat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkdirat.html}
+#
+#Gnulib module: openat
+#
+#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.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+File: ./doc/posix-functions/mkdtemp.texi
+Hash: 58eea11250f1276e5fd5c59cc33e1addcc62f6cd091dd15a83e428be08f7b252
+Copyright:
+License:
+#Header:
+#@node mkdtemp
+#@section @code{mkdtemp}
+#@findex mkdtemp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkdtemp.html}
+#
+#Gnulib module: mkdtemp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/mkfifo.texi
+Hash: 39b9fab073e009e8b6a169b2190d5572e513385c694e327e70bcf1db6a159b35
+Copyright:
+License:
+#Header:
+#@node mkfifo
+#@section @code{mkfifo}
+#@findex mkfifo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkfifo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mkfifoat.texi
+Hash: 205800e3bc3436f4b16ce670afff063c55a0da3a798b107e364045fa4a967ed5
+Copyright:
+License:
+#Header:
+#@node mkfifoat
+#@section @code{mkfifoat}
+#@findex mkfifoat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkfifoat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mknod.texi
+Hash: 3f6809f0a4fa73e85bc918802a632cd0192c1c5c2801cd7eaa1b2824469fd3a1
+Copyright:
+License:
+#Header:
+#@node mknod
+#@section @code{mknod}
+#@findex mknod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mknod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mknodat.texi
+Hash: 8e780cc65b29f438053a6cb070c21ca28168dc988f47fb72e9f3810c721768d8
+Copyright:
+License:
+#Header:
+#@node mknodat
+#@section @code{mknodat}
+#@findex mknodat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mknodat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mkstemp.texi
+Hash: 854e7e497a0388612e8d2d0c212c25f4fd94333ba825e1b9df90b94bbbff394a
+Copyright:
+License:
+#Header:
+#@node mkstemp
+#@section @code{mkstemp}
+#@findex mkstemp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkstemp.html}
+#
+#Gnulib module: mkstemp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#On some platforms (HP-UX 10.20, SunOS 4.1.4, Solaris 2.5.1), mkstemp has a silly
+File: ./doc/posix-functions/mktime.texi
+Hash: 9948a151a3eb7c4b07a411a58f1bc5da74bdf24f291daae2f1262a0fdd044804
+Copyright:
+License:
+#Header:
+#@node mktime
+#@section @code{mktime}
+#@findex mktime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mktime.html}
+#
+#Gnulib module: mktime
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{mktime} may go into an endless loop on some platforms.
+#@item
+#@code{mktime} may occasionally return wrong results on some platforms.
+#@end itemize
+File: ./doc/posix-functions/mlock.texi
+Hash: 3ddcd068484f0953b2b2583b4036fdd4d6ecb22893c51cacbb61a36f1493c6bc
+Copyright:
+License:
+#Header:
+#@node mlock
+#@section @code{mlock}
+#@findex mlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mlockall.texi
+Hash: 2d15848617dd2c8c5b5d582ba37f8def1777193fefd8f521f1e8583682c62a21
+Copyright:
+License:
+#Header:
+#@node mlockall
+#@section @code{mlockall}
+#@findex mlockall
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mlockall.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mmap.texi
+Hash: bfee4ecb3ebec6d283db88b6cd390ef0301ce7a0937a80d25529c74f0b8f569e
+Copyright:
+License:
+#Header:
+#@node mmap
+#@section @code{mmap}
+#@findex mmap
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mmap.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/modf.texi
+Hash: 36b354917e56d61e5900a08fab91604eaa9cc08e2d86e46267f8d898c818bf40
+Copyright:
+License:
+#Header:
+#@node modf
+#@section @code{modf}
+#@findex modf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/modf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/modff.texi
+Hash: f7b8c38291b91e6ad35e04c0ebfb9097945ce77ebda26a3c990bf2fe1aaea28a
+Copyright:
+License:
+#Header:
+#@node modff
+#@section @code{modff}
+#@findex modff
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/modff.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/modfl.texi
+Hash: 3b679719015e572d20de79124954057ab191f83370ed03edd791b794cfe6bc43
+Copyright:
+License:
+#Header:
+#@node modfl
+#@section @code{modfl}
+#@findex modfl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/modfl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mprotect.texi
+Hash: 3d0e06eb9e85ed18105ac9c8f7ad12a98e74b8b3a67de5e954dc6154290cb58c
+Copyright:
+License:
+#Header:
+#@node mprotect
+#@section @code{mprotect}
+#@findex mprotect
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mprotect.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_close.texi
+Hash: a56bfb44d12f03e97f995b9a9c1633b24f89498f43ebbc542b4d352b1778cd08
+Copyright:
+License:
+#Header:
+#@node mq_close
+#@section @code{mq_close}
+#@findex mq_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_getattr.texi
+Hash: 8ac60fce24f63e597e3177997e50fb60bcc5fb27a291934c400a0648f9326552
+Copyright:
+License:
+#Header:
+#@node mq_getattr
+#@section @code{mq_getattr}
+#@findex mq_getattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_getattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_notify.texi
+Hash: e0ba4512bebe0e27c550f7b746e54cb1925f3b3db361afaa8f4ee31a7e528710
+Copyright:
+License:
+#Header:
+#@node mq_notify
+#@section @code{mq_notify}
+#@findex mq_notify
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_notify.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_open.texi
+Hash: 8849def00e0a469a4c36a935d2a9edacc7a8fca13afc8d0b189b1ab3a8c4a263
+Copyright:
+License:
+#Header:
+#@node mq_open
+#@section @code{mq_open}
+#@findex mq_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_receive.texi
+Hash: 41a216e485977c77bc0469b7caca4239d7b859ee983130f7cbb60df8b0c743e1
+Copyright:
+License:
+#Header:
+#@node mq_receive
+#@section @code{mq_receive}
+#@findex mq_receive
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_receive.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_send.texi
+Hash: 034db31411edca3bd8d9aa67b8dcebc8bda230d3dfe632da530c17bd4c4544d4
+Copyright:
+License:
+#Header:
+#@node mq_send
+#@section @code{mq_send}
+#@findex mq_send
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_send.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_setattr.texi
+Hash: e5a4f564cc977a25d0ee56ff5129950ab519621fa7e8161649ef772f72159396
+Copyright:
+License:
+#Header:
+#@node mq_setattr
+#@section @code{mq_setattr}
+#@findex mq_setattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_setattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_timedreceive.texi
+Hash: 8d49fce0e031fc61180b5352a420b1fe8ba491b8ecf4ccba972e3e9ebd6e7631
+Copyright:
+License:
+#Header:
+#@node mq_timedreceive
+#@section @code{mq_timedreceive}
+#@findex mq_timedreceive
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_timedreceive.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_timedsend.texi
+Hash: a79f94772aefae158a027486aea868c68d2fe9e08eaf409ec3540d187dc16f00
+Copyright:
+License:
+#Header:
+#@node mq_timedsend
+#@section @code{mq_timedsend}
+#@findex mq_timedsend
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_timedsend.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mq_unlink.texi
+Hash: 7b5dab50039e7c0b0f3170569e637158b1c1bf41c38e13d14986cea14f56c25d
+Copyright:
+License:
+#Header:
+#@node mq_unlink
+#@section @code{mq_unlink}
+#@findex mq_unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/mrand48.texi
+Hash: 77b10e37a5687d7495e536135140dd9e074b12afc20f2d3e3dd07073057b8972
+Copyright:
+License:
+#Header:
+#@node mrand48
+#@section @code{mrand48}
+#@findex mrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/msgctl.texi
+Hash: 46d3ee99b2282ef2910c1b2592050c0cf79178bff7eae0c92ca2ac2f7336b2a3
+Copyright:
+License:
+#Header:
+#@node msgctl
+#@section @code{msgctl}
+#@findex msgctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgctl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/msgget.texi
+Hash: 58fc127eae240377ef7505629f2570cf4e3276d5d301994fcb171e5d6b367ffc
+Copyright:
+License:
+#Header:
+#@node msgget
+#@section @code{msgget}
+#@findex msgget
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgget.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/msgrcv.texi
+Hash: 88bf2464eb8f30cbb7678eb5f8582cf8d2c4644bc486f30146d77d2064e10c7b
+Copyright:
+License:
+#Header:
+#@node msgrcv
+#@section @code{msgrcv}
+#@findex msgrcv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgrcv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/msgsnd.texi
+Hash: 9f75f5e72c64235284ea705f9b5fe2e6f9aea288231af9bc5dfaf7f66a26fa7f
+Copyright:
+License:
+#Header:
+#@node msgsnd
+#@section @code{msgsnd}
+#@findex msgsnd
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgsnd.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/msync.texi
+Hash: ff9ca91d2e004f54a4b0ef17bb84d7b272507c512312101dae3bd3af1be33e90
+Copyright:
+License:
+#Header:
+#@node msync
+#@section @code{msync}
+#@findex msync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/munlock.texi
+Hash: f441bed9fcbcb0651991726777c715db07ca4847e81820ede03031a157d97c9c
+Copyright:
+License:
+#Header:
+#@node munlock
+#@section @code{munlock}
+#@findex munlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/munlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/munlockall.texi
+Hash: 550be841155556e1b32abab434902c90652e6a481f0e539fa6ad9f0342967900
+Copyright:
+License:
+#Header:
+#@node munlockall
+#@section @code{munlockall}
+#@findex munlockall
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/munlockall.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/munmap.texi
+Hash: 47168b653c372c13df047fa6fdb676f3064d2f2a0968c7e9dcd0383d16134841
+Copyright:
+License:
+#Header:
+#@node munmap
+#@section @code{munmap}
+#@findex munmap
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/munmap.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nan.texi
+Hash: 0a369ac906fcd75126107c5a2079e19d39ac77c16fff7959d1283f3692f2d6c9
+Copyright:
+License:
+#Header:
+#@node nan
+#@section @code{nan}
+#@findex nan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nanf.texi
+Hash: ddff9bef8fbddbb5702b052b2591f73ae516edafe27040fe81d4abbdbc0d2dd8
+Copyright:
+License:
+#Header:
+#@node nanf
+#@section @code{nanf}
+#@findex nanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nanl.texi
+Hash: 55f965fb9e233ea8afdd9b3ef17ce5d14877c6ac793e0c9e8b160ac423075509
+Copyright:
+License:
+#Header:
+#@node nanl
+#@section @code{nanl}
+#@findex nanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nanosleep.texi
+Hash: 74dbeddd80b4214c4974b632dae914216068c850827943c4904342e11ef8a2a6
+Copyright:
+License:
+#Header:
+#@node nanosleep
+#@section @code{nanosleep}
+#@findex nanosleep
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nanosleep.html}
+#
+#Gnulib module: nanosleep
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 2.4, mingw, Interix 3.5, BeOS.
+#@item
+#This function reports failure when called with small arguments such as 1 ns
+File: ./doc/posix-functions/nearbyint.texi
+Hash: 13393f4950af6047d63e095573a302430f81f67dc0c50408609af16e34d6e142
+Copyright:
+License:
+#Header:
+#@node nearbyint
+#@section @code{nearbyint}
+#@findex nearbyint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nearbyint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nearbyintf.texi
+Hash: 658e59bc27cd904e0cc47775321320c8377162f26b6d18de60806a40b96e1352
+Copyright:
+License:
+#Header:
+#@node nearbyintf
+#@section @code{nearbyintf}
+#@findex nearbyintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nearbyintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nearbyintl.texi
+Hash: 661f4dab520ac6b7bb2b11af811a20f3f94e1316de51decb0473347458399b8a
+Copyright:
+License:
+#Header:
+#@node nearbyintl
+#@section @code{nearbyintl}
+#@findex nearbyintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nearbyintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/newlocale.texi
+Hash: c04df75e62461fd14ae6c3d3ebe84ee9df02879c42e5ec26e3badb347e8a822b
+Copyright:
+License:
+#Header:
+#@node newlocale
+#@section @code{newlocale}
+#@findex newlocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/newlocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nextafter.texi
+Hash: 23887e9fbefc390b519abbea6463ab6aa11624d06486049a55f9027ab63e0297
+Copyright:
+License:
+#Header:
+#@node nextafter
+#@section @code{nextafter}
+#@findex nextafter
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nextafter.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/nextafterf.texi
+Hash: a0739a1545689a8a038e7f98cb5da84b0c2e4c668767cc241f669e1704194921
+Copyright:
+License:
+#Header:
+#@node nextafterf
+#@section @code{nextafterf}
+#@findex nextafterf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nextafterf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nextafterl.texi
+Hash: d20c3001ccd5e5ce8d6ef61d92bfc6ecf9e9bca011df94ced795f48cf3dc789f
+Copyright:
+License:
+#Header:
+#@node nextafterl
+#@section @code{nextafterl}
+#@findex nextafterl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nextafterl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nexttoward.texi
+Hash: 837e8d7788c026deb3665bb845b6da33504cb7b33b457b86b2b8ec0916d1947a
+Copyright:
+License:
+#Header:
+#@node nexttoward
+#@section @code{nexttoward}
+#@findex nexttoward
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nexttoward.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nexttowardf.texi
+Hash: bb03bf44dad18e6e2a6f1c7a066871d7a89d2fbeb520bf1399522c9d7b35ba98
+Copyright:
+License:
+#Header:
+#@node nexttowardf
+#@section @code{nexttowardf}
+#@findex nexttowardf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nexttowardf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nexttowardl.texi
+Hash: 082ca469237887b3be9e6ddbe4ae66c7f5eed2f7fb7062b0459ab448bd830692
+Copyright:
+License:
+#Header:
+#@node nexttowardl
+#@section @code{nexttowardl}
+#@findex nexttowardl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nexttowardl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nftw.texi
+Hash: 7fc01f24b0225147ab2c52dc7481fb2663bb13253c9fc0a485991f3bc872b472
+Copyright:
+License:
+#Header:
+#@node nftw
+#@section @code{nftw}
+#@findex nftw
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nftw.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nice.texi
+Hash: 58412f950c076fdb2593a0a7f2cefa1a80d9d131fb4c3052ea7ef9dc859fecf5
+Copyright:
+License:
+#Header:
+#@node nice
+#@section @code{nice}
+#@findex nice
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nice.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nl_langinfo.texi
+Hash: 8cf67efe07150e73545ca1afa1ae02d47bff384e876aed78f1b75998dc918249
+Copyright:
+License:
+#Header:
+#@node nl_langinfo
+#@section @code{nl_langinfo}
+#@findex nl_langinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nl_langinfo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nl_langinfo_l.texi
+Hash: 46d1682b37126005dcf251b40c854bbc8203ebdd0e7574f91535b4bfa8be7ead
+Copyright:
+License:
+#Header:
+#@node nl_langinfo_l
+#@section @code{nl_langinfo_l}
+#@findex nl_langinfo_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nl_langinfo_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/nrand48.texi
+Hash: e36c51acdcb113964729a4a2eeb0ac143221961015efa80b42f2cd34f7270f66
+Copyright:
+License:
+#Header:
+#@node nrand48
+#@section @code{nrand48}
+#@findex nrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ntohl.texi
+Hash: 84d74eeaededb546d305d99930dcbdc1ec3918999eb3fb851e28a2e7e37774c2
+Copyright:
+License:
+#Header:
+#@node ntohl
+#@section @code{ntohl}
+#@findex ntohl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ntohl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ntohs.texi
+Hash: 346b0124f78840014b5262a674e22a0703994c64c3adb0382afd49fafd802917
+Copyright:
+License:
+#Header:
+#@node ntohs
+#@section @code{ntohs}
+#@findex ntohs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ntohs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/open.texi
+Hash: 9e866007c32b3f629186f32bce84b0a2a3e8cc628147c7d200325bd60e5b530e
+Copyright:
+License:
+#Header:
+#@node open
+#@section @code{open}
+#@findex open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open.html}
+#
+#Gnulib module: open, fchdir
+#
+#Portability problems fixed by the Gnulib module open:
+#@itemize
+#@item
+#This function does not fail when the file name argument ends in a slash
+#and (without the slash) names a nonexistent file or a file that is not a
+#directory, on some platforms:
+#HP-UX 11.00, Solaris 9, Irix 5.3.
+File: ./doc/posix-functions/open_memstream.texi
+Hash: 4afd28eeda8db17ab5af1f4571340f1593a74742069e35c8cf025d3e3edabb55
+Copyright:
+License:
+#Header:
+#@node open_memstream
+#@section @code{open_memstream}
+#@findex open_memstream
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open_memstream.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/open_wmemstream.texi
+Hash: ab0f60c7c0a5d80df458598941a4f36408ebce2fc18455086a89a587a8b6e310
+Copyright:
+License:
+#Header:
+#@node open_wmemstream
+#@section @code{open_wmemstream}
+#@findex open_wmemstream
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open_wmemstream.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/openat.texi
+Hash: 80fc53551f0a774542028faa3cd7dd7f257f96517e5a3bbf7f15d60c3fcab7ec
+Copyright:
+License:
+#Header:
+#@node openat
+#@section @code{openat}
+#@findex openat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/openat.html}
+#
+#Gnulib module: openat
+#
+#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, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+File: ./doc/posix-functions/opendir.texi
+Hash: 409c08736bec42c21409505d8b5549e441a5af2426e3bd68dfcc7c0b5880f4f2
+Copyright:
+License:
+#Header:
+#@node opendir
+#@section @code{opendir}
+#@findex opendir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/opendir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/openlog.texi
+Hash: 40e398533022603918e1db1621467abcac006a911ad223ea5ea7b80d98a69100
+Copyright:
+License:
+#Header:
+#@node openlog
+#@section @code{openlog}
+#@findex openlog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/openlog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/optarg.texi
+Hash: e9113b3f78a586f104d7a7e3bdce30cec774d7049394ed1c71473825b52c869e
+Copyright:
+License:
+#Header:
+#@node optarg
+#@section @code{optarg}
+#@findex optarg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/optarg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/opterr.texi
+Hash: ddda71a2c3fda560885aaf6c435efd85469d21bcb910f55e513971e25fb01fd2
+Copyright:
+License:
+#Header:
+#@node opterr
+#@section @code{opterr}
+#@findex opterr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/opterr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/optind.texi
+Hash: 192b89c39131f5ac56cb1a3d9199545cfee9c6fe3a13676980cf647c873d9124
+Copyright:
+License:
+#Header:
+#@node optind
+#@section @code{optind}
+#@findex optind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/optind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/optopt.texi
+Hash: d9f81d4c490100d92492662b974e59f12d07be11c28dc993037a84dfb37fdc0b
+Copyright:
+License:
+#Header:
+#@node optopt
+#@section @code{optopt}
+#@findex optopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/optopt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pathconf.texi
+Hash: c0dbda6dd42136873beaddaea136fa8d5e46596bfdc335e578a88f1954718794
+Copyright:
+License:
+#Header:
+#@node pathconf
+#@section @code{pathconf}
+#@findex pathconf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pathconf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pause.texi
+Hash: 7be4007b12a3aa330139297e66ae074f67ed9e19f3efa28582619f8c071c874a
+Copyright:
+License:
+#Header:
+#@node pause
+#@section @code{pause}
+#@findex pause
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pause.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pclose.texi
+Hash: 4361d8543ae29315a5c5e958d4db37667ba5317d2a3b334cc611046b77e73a7c
+Copyright:
+License:
+#Header:
+#@node pclose
+#@section @code{pclose}
+#@findex pclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pclose.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/perror.texi
+Hash: b652cbfe9d21d2bbd3ee7784a6a707d27fc1e60293c59183002538640dc279f3
+Copyright:
+License:
+#Header:
+#@node perror
+#@section @code{perror}
+#@findex perror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/perror.html}
+#
+#Gnulib module: perror
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not support the error values that are specified by POSIX
+#but not defined by the system, on some platforms:
+#OpenBSD 4.0, OSF/1 5.1, Cygwin 1.5.x, mingw.
+#@end itemize
+File: ./doc/posix-functions/pipe.texi
+Hash: cb47c3d1e90c0d73c702255148b3c20889270387c041db34e9c41b29920f90dc
+Copyright:
+License:
+#Header:
+#@node pipe
+#@section @code{pipe}
+#@findex pipe
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pipe.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/poll.texi
+Hash: f05ad8c422fac0e80c3ae47f256e275d4a2f386ad1a8c258b3a40f16337f8dbe
+Copyright:
+License:
+#Header:
+#@node poll
+#@section @code{poll}
+#@findex poll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/poll.html}
+#
+#Gnulib module: poll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@item
+#This function doesn't work on special files like @file{/dev/null} and ttys like
+File: ./doc/posix-functions/popen.texi
+Hash: 4c7662a6c9a1f5fec49e1ed88fe924f8ba389ced30dc44570469332009095c20
+Copyright:
+License:
+#Header:
+#@node popen
+#@section @code{popen}
+#@findex popen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/popen.html}
+#
+#Gnulib module: popen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some platforms start the child with closed stdin or stdout if the
+#standard descriptors were closed in the parent:
+#Cygwin 1.5.x.
+#@end itemize
+File: ./doc/posix-functions/posix_fadvise.texi
+Hash: ea8c8e4c81a8ad7a313cb6d2071239f26e453d6034b32cad4214ea95e4536247
+Copyright:
+License:
+#Header:
+#@node posix_fadvise
+#@section @code{posix_fadvise}
+#@findex posix_fadvise
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_fadvise.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_fallocate.texi
+Hash: 96ba33b3301a1d3b05885d284a49dcbeb84b73adc39ac1b7752f694e0f2eeab2
+Copyright:
+License:
+#Header:
+#@node posix_fallocate
+#@section @code{posix_fallocate}
+#@findex posix_fallocate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_fallocate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_madvise.texi
+Hash: 98abbcde99ca724ebecd7393f0bdc2f4425d743cdd8680118aa3df87c6d3fe81
+Copyright:
+License:
+#Header:
+#@node posix_madvise
+#@section @code{posix_madvise}
+#@findex posix_madvise
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_madvise.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_mem_offset.texi
+Hash: d18ab511cf764975dd21a03e966791ffe4e4f7352616a030dcaeca77dde7fca9
+Copyright:
+License:
+#Header:
+#@node posix_mem_offset
+#@section @code{posix_mem_offset}
+#@findex posix_mem_offset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_mem_offset.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_memalign.texi
+Hash: 02a09479dd9153ce72aaa2dedefd1dd8b5e57f2b88e5f8d303f49dc60e4b3246
+Copyright:
+License:
+#Header:
+#@node posix_memalign
+#@section @code{posix_memalign}
+#@findex posix_memalign
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_memalign.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_openpt.texi
+Hash: 0f0fb194f87d863cb37d2585c3b4f6bde4369d1319d5d306c27d39d61844d363
+Copyright:
+License:
+#Header:
+#@node posix_openpt
+#@section @code{posix_openpt}
+#@findex posix_openpt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_openpt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_spawn.texi
+Hash: e8116c7284d0ec8e3dc77be2760763dd4af6ccb6994f2021dd212cdf8e8ada0f
+Copyright:
+License:
+#Header:
+#@node posix_spawn
+#@section @code{posix_spawn}
+#@findex posix_spawn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn.html}
+#
+#Gnulib module: posix_spawn
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@item
+#When this function fails, it causes the stdio buffer contents to be output
+File: ./doc/posix-functions/posix_spawn_file_actions_addclose.texi
+Hash: 5828164a4deeee9c954a4136871b3177b6eecfce75506176eb6cf3a4a9a62b21
+Copyright:
+License:
+#Header:
+#@node posix_spawn_file_actions_addclose
+#@section @code{posix_spawn_file_actions_addclose}
+#@findex posix_spawn_file_actions_addclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_addclose.html}
+#
+#Gnulib module: posix_spawn_file_actions_addclose
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawn_file_actions_adddup2.texi
+Hash: 23e93dc2b98cc5650771f750cd28d8a2c3cfa59af0b565de46c712cf0b06ecd8
+Copyright:
+License:
+#Header:
+#@node posix_spawn_file_actions_adddup2
+#@section @code{posix_spawn_file_actions_adddup2}
+#@findex posix_spawn_file_actions_adddup2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_adddup2.html}
+#
+#Gnulib module: posix_spawn_file_actions_adddup2
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawn_file_actions_addopen.texi
+Hash: 522057f36d8f4a88c26630242bc87528fe3805438388b44c93d97243e5e86ee4
+Copyright:
+License:
+#Header:
+#@node posix_spawn_file_actions_addopen
+#@section @code{posix_spawn_file_actions_addopen}
+#@findex posix_spawn_file_actions_addopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_addopen.html}
+#
+#Gnulib module: posix_spawn_file_actions_addopen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawn_file_actions_destroy.texi
+Hash: 0320d879a8c7e3d36619bfb1f542513ab285a601fc716bcab9fdea8764842984
+Copyright:
+License:
+#Header:
+#@node posix_spawn_file_actions_destroy
+#@section @code{posix_spawn_file_actions_destroy}
+#@findex posix_spawn_file_actions_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_destroy.html}
+#
+#Gnulib module: posix_spawn_file_actions_destroy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawn_file_actions_init.texi
+Hash: 9c12cdbb6ac1e39ce5f80f8dacd02b40fdce55904a2e4d3273598a7f1bffe25b
+Copyright:
+License:
+#Header:
+#@node posix_spawn_file_actions_init
+#@section @code{posix_spawn_file_actions_init}
+#@findex posix_spawn_file_actions_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_init.html}
+#
+#Gnulib module: posix_spawn_file_actions_init
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_destroy.texi
+Hash: 385601a0adb59e6a946cc5ae70ad2121a0fc1f9cf9bde84bbbf7067ec3c2cc3b
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_destroy
+#@section @code{posix_spawnattr_destroy}
+#@findex posix_spawnattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_destroy.html}
+#
+#Gnulib module: posix_spawnattr_destroy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_getflags.texi
+Hash: 695f28460ef4a0e41614dff4ca0af1d3a1198c9ef166951ba33c8c1c6b9b83fb
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_getflags
+#@section @code{posix_spawnattr_getflags}
+#@findex posix_spawnattr_getflags
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getflags.html}
+#
+#Gnulib module: posix_spawnattr_getflags
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_getpgroup.texi
+Hash: 26c66e902b05529bac72419304ce248d35a25c40c99998b6cd93e4ea45cf0df7
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_getpgroup
+#@section @code{posix_spawnattr_getpgroup}
+#@findex posix_spawnattr_getpgroup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getpgroup.html}
+#
+#Gnulib module: posix_spawnattr_getpgroup
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_getschedparam.texi
+Hash: 3e2294ef0ab8ac17b6d863152ba655db225f70152c455f422c01d3f765dea9b0
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_getschedparam
+#@section @code{posix_spawnattr_getschedparam}
+#@findex posix_spawnattr_getschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getschedparam.html}
+#
+#Gnulib module: posix_spawnattr_getschedparam
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_getschedpolicy.texi
+Hash: dd9c3f74a80529c49eb3962334b976c600292f50854c2eac240b32cdc573d28d
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_getschedpolicy
+#@section @code{posix_spawnattr_getschedpolicy}
+#@findex posix_spawnattr_getschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getschedpolicy.html}
+#
+#Gnulib module: posix_spawnattr_getschedpolicy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_getsigdefault.texi
+Hash: 3e7e418f2d92c3196aa025cc49aa12be6db364564c10b87d44627ef5fb4f2807
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_getsigdefault
+#@section @code{posix_spawnattr_getsigdefault}
+#@findex posix_spawnattr_getsigdefault
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getsigdefault.html}
+#
+#Gnulib module: posix_spawnattr_getsigdefault
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_getsigmask.texi
+Hash: 26b824db4f09a65050f6350b6971cbf95f99ad40d1c7659764abde3e54fd3227
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_getsigmask
+#@section @code{posix_spawnattr_getsigmask}
+#@findex posix_spawnattr_getsigmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getsigmask.html}
+#
+#Gnulib module: posix_spawnattr_getsigmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_init.texi
+Hash: 05f5786c234980a42a111d033f5130bc683e09bd9cd420dbb993e0db4223241f
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_init
+#@section @code{posix_spawnattr_init}
+#@findex posix_spawnattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_init.html}
+#
+#Gnulib module: posix_spawnattr_init
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_setflags.texi
+Hash: c3de08bb23b2e056a9d1fa457d78be2d64717b957d66d6f7705215017389224b
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_setflags
+#@section @code{posix_spawnattr_setflags}
+#@findex posix_spawnattr_setflags
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setflags.html}
+#
+#Gnulib module: posix_spawnattr_setflags
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_setpgroup.texi
+Hash: 548430de694da18955230250c1034b6b515fcf30129079d539a13f426c9fe22c
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_setpgroup
+#@section @code{posix_spawnattr_setpgroup}
+#@findex posix_spawnattr_setpgroup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setpgroup.html}
+#
+#Gnulib module: posix_spawnattr_setpgroup
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_setschedparam.texi
+Hash: af7be1846ac7bd0fc6d107f8399458067710b5e221a3b728512b6a6204c21913
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_setschedparam
+#@section @code{posix_spawnattr_setschedparam}
+#@findex posix_spawnattr_setschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setschedparam.html}
+#
+#Gnulib module: posix_spawnattr_setschedparam
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_setschedpolicy.texi
+Hash: 3adfc655a7b0cf55cc89761c9d64309a2cbf0adc724701cd3e2b2bd9a51f09ff
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_setschedpolicy
+#@section @code{posix_spawnattr_setschedpolicy}
+#@findex posix_spawnattr_setschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setschedpolicy.html}
+#
+#Gnulib module: posix_spawnattr_setschedpolicy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_setsigdefault.texi
+Hash: cb24fc7291758ad7f30bad7a96cdd26f0defa4f28fec0be8d02a1e2ed6bc20a0
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_setsigdefault
+#@section @code{posix_spawnattr_setsigdefault}
+#@findex posix_spawnattr_setsigdefault
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setsigdefault.html}
+#
+#Gnulib module: posix_spawnattr_setsigdefault
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnattr_setsigmask.texi
+Hash: 3661e1c23a65c97c9af7008e3af513555234a91aaaeffc6e801f0757067618d5
+Copyright:
+License:
+#Header:
+#@node posix_spawnattr_setsigmask
+#@section @code{posix_spawnattr_setsigmask}
+#@findex posix_spawnattr_setsigmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setsigmask.html}
+#
+#Gnulib module: posix_spawnattr_setsigmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/posix_spawnp.texi
+Hash: 55d59c76213c7914c86b8a3fb623b4c073d49641d72949547638acb49c9019d7
+Copyright:
+License:
+#Header:
+#@node posix_spawnp
+#@section @code{posix_spawnp}
+#@findex posix_spawnp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnp.html}
+#
+#Gnulib module: posix_spawnp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@item
+#When this function fails, it causes the stdio buffer contents to be output
+File: ./doc/posix-functions/posix_trace_attr_destroy.texi
+Hash: 26c37bafe4af14e0a6c567e810277b9b5847122cf0f87cac16ff94a8b8e214be
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_destroy
+#@section @code{posix_trace_attr_destroy}
+#@findex posix_trace_attr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getclockres.texi
+Hash: c6df2399c6ebb47e6328cf303b80492f9748c8a4f167ef2f563cda59860e2cfd
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getclockres
+#@section @code{posix_trace_attr_getclockres}
+#@findex posix_trace_attr_getclockres
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getclockres.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getcreatetime.texi
+Hash: 0bba6eb668452771990a8c1dfff7134f74e136d9f8618c4228b9f56cdd51e442
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getcreatetime
+#@section @code{posix_trace_attr_getcreatetime}
+#@findex posix_trace_attr_getcreatetime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getcreatetime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getgenversion.texi
+Hash: 3494fd0e404cc8a99e72fc28c50d13b44d0438785ac74292e84c20347da5a40b
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getgenversion
+#@section @code{posix_trace_attr_getgenversion}
+#@findex posix_trace_attr_getgenversion
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getgenversion.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getinherited.texi
+Hash: 9c3dc2682ee4f8efbe8238a459642164bd53c4a73c5054f8cdc73dcb152db424
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getinherited
+#@section @code{posix_trace_attr_getinherited}
+#@findex posix_trace_attr_getinherited
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getinherited.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getlogfullpolicy.texi
+Hash: c6e5f0d91562ec40cc54987dbb2c567e9c66d6c87ac0954dca87d52b5b9f8e60
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getlogfullpolicy
+#@section @code{posix_trace_attr_getlogfullpolicy}
+#@findex posix_trace_attr_getlogfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getlogfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getlogsize.texi
+Hash: 04803d6d78b225f53aa3c6147bba5367f18ba362fcb9b9b55fba0719c8d75776
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getlogsize
+#@section @code{posix_trace_attr_getlogsize}
+#@findex posix_trace_attr_getlogsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getlogsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getmaxdatasize.texi
+Hash: c25ba97d572d5ca4f69629f2a78822d6aff93b73f4da397cf43e16e3b61a6aac
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getmaxdatasize
+#@section @code{posix_trace_attr_getmaxdatasize}
+#@findex posix_trace_attr_getmaxdatasize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getmaxdatasize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getmaxsystemeventsize.texi
+Hash: b0a2f0041320b5b3ad358757b24ed4fa1e016672af6746d8933e84075d33360e
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getmaxsystemeventsize
+#@section @code{posix_trace_attr_getmaxsystemeventsize}
+#@findex posix_trace_attr_getmaxsystemeventsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getmaxsystemeventsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getmaxusereventsize.texi
+Hash: 52791fc875f1f82253f29df6b7455f7e038f106efc716777d0f6fa70436a9822
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getmaxusereventsize
+#@section @code{posix_trace_attr_getmaxusereventsize}
+#@findex posix_trace_attr_getmaxusereventsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getmaxusereventsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getname.texi
+Hash: 37e62b2df1671442499b27356f9b6d3b77eb20ee5016cd5b4b15952e434d472f
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getname
+#@section @code{posix_trace_attr_getname}
+#@findex posix_trace_attr_getname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getstreamfullpolicy.texi
+Hash: 08910c37877f7e37e6eb305bbefb233cdc16865ebbb89081846a042134cae954
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getstreamfullpolicy
+#@section @code{posix_trace_attr_getstreamfullpolicy}
+#@findex posix_trace_attr_getstreamfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getstreamfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_getstreamsize.texi
+Hash: bcc8352edee634fdc1577f4039f78bd777f7964032fcd36127a7251536f3cd8c
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_getstreamsize
+#@section @code{posix_trace_attr_getstreamsize}
+#@findex posix_trace_attr_getstreamsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getstreamsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_init.texi
+Hash: a2e83a06a534390b4974622a6b4d2ac1c637e52b91cf34d49576569d44148323
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_init
+#@section @code{posix_trace_attr_init}
+#@findex posix_trace_attr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_setinherited.texi
+Hash: 15dd2776c5a4bae1ff25c0388da2c6fe92ff206b9cdbf3c29544d97f2ba7465c
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_setinherited
+#@section @code{posix_trace_attr_setinherited}
+#@findex posix_trace_attr_setinherited
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setinherited.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_setlogfullpolicy.texi
+Hash: 6123eeb6328f6381169708420c2560630406f4964acc3c260c358ed4f9a68cda
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_setlogfullpolicy
+#@section @code{posix_trace_attr_setlogfullpolicy}
+#@findex posix_trace_attr_setlogfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setlogfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_setlogsize.texi
+Hash: b25853b00b814a81dd0c5814c1d42f14d70347723160104fcd5d43ddd8d42077
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_setlogsize
+#@section @code{posix_trace_attr_setlogsize}
+#@findex posix_trace_attr_setlogsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setlogsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_setmaxdatasize.texi
+Hash: 6bdf3f85571c822f319ac0ff9e310fa9bfcf584558103f79368e262095a9c6ab
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_setmaxdatasize
+#@section @code{posix_trace_attr_setmaxdatasize}
+#@findex posix_trace_attr_setmaxdatasize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setmaxdatasize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_setname.texi
+Hash: 64e32d78a18d51e8bfd3b23f91878fb761b87cff345ed77fed1d753114b50c10
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_setname
+#@section @code{posix_trace_attr_setname}
+#@findex posix_trace_attr_setname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_setstreamfullpolicy.texi
+Hash: 7123836aad4e0fb02113ade7138723da2ba36370a18b5b0751b1efbceb8f444c
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_setstreamfullpolicy
+#@section @code{posix_trace_attr_setstreamfullpolicy}
+#@findex posix_trace_attr_setstreamfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setstreamfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_attr_setstreamsize.texi
+Hash: 5e25d2adbc668b88bbd5d7a0ed7d0aa2c96a97c05f31f042fb5da5d54131db92
+Copyright:
+License:
+#Header:
+#@node posix_trace_attr_setstreamsize
+#@section @code{posix_trace_attr_setstreamsize}
+#@findex posix_trace_attr_setstreamsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setstreamsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_clear.texi
+Hash: 246ba5555dc290c8b1e1320450b1caf1e1557a92ffaa798ce663c95dfda7e0e4
+Copyright:
+License:
+#Header:
+#@node posix_trace_clear
+#@section @code{posix_trace_clear}
+#@findex posix_trace_clear
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_clear.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_close.texi
+Hash: f8b48c02b26295e68c4219cd771eb0485349083c7fd45d6fa34e4dc34e5adba5
+Copyright:
+License:
+#Header:
+#@node posix_trace_close
+#@section @code{posix_trace_close}
+#@findex posix_trace_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_create.texi
+Hash: 7fcab2cefac75343564f45dbea419a5e305edbbcdf582d145a6314dc15a79296
+Copyright:
+License:
+#Header:
+#@node posix_trace_create
+#@section @code{posix_trace_create}
+#@findex posix_trace_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_create_withlog.texi
+Hash: 60662414b3106f8d3a4ca1c75fc0484fa0d8d79d90421b817b18d77f2b516f7a
+Copyright:
+License:
+#Header:
+#@node posix_trace_create_withlog
+#@section @code{posix_trace_create_withlog}
+#@findex posix_trace_create_withlog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_create_withlog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_event.texi
+Hash: f60fcf4bc32cf69788ea0b35884a8fdacd82591cbd0161391ff5eb298baf6cee
+Copyright:
+License:
+#Header:
+#@node posix_trace_event
+#@section @code{posix_trace_event}
+#@findex posix_trace_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventid_equal.texi
+Hash: e98ad15e6d288cda7cd84504ad757be753c58e981254126a7013557aea9fd9c7
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventid_equal
+#@section @code{posix_trace_eventid_equal}
+#@findex posix_trace_eventid_equal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventid_equal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventid_get_name.texi
+Hash: c7596250743fd190cad5213006d0b9666c3a936be1dcebe04bdbe171a6cd0749
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventid_get_name
+#@section @code{posix_trace_eventid_get_name}
+#@findex posix_trace_eventid_get_name
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventid_get_name.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventid_open.texi
+Hash: b0962f6ecae87f4770e047b7d06cbf279151b4e50c6379241b1313e47e552d0a
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventid_open
+#@section @code{posix_trace_eventid_open}
+#@findex posix_trace_eventid_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventid_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventset_add.texi
+Hash: 1a546240a8fc1faa3f949ef383a67908b8070463825c543c0a4279b1ca25f784
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventset_add
+#@section @code{posix_trace_eventset_add}
+#@findex posix_trace_eventset_add
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_add.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventset_del.texi
+Hash: 972884e849006cdfeb74f21d360284b7f8c194ecb4114409b8a0d6ce7784242e
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventset_del
+#@section @code{posix_trace_eventset_del}
+#@findex posix_trace_eventset_del
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_del.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventset_empty.texi
+Hash: a8873a5c14dd2b52a595ecdbad9fde48f9b8d1cd659a88e899e4b3806908eeed
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventset_empty
+#@section @code{posix_trace_eventset_empty}
+#@findex posix_trace_eventset_empty
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_empty.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventset_fill.texi
+Hash: 4aa69e4079390a52ce6a9d3e70c0b2e66e884db7cdb9dd8836333ec31ef6ca8b
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventset_fill
+#@section @code{posix_trace_eventset_fill}
+#@findex posix_trace_eventset_fill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_fill.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventset_ismember.texi
+Hash: b2bcb139cf0f406f68a7da6a050f50a20ce76053be2cf598d5ce01720859938f
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventset_ismember
+#@section @code{posix_trace_eventset_ismember}
+#@findex posix_trace_eventset_ismember
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_ismember.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventtypelist_getnext_id.texi
+Hash: 8168eab83a8019726c73e5a3eafd53fb848cb20f17bfb391eecef7f726781423
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventtypelist_getnext_id
+#@section @code{posix_trace_eventtypelist_getnext_id}
+#@findex posix_trace_eventtypelist_getnext_id
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventtypelist_getnext_id.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_eventtypelist_rewind.texi
+Hash: a8b698cb04bae7452a1aa92c9af23fb6bb24d78a4de08d7f6e7b2b6774769be9
+Copyright:
+License:
+#Header:
+#@node posix_trace_eventtypelist_rewind
+#@section @code{posix_trace_eventtypelist_rewind}
+#@findex posix_trace_eventtypelist_rewind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventtypelist_rewind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_flush.texi
+Hash: 6adfa76be6079e6353cd3606c896b41897072e16923d73b136f08cbadc2a571c
+Copyright:
+License:
+#Header:
+#@node posix_trace_flush
+#@section @code{posix_trace_flush}
+#@findex posix_trace_flush
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_flush.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_get_attr.texi
+Hash: cdb6cef8bf0e98eb4ed074289005960626c82293df0ab4a32ea5527680c8e6de
+Copyright:
+License:
+#Header:
+#@node posix_trace_get_attr
+#@section @code{posix_trace_get_attr}
+#@findex posix_trace_get_attr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_get_attr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_get_filter.texi
+Hash: b4e182e8a9af7d9168dd35eb4290462fb40be47f09e99710f4b84431a626f2c4
+Copyright:
+License:
+#Header:
+#@node posix_trace_get_filter
+#@section @code{posix_trace_get_filter}
+#@findex posix_trace_get_filter
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_get_filter.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_get_status.texi
+Hash: 71d6651b8f05644b9a642980d8e8b1a2923ae9dcfd58048c81e91f82c3356f7c
+Copyright:
+License:
+#Header:
+#@node posix_trace_get_status
+#@section @code{posix_trace_get_status}
+#@findex posix_trace_get_status
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_get_status.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_getnext_event.texi
+Hash: 49bead6bca4c38a5341f86b18485d77660b93f22e7b56d9f034ac4a8636f5b5d
+Copyright:
+License:
+#Header:
+#@node posix_trace_getnext_event
+#@section @code{posix_trace_getnext_event}
+#@findex posix_trace_getnext_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_getnext_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_open.texi
+Hash: fc529d52215c5e0f770f104bdbea24af448b43f1e793ade2b64d70205443868b
+Copyright:
+License:
+#Header:
+#@node posix_trace_open
+#@section @code{posix_trace_open}
+#@findex posix_trace_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_rewind.texi
+Hash: b3eff434d8501389631044c23517d57d12b9a80e0bdb7cac5b15fe1fee7b3bb1
+Copyright:
+License:
+#Header:
+#@node posix_trace_rewind
+#@section @code{posix_trace_rewind}
+#@findex posix_trace_rewind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_rewind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_set_filter.texi
+Hash: 4d7f6ea838ed6c51adbe31fa219a22b5df80e697e4814dbd9ecc8f269cf762ea
+Copyright:
+License:
+#Header:
+#@node posix_trace_set_filter
+#@section @code{posix_trace_set_filter}
+#@findex posix_trace_set_filter
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_set_filter.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_shutdown.texi
+Hash: 9293a9916aeabb2c74c1bc62ccf37cbae78dc1276a9a7276ac61ca129a5843bd
+Copyright:
+License:
+#Header:
+#@node posix_trace_shutdown
+#@section @code{posix_trace_shutdown}
+#@findex posix_trace_shutdown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_shutdown.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_start.texi
+Hash: f96fc628919e2fb8d1f0b687a9bf7590eb610167571abd2fafa736c37cfe9570
+Copyright:
+License:
+#Header:
+#@node posix_trace_start
+#@section @code{posix_trace_start}
+#@findex posix_trace_start
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_start.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_stop.texi
+Hash: bdea8f560c0aa039862bbcf7dd669b6e17cbf3df5ffab49eb84d322a646fa644
+Copyright:
+License:
+#Header:
+#@node posix_trace_stop
+#@section @code{posix_trace_stop}
+#@findex posix_trace_stop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_stop.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_timedgetnext_event.texi
+Hash: e02e2628db360e9552151ea3cfdbe0d7cb10d05f5084c82be6fceac00c12fffc
+Copyright:
+License:
+#Header:
+#@node posix_trace_timedgetnext_event
+#@section @code{posix_trace_timedgetnext_event}
+#@findex posix_trace_timedgetnext_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_timedgetnext_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_trid_eventid_open.texi
+Hash: c90234d6928930eb571c09a335c80e685e6188844d6032c5cb4f08d1d346c4af
+Copyright:
+License:
+#Header:
+#@node posix_trace_trid_eventid_open
+#@section @code{posix_trace_trid_eventid_open}
+#@findex posix_trace_trid_eventid_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_trid_eventid_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_trace_trygetnext_event.texi
+Hash: d73011efa2346a98ca0b075ad9ca871f92a3a336c550aa614c44dabed4cbf0ef
+Copyright:
+License:
+#Header:
+#@node posix_trace_trygetnext_event
+#@section @code{posix_trace_trygetnext_event}
+#@findex posix_trace_trygetnext_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_trygetnext_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_typed_mem_get_info.texi
+Hash: c1ffc2cdb081c341c855a6166079e907b5f30d2bbd089fcdf3d4a5efb4c3e8a8
+Copyright:
+License:
+#Header:
+#@node posix_typed_mem_get_info
+#@section @code{posix_typed_mem_get_info}
+#@findex posix_typed_mem_get_info
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_typed_mem_get_info.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/posix_typed_mem_open.texi
+Hash: c0923dcacc2e10d19cde0116b916900ee58bee17184540c4fc0fca56cf27afa5
+Copyright:
+License:
+#Header:
+#@node posix_typed_mem_open
+#@section @code{posix_typed_mem_open}
+#@findex posix_typed_mem_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_typed_mem_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pow.texi
+Hash: 3588200be9beae88172c588ed3166f06aeaa63d7f7708b709e51179849668047
+Copyright:
+License:
+#Header:
+#@node pow
+#@section @code{pow}
+#@findex pow
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pow.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/powf.texi
+Hash: 2c20228be41c7ae06e16f334a350ecd67e67d780f15ab1ace0b981472ff76e5a
+Copyright:
+License:
+#Header:
+#@node powf
+#@section @code{powf}
+#@findex powf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/powf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/powl.texi
+Hash: ec73f774d4f9e2730678a99849d7e449fa33553a4e00aa301eb3c37dee018529
+Copyright:
+License:
+#Header:
+#@node powl
+#@section @code{powl}
+#@findex powl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/powl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pread.texi
+Hash: 94344ff20d9188dff7bcce1466828d3d8e19d41207d8c20e5eda87fce1752780
+Copyright:
+License:
+#Header:
+#@node pread
+#@section @code{pread}
+#@findex pread
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pread.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/printf.texi
+Hash: cc1b5932488eafd7041e224c3c5f101cd6d45de4c770de8eb00c90ce7f61f056
+Copyright:
+License:
+#Header:
+#@node printf
+#@section @code{printf}
+#@findex printf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/printf.html}
+#
+#Gnulib module: printf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{printf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+File: ./doc/posix-functions/pselect.texi
+Hash: 2d26ab5240ac27a518b2e987ba8d79e7b2c2528bc6a94093db97760c1cd30f9a
+Copyright:
+License:
+#Header:
+#@node pselect
+#@section @code{pselect}
+#@findex pselect
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pselect.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/psiginfo.texi
+Hash: 110101075e0eb4d997d3fcf1818bff6cd029be26a916d95148d0b02c9a3823a1
+Copyright:
+License:
+#Header:
+#@node psiginfo
+#@section @code{psiginfo}
+#@findex psiginfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/psiginfo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/psignal.texi
+Hash: 2c42cdb7d36d4524202363bbc6c21af4dcf480f7996acbb464831b3501bb2401
+Copyright:
+License:
+#Header:
+#@node psignal
+#@section @code{psignal}
+#@findex psignal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/psignal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_atfork.texi
+Hash: bd6f0ab6ff93e450c2bc4ca3c2863c21a3fe0696083d275cb1a9d1605ed02eed
+Copyright:
+License:
+#Header:
+#@node pthread_atfork
+#@section @code{pthread_atfork}
+#@findex pthread_atfork
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_atfork.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_destroy.texi
+Hash: d033d6af41be3237328cbc28811f8e729e3d295b2e92e0c7f5051a73cfffdbf0
+Copyright:
+License:
+#Header:
+#@node pthread_attr_destroy
+#@section @code{pthread_attr_destroy}
+#@findex pthread_attr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getdetachstate.texi
+Hash: 6e2a3ef0f6207878bb09ad68185f8e07bc1b0d23b1c7551d5445d9439f63cadb
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getdetachstate
+#@section @code{pthread_attr_getdetachstate}
+#@findex pthread_attr_getdetachstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getdetachstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getguardsize.texi
+Hash: dcc2fc4b9fa5d43877dbdae216c9a782af6ddd21b4cc251c6f0884d6ead8ddcf
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getguardsize
+#@section @code{pthread_attr_getguardsize}
+#@findex pthread_attr_getguardsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getguardsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getinheritsched.texi
+Hash: a6a1f044119243f02220493504aea24e555e10d684d75f76be7703cdc7907117
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getinheritsched
+#@section @code{pthread_attr_getinheritsched}
+#@findex pthread_attr_getinheritsched
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getinheritsched.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getschedparam.texi
+Hash: acf2bc407210fd0a87ea5a8bc8aca6ba382914a2ad8788c13589d65f5efb4662
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getschedparam
+#@section @code{pthread_attr_getschedparam}
+#@findex pthread_attr_getschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getschedpolicy.texi
+Hash: 6568aff8a62e24e659319143e01e108068eb82ecb1d73e9305ba8e3af43f1dbd
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getschedpolicy
+#@section @code{pthread_attr_getschedpolicy}
+#@findex pthread_attr_getschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getschedpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getscope.texi
+Hash: 53127e6a0846038a197f491f7d9d4486cbd9e0d92e23182eca4a23643b7c7987
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getscope
+#@section @code{pthread_attr_getscope}
+#@findex pthread_attr_getscope
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getscope.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getstack.texi
+Hash: d55b1da7b04008428ba631234be9cfb38b53312aa69c148e116b682139eaf108
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getstack
+#@section @code{pthread_attr_getstack}
+#@findex pthread_attr_getstack
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getstack.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_getstacksize.texi
+Hash: 345f3ee43d1e0f2efa8d4fab2b196d824b44868ee55bf828d4135653b9cb64e1
+Copyright:
+License:
+#Header:
+#@node pthread_attr_getstacksize
+#@section @code{pthread_attr_getstacksize}
+#@findex pthread_attr_getstacksize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getstacksize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_init.texi
+Hash: 5ac9b50be719d7ce090e57f14970fbaa0109b04968d270e9f52a9c3d9e8508ea
+Copyright:
+License:
+#Header:
+#@node pthread_attr_init
+#@section @code{pthread_attr_init}
+#@findex pthread_attr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setdetachstate.texi
+Hash: d78b76b4ed5cfe55a6f5e4ed77d137e8f317ea2d8f6eb5b160a72f7c5567e411
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setdetachstate
+#@section @code{pthread_attr_setdetachstate}
+#@findex pthread_attr_setdetachstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setdetachstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setguardsize.texi
+Hash: e7fac577329d9a3b6446d353473c83fd01c59f7e8548ad31cd292354304ac6f9
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setguardsize
+#@section @code{pthread_attr_setguardsize}
+#@findex pthread_attr_setguardsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setguardsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setinheritsched.texi
+Hash: cf31a0c5775bfd82489898e7c3f8c5b1bcf03787ac97d313de504a9f1a640463
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setinheritsched
+#@section @code{pthread_attr_setinheritsched}
+#@findex pthread_attr_setinheritsched
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setinheritsched.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setschedparam.texi
+Hash: a01e60c15e39cbd05318117c6a353663a658cff4c0060c732552bc0735e1a0b5
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setschedparam
+#@section @code{pthread_attr_setschedparam}
+#@findex pthread_attr_setschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setschedpolicy.texi
+Hash: 28c89cdb4b18dfaab2c400b96220600365c448c666125d97cc54c888ee6d4623
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setschedpolicy
+#@section @code{pthread_attr_setschedpolicy}
+#@findex pthread_attr_setschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setschedpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setscope.texi
+Hash: 546a917a46a49835d47fb7f4b9be526e27c99339c85e86b332417f39456da902
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setscope
+#@section @code{pthread_attr_setscope}
+#@findex pthread_attr_setscope
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setscope.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setstack.texi
+Hash: 3218b205686cd35238646c3f6be7ce58a9283171a1a242eb6d7949da02576197
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setstack
+#@section @code{pthread_attr_setstack}
+#@findex pthread_attr_setstack
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setstack.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_attr_setstacksize.texi
+Hash: 15ec368b367a6144ee7d39b56b4a4e994ccc0fc231413484a5bc5596417964b3
+Copyright:
+License:
+#Header:
+#@node pthread_attr_setstacksize
+#@section @code{pthread_attr_setstacksize}
+#@findex pthread_attr_setstacksize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setstacksize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_barrier_destroy.texi
+Hash: 6431e7465c2f611d477e2e0bbed31e7cb6dfa1f57afed483e3de3d06fbabc55d
+Copyright:
+License:
+#Header:
+#@node pthread_barrier_destroy
+#@section @code{pthread_barrier_destroy}
+#@findex pthread_barrier_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrier_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_barrier_init.texi
+Hash: 2ccf8776f1720db644b2e40f5e45b2accd8e3a5134f9f5446d6ac243729f7ad7
+Copyright:
+License:
+#Header:
+#@node pthread_barrier_init
+#@section @code{pthread_barrier_init}
+#@findex pthread_barrier_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrier_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_barrier_wait.texi
+Hash: c1b386eae130fb603d2f6d476958efcf09387fb73ce297e459e6d81e0dd9b133
+Copyright:
+License:
+#Header:
+#@node pthread_barrier_wait
+#@section @code{pthread_barrier_wait}
+#@findex pthread_barrier_wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrier_wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_barrierattr_destroy.texi
+Hash: 913c8f495efff25824dbd8dc5faf2526b5b0e5160b1faae28f67452b3aee6936
+Copyright:
+License:
+#Header:
+#@node pthread_barrierattr_destroy
+#@section @code{pthread_barrierattr_destroy}
+#@findex pthread_barrierattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_barrierattr_getpshared.texi
+Hash: 8e4afc65315f8b2e25d2c5b9e859363fd9ee7371eb7247d6112773c642337f6f
+Copyright:
+License:
+#Header:
+#@node pthread_barrierattr_getpshared
+#@section @code{pthread_barrierattr_getpshared}
+#@findex pthread_barrierattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_barrierattr_init.texi
+Hash: 45369e6ac6f2f62e775581d3694e1c9ab726b910790ef4b5da5efe94778e2e49
+Copyright:
+License:
+#Header:
+#@node pthread_barrierattr_init
+#@section @code{pthread_barrierattr_init}
+#@findex pthread_barrierattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_barrierattr_setpshared.texi
+Hash: 34825fd8bf5a6ae16e5b7a0ceaa60428e8ead85b8e0ada77345f10600eeec249
+Copyright:
+License:
+#Header:
+#@node pthread_barrierattr_setpshared
+#@section @code{pthread_barrierattr_setpshared}
+#@findex pthread_barrierattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cancel.texi
+Hash: e8ba2f30835e3adf32710558d20f30e1cede0f548e4cc612f0aa36cefd207619
+Copyright:
+License:
+#Header:
+#@node pthread_cancel
+#@section @code{pthread_cancel}
+#@findex pthread_cancel
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cancel.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cleanup_pop.texi
+Hash: 56219e3c4261a24f8ae5c345420375bfed930edd72fe9de1145ad9bb6c8981b4
+Copyright:
+License:
+#Header:
+#@node pthread_cleanup_pop
+#@section @code{pthread_cleanup_pop}
+#@findex pthread_cleanup_pop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cleanup_pop.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cleanup_push.texi
+Hash: a198aceadab367b9b5ec5528e6d9eb7071b44e88ba80d7505b07e86ed47b3799
+Copyright:
+License:
+#Header:
+#@node pthread_cleanup_push
+#@section @code{pthread_cleanup_push}
+#@findex pthread_cleanup_push
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cleanup_push.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cond_broadcast.texi
+Hash: 027f86eba7dbadc497e225c26b709124f8d27d3720f641e9a16d6e244f2e9999
+Copyright:
+License:
+#Header:
+#@node pthread_cond_broadcast
+#@section @code{pthread_cond_broadcast}
+#@findex pthread_cond_broadcast
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_broadcast.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cond_destroy.texi
+Hash: 700b1a47bb870ae67a0829d45bbe702d4e2d5c068f21338fe743c5f781a79b41
+Copyright:
+License:
+#Header:
+#@node pthread_cond_destroy
+#@section @code{pthread_cond_destroy}
+#@findex pthread_cond_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cond_init.texi
+Hash: 1aac869c309f1e1259d594533ca99cbcb409ae20698e04313ecb76af8f586125
+Copyright:
+License:
+#Header:
+#@node pthread_cond_init
+#@section @code{pthread_cond_init}
+#@findex pthread_cond_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cond_signal.texi
+Hash: a3a421ae49ccf251516d0a9d806441c29c08782dec6a949f1b4132722924935e
+Copyright:
+License:
+#Header:
+#@node pthread_cond_signal
+#@section @code{pthread_cond_signal}
+#@findex pthread_cond_signal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_signal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cond_timedwait.texi
+Hash: b554412ccdd6610c8224a5828fc0cbed66e33dcf855b76bece44c72854f4b9fa
+Copyright:
+License:
+#Header:
+#@node pthread_cond_timedwait
+#@section @code{pthread_cond_timedwait}
+#@findex pthread_cond_timedwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_timedwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_cond_wait.texi
+Hash: 69b9ed912a9a849f38ef59137cf08ef99807a0e560af5baa98a843186838f299
+Copyright:
+License:
+#Header:
+#@node pthread_cond_wait
+#@section @code{pthread_cond_wait}
+#@findex pthread_cond_wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_condattr_destroy.texi
+Hash: dc71cdaf1bfce2c599af6d02608e23a7a1a36b35773b61a9352930193521ceb6
+Copyright:
+License:
+#Header:
+#@node pthread_condattr_destroy
+#@section @code{pthread_condattr_destroy}
+#@findex pthread_condattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_condattr_getclock.texi
+Hash: 4f39462a8d0cccfa468c219ae84735d0e4959170660ddb5335d4d0e58a310952
+Copyright:
+License:
+#Header:
+#@node pthread_condattr_getclock
+#@section @code{pthread_condattr_getclock}
+#@findex pthread_condattr_getclock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_getclock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_condattr_getpshared.texi
+Hash: fd9bb140a4bb9d1596e1a1db77d9fc3e265aa7cbfeae2d7b82c203a3933a4aa2
+Copyright:
+License:
+#Header:
+#@node pthread_condattr_getpshared
+#@section @code{pthread_condattr_getpshared}
+#@findex pthread_condattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_condattr_init.texi
+Hash: 644aa43dccb6aaa12b07b5af03bbaa07a2ce79c14e11441ffcc89e2980b45fbf
+Copyright:
+License:
+#Header:
+#@node pthread_condattr_init
+#@section @code{pthread_condattr_init}
+#@findex pthread_condattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_condattr_setclock.texi
+Hash: b5413f0e67888a8c5591631a2e7fc8f9d5940b4295d578bc47c5f6b392fe5775
+Copyright:
+License:
+#Header:
+#@node pthread_condattr_setclock
+#@section @code{pthread_condattr_setclock}
+#@findex pthread_condattr_setclock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_setclock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_condattr_setpshared.texi
+Hash: 18c18d1442e96df08c95dff4c476f839a9bf33f67fc7cb2d318af1f7a5129452
+Copyright:
+License:
+#Header:
+#@node pthread_condattr_setpshared
+#@section @code{pthread_condattr_setpshared}
+#@findex pthread_condattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_create.texi
+Hash: a7e377395df018ad7be35a051f5a0cd6cd2c76118befa1e9d53a2023bd751923
+Copyright:
+License:
+#Header:
+#@node pthread_create
+#@section @code{pthread_create}
+#@findex pthread_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_detach.texi
+Hash: e80c073a363c91dbc7080f7a4e511f7b648bd28f030c4f98faa1490086d52a32
+Copyright:
+License:
+#Header:
+#@node pthread_detach
+#@section @code{pthread_detach}
+#@findex pthread_detach
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_detach.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_equal.texi
+Hash: 6e2bd3ef9f0cae069ffd29ff4fba0879fbbcdd9cfbaf39327b389d27c0d21dc0
+Copyright:
+License:
+#Header:
+#@node pthread_equal
+#@section @code{pthread_equal}
+#@findex pthread_equal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_equal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_exit.texi
+Hash: 232c5cf778c2cfd1e637aee54d72705efcf3dbff8f7164240c1a171d0cdc7d8f
+Copyright:
+License:
+#Header:
+#@node pthread_exit
+#@section @code{pthread_exit}
+#@findex pthread_exit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_exit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_getconcurrency.texi
+Hash: da08fbe0f6fd2e342e8e5de796f98166968f5292462c2b0bde472cc2cd27aebf
+Copyright:
+License:
+#Header:
+#@node pthread_getconcurrency
+#@section @code{pthread_getconcurrency}
+#@findex pthread_getconcurrency
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getconcurrency.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_getcpuclockid.texi
+Hash: 5189825a695d0c00cc9f0275ad6f2d9c949771c1d65c1f33eefbf58f45da4e30
+Copyright:
+License:
+#Header:
+#@node pthread_getcpuclockid
+#@section @code{pthread_getcpuclockid}
+#@findex pthread_getcpuclockid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getcpuclockid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_getschedparam.texi
+Hash: 6fb7f3364b7723dcfe69708e696f958421113a542fc16c23d6b437c61c3ebe69
+Copyright:
+License:
+#Header:
+#@node pthread_getschedparam
+#@section @code{pthread_getschedparam}
+#@findex pthread_getschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_getspecific.texi
+Hash: 24418f9959f93b40084233797e9374b3d70eca2260a775e1abdc744d43b0e72b
+Copyright:
+License:
+#Header:
+#@node pthread_getspecific
+#@section @code{pthread_getspecific}
+#@findex pthread_getspecific
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getspecific.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_join.texi
+Hash: 9039ce2feb029a58d9fbd965e0d2f4cee351059727f82a85c67059c0319bf525
+Copyright:
+License:
+#Header:
+#@node pthread_join
+#@section @code{pthread_join}
+#@findex pthread_join
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_join.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_key_create.texi
+Hash: a1cb1a3db0f8853edb4e810872d4337be4fe45284107e1fb1fc3811fd3b4559c
+Copyright:
+License:
+#Header:
+#@node pthread_key_create
+#@section @code{pthread_key_create}
+#@findex pthread_key_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_key_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_key_delete.texi
+Hash: 7a66f0931de9d103c2dd8e413f396dae4cd106a88c96ad695cd60bd31febd79e
+Copyright:
+License:
+#Header:
+#@node pthread_key_delete
+#@section @code{pthread_key_delete}
+#@findex pthread_key_delete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_key_delete.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_kill.texi
+Hash: f08bf3510c8f593d3dd76d9a59eac31ac729ba9d94dc75958d0e904f5c9c98a5
+Copyright:
+License:
+#Header:
+#@node pthread_kill
+#@section @code{pthread_kill}
+#@findex pthread_kill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_kill.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_consistent.texi
+Hash: b6e43d57f04c939eeeedf83aceb7a105ca5067531ea8db38d44306ebe8e9fd4c
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_consistent
+#@section @code{pthread_mutex_consistent}
+#@findex pthread_mutex_consistent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_consistent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_destroy.texi
+Hash: fd4bde78e9fa8b117ae2482b8597dddc097527885e32cacbf6730f38ca8e06ef
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_destroy
+#@section @code{pthread_mutex_destroy}
+#@findex pthread_mutex_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_getprioceiling.texi
+Hash: 2a9d8cf7cc4fc5e2fe50656bf10493668ed1c6a1a0e8cdebcb14f4a3fc762e88
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_getprioceiling
+#@section @code{pthread_mutex_getprioceiling}
+#@findex pthread_mutex_getprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_getprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_init.texi
+Hash: 0e842a0e38c78b48dff33e93b8092d7977b5e64e398a246dbcf508bd957d2d61
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_init
+#@section @code{pthread_mutex_init}
+#@findex pthread_mutex_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_lock.texi
+Hash: c6d6b927e067c0c74541aa777d5aca52d14f124a01c458da4e0c465d2a535fc5
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_lock
+#@section @code{pthread_mutex_lock}
+#@findex pthread_mutex_lock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_lock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_setprioceiling.texi
+Hash: e3a36023a14d9b48e692ccf929e1848ccb1c04cb2570216858055dff256c6a62
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_setprioceiling
+#@section @code{pthread_mutex_setprioceiling}
+#@findex pthread_mutex_setprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_setprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_timedlock.texi
+Hash: 140fb1fb8fe999687fe6799e7169f0dd2973de5387296d1d31033f527570ee9c
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_timedlock
+#@section @code{pthread_mutex_timedlock}
+#@findex pthread_mutex_timedlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_timedlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_trylock.texi
+Hash: 20faf9cb662d153f4c93433660e024c693a1211a5181532029be3d28bce03e6d
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_trylock
+#@section @code{pthread_mutex_trylock}
+#@findex pthread_mutex_trylock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_trylock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutex_unlock.texi
+Hash: 7110cf9b01daabfcf76bd06905a56f819033d4d7a93c89b05800b79171d38e19
+Copyright:
+License:
+#Header:
+#@node pthread_mutex_unlock
+#@section @code{pthread_mutex_unlock}
+#@findex pthread_mutex_unlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_unlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_destroy.texi
+Hash: 1290c79fa1c38da5e15fedcbf354d4a3a0e1481df5bd5433387c1d96f2baac32
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_destroy
+#@section @code{pthread_mutexattr_destroy}
+#@findex pthread_mutexattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_getprioceiling.texi
+Hash: 449f95217262c8abc79143cb2459f618a5967e7af42b2ac3981a442ddb9a9c06
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_getprioceiling
+#@section @code{pthread_mutexattr_getprioceiling}
+#@findex pthread_mutexattr_getprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_getprotocol.texi
+Hash: 9f9268d4333f759584749fd1605652f4186d5f0b5acc680b39bdb7061b54f48c
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_getprotocol
+#@section @code{pthread_mutexattr_getprotocol}
+#@findex pthread_mutexattr_getprotocol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getprotocol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_getpshared.texi
+Hash: 295bd74fc073a734721873fa72a22a174e18783e9deeec13f06517f689eacd22
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_getpshared
+#@section @code{pthread_mutexattr_getpshared}
+#@findex pthread_mutexattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_getrobust.texi
+Hash: e0610f724a55de771fe504907799acfe94fb6ba3c67d0ce579d759ab973d19e7
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_getrobust
+#@section @code{pthread_mutexattr_getrobust}
+#@findex pthread_mutexattr_getrobust
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getrobust.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_gettype.texi
+Hash: d12236caf122faf894bb50228a5472f020d954e207cd9dfd0e577ee8c8383f71
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_gettype
+#@section @code{pthread_mutexattr_gettype}
+#@findex pthread_mutexattr_gettype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_gettype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_init.texi
+Hash: 3b3ecf6261d6da298805c4cc95962a3ad36890bb77ff6b7b6f3132086e051167
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_init
+#@section @code{pthread_mutexattr_init}
+#@findex pthread_mutexattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_setprioceiling.texi
+Hash: 1ece8317019dd82c5e318b4d9b5882802ea01045a409297cf8dd440ad9d3103f
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_setprioceiling
+#@section @code{pthread_mutexattr_setprioceiling}
+#@findex pthread_mutexattr_setprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_setprotocol.texi
+Hash: 5e6a366266f46a0357684749782e6197e1809fba9a2d513688406e49ad31d2d3
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_setprotocol
+#@section @code{pthread_mutexattr_setprotocol}
+#@findex pthread_mutexattr_setprotocol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setprotocol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_setpshared.texi
+Hash: 2fb993d88e4bbc911842803392deba53e3813c527c52d905c948b73bb4925286
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_setpshared
+#@section @code{pthread_mutexattr_setpshared}
+#@findex pthread_mutexattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_setrobust.texi
+Hash: 6bcbd7ab232100484cccf5e34ae17399d7c916a5acc23f403e0a0a844cc3e4ff
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_setrobust
+#@section @code{pthread_mutexattr_setrobust}
+#@findex pthread_mutexattr_setrobust
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setrobust.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_mutexattr_settype.texi
+Hash: fd9b09b6caf5b9d30b13ad9e48dc4603f3ed94da2f8183e721cddb1ccc436dcc
+Copyright:
+License:
+#Header:
+#@node pthread_mutexattr_settype
+#@section @code{pthread_mutexattr_settype}
+#@findex pthread_mutexattr_settype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_settype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_once.texi
+Hash: 263f7917fd13b0a74ac2ac702382080845565de894f62c71a2ac5a00ade097a0
+Copyright:
+License:
+#Header:
+#@node pthread_once
+#@section @code{pthread_once}
+#@findex pthread_once
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_once.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_destroy.texi
+Hash: e474fee400949358c98c0d2eb0e85c3467fc0ca4bdb4fcc639ed9f36abe8fd82
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_destroy
+#@section @code{pthread_rwlock_destroy}
+#@findex pthread_rwlock_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_init.texi
+Hash: db1cb2523554cd336286ed884dc68f8f79b1558822da6d7872998801edbde3cd
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_init
+#@section @code{pthread_rwlock_init}
+#@findex pthread_rwlock_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_rdlock.texi
+Hash: 0d60cb0bd577699f1938cb35e9d4d33c4fee07c9b066bcdb6827770477de24a8
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_rdlock
+#@section @code{pthread_rwlock_rdlock}
+#@findex pthread_rwlock_rdlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_rdlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_timedrdlock.texi
+Hash: 3599fc1e125134eddc84887d08f98a66259a161a2e20d3eb6aeaa56e388c0c49
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_timedrdlock
+#@section @code{pthread_rwlock_timedrdlock}
+#@findex pthread_rwlock_timedrdlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_timedrdlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_timedwrlock.texi
+Hash: 2b1fcd9f3b9fa43c87a6c4e253ab9f0d59c266668fa4f8bf951ba0c9ef16d66c
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_timedwrlock
+#@section @code{pthread_rwlock_timedwrlock}
+#@findex pthread_rwlock_timedwrlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_timedwrlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_tryrdlock.texi
+Hash: 42205ebc500b32d14edfe041eda18f6ab7ca80e145b0b5f39ca6012f2cf1bab4
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_tryrdlock
+#@section @code{pthread_rwlock_tryrdlock}
+#@findex pthread_rwlock_tryrdlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_tryrdlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_trywrlock.texi
+Hash: 4a1dfb6ad7aeb5bb915ca30df282fd851dd2b7924ddced7c4855bfe9c520b2bd
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_trywrlock
+#@section @code{pthread_rwlock_trywrlock}
+#@findex pthread_rwlock_trywrlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_trywrlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_unlock.texi
+Hash: f87d3a230966b3d5b888d51b96f49074ee121a4c6f0b44cc339c281aac4fe6e3
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_unlock
+#@section @code{pthread_rwlock_unlock}
+#@findex pthread_rwlock_unlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_unlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlock_wrlock.texi
+Hash: 615fd6fce3bfa2157552bbf3a06e7840653a17f0f5f5a23268553002b5871983
+Copyright:
+License:
+#Header:
+#@node pthread_rwlock_wrlock
+#@section @code{pthread_rwlock_wrlock}
+#@findex pthread_rwlock_wrlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_wrlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlockattr_destroy.texi
+Hash: d650c45f94e3f7cb29c19693d46694c3b1d965e41bf6db7f4490611eee0a1c89
+Copyright:
+License:
+#Header:
+#@node pthread_rwlockattr_destroy
+#@section @code{pthread_rwlockattr_destroy}
+#@findex pthread_rwlockattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlockattr_getpshared.texi
+Hash: 3b9cf0c4acb7572f4c5ae44b36365c60d1a3ef364d683ba6d741c60c30cda433
+Copyright:
+License:
+#Header:
+#@node pthread_rwlockattr_getpshared
+#@section @code{pthread_rwlockattr_getpshared}
+#@findex pthread_rwlockattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlockattr_init.texi
+Hash: 749ddd92db56e96ecaadb08122546a3cc441cbca68fd274de2de3c69514cc95a
+Copyright:
+License:
+#Header:
+#@node pthread_rwlockattr_init
+#@section @code{pthread_rwlockattr_init}
+#@findex pthread_rwlockattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_rwlockattr_setpshared.texi
+Hash: b91d04b919f5d05dbda7c3530244929f89f83ebbdba05fffc494820d2a853842
+Copyright:
+License:
+#Header:
+#@node pthread_rwlockattr_setpshared
+#@section @code{pthread_rwlockattr_setpshared}
+#@findex pthread_rwlockattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_self.texi
+Hash: 13a7ed58caa8e8ed5afd05a4866c5a149f397fc180ae483191be4f2bbe1e873f
+Copyright:
+License:
+#Header:
+#@node pthread_self
+#@section @code{pthread_self}
+#@findex pthread_self
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_self.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_setcancelstate.texi
+Hash: bf779426dbcb25c40780822d1af78c8c245730481c02b2f663b25c06032cc1ea
+Copyright:
+License:
+#Header:
+#@node pthread_setcancelstate
+#@section @code{pthread_setcancelstate}
+#@findex pthread_setcancelstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setcancelstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_setcanceltype.texi
+Hash: 21d2905f71f6a29504e1e41139d61d4c2c30ebeb03d8315cdc5e4a92e4d2b80c
+Copyright:
+License:
+#Header:
+#@node pthread_setcanceltype
+#@section @code{pthread_setcanceltype}
+#@findex pthread_setcanceltype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setcanceltype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_setconcurrency.texi
+Hash: 3a0aabbee0c7c7de01d8e594d7585d2f80b108a9824299253f41979ab4dbfb82
+Copyright:
+License:
+#Header:
+#@node pthread_setconcurrency
+#@section @code{pthread_setconcurrency}
+#@findex pthread_setconcurrency
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setconcurrency.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_setschedparam.texi
+Hash: 6420aa34f4afee0ebe566288a398a735322e438b631ce128637752bc8e8820be
+Copyright:
+License:
+#Header:
+#@node pthread_setschedparam
+#@section @code{pthread_setschedparam}
+#@findex pthread_setschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_setschedprio.texi
+Hash: 9354214523a1c7e37170ac1a21531f009477b6c148aaa0a251544066c31aa78f
+Copyright:
+License:
+#Header:
+#@node pthread_setschedprio
+#@section @code{pthread_setschedprio}
+#@findex pthread_setschedprio
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setschedprio.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_setspecific.texi
+Hash: 154fa05dbb23ec8136e52430b633c487de9c68431f8bdd889864189f88b4d946
+Copyright:
+License:
+#Header:
+#@node pthread_setspecific
+#@section @code{pthread_setspecific}
+#@findex pthread_setspecific
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setspecific.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_sigmask.texi
+Hash: 5f84be77ac9a94d39f9890e0d6fc55981fdce2afa262726750e4bb8b08d930fc
+Copyright:
+License:
+#Header:
+#@node pthread_sigmask
+#@section @code{pthread_sigmask}
+#@findex pthread_sigmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_sigmask.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_spin_destroy.texi
+Hash: 9b80cbaf20504167e3cee0833877632e1cb5cec0ec848e17e6e92911498e12ab
+Copyright:
+License:
+#Header:
+#@node pthread_spin_destroy
+#@section @code{pthread_spin_destroy}
+#@findex pthread_spin_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_spin_init.texi
+Hash: a3726f0acaefef327cb10544fdff423af698b5f1cdabe0a26b27c4b5d8d80521
+Copyright:
+License:
+#Header:
+#@node pthread_spin_init
+#@section @code{pthread_spin_init}
+#@findex pthread_spin_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_spin_lock.texi
+Hash: df22dcb8f68c58da23c21856c108590d8b7be072110595e1db0cc8f04a431ac0
+Copyright:
+License:
+#Header:
+#@node pthread_spin_lock
+#@section @code{pthread_spin_lock}
+#@findex pthread_spin_lock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_lock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_spin_trylock.texi
+Hash: 322d6baf08a723f11fa1176b4877d385268cf6390c885ef2cd4defda8e7767db
+Copyright:
+License:
+#Header:
+#@node pthread_spin_trylock
+#@section @code{pthread_spin_trylock}
+#@findex pthread_spin_trylock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_trylock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_spin_unlock.texi
+Hash: 14e1ef4681b04777a2effa8cc09f6b9f54df272574e33f41a53c61fdce370242
+Copyright:
+License:
+#Header:
+#@node pthread_spin_unlock
+#@section @code{pthread_spin_unlock}
+#@findex pthread_spin_unlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_unlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pthread_testcancel.texi
+Hash: ed23a37d1c2d0cd758558e27f966f24f80c536576d6fcdca1253c41b23f3edaf
+Copyright:
+License:
+#Header:
+#@node pthread_testcancel
+#@section @code{pthread_testcancel}
+#@findex pthread_testcancel
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_testcancel.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ptsname.texi
+Hash: 1b5c93eea933da86b4d3af086ecdd2d1251250a5ea58a3a65f293562e0e8a336
+Copyright:
+License:
+#Header:
+#@node ptsname
+#@section @code{ptsname}
+#@findex ptsname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ptsname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/putc.texi
+Hash: 5d141e589a84fd6b8317e39d3fc5aab79d8b46f53d544ff312902a7b91ab26ed
+Copyright:
+License:
+#Header:
+#@node putc
+#@section @code{putc}
+#@findex putc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putc.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/putc_unlocked.texi
+Hash: 37f5c73db32107b5c76b4cba44714c31abc9c138e1073d8c4925179e2cfd6c5e
+Copyright:
+License:
+#Header:
+#@node putc_unlocked
+#@section @code{putc_unlocked}
+#@findex putc_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putc_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/putchar.texi
+Hash: d34911f284b53c744d1adaff6fd19a42a32617bcf3680978cc05a4eefe594d45
+Copyright:
+License:
+#Header:
+#@node putchar
+#@section @code{putchar}
+#@findex putchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putchar.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/putchar_unlocked.texi
+Hash: fe7ef6645bdf1963d78a2b5127e040bde49dc0e5025aaa9b7dfbbb6260da429b
+Copyright:
+License:
+#Header:
+#@node putchar_unlocked
+#@section @code{putchar_unlocked}
+#@findex putchar_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putchar_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/putenv.texi
+Hash: 1225f20a845f37cd71a9e0bced02458df4fb6c6f115771fbbe61fea3b4780848
+Copyright:
+License:
+#Header:
+#@node putenv
+#@section @code{putenv}
+#@findex putenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/putmsg.texi
+Hash: 75b6e41c21c6f36a1fdbc2b4c6e03a8c887088897174ec890231899889f30172
+Copyright:
+License:
+#Header:
+#@node putmsg
+#@section @code{putmsg}
+#@findex putmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/putpmsg.texi
+Hash: 3903ad394832d99822a9c28af39ea21eee403b16803d11d6480024d27d06bec2
+Copyright:
+License:
+#Header:
+#@node putpmsg
+#@section @code{putpmsg}
+#@findex putpmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putpmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/puts.texi
+Hash: 0c3315db7f98e899502f5a99bd2659f35187abd17e2e6a8cee77f243ce622cce
+Copyright:
+License:
+#Header:
+#@node puts
+#@section @code{puts}
+#@findex puts
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/puts.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/pututxline.texi
+Hash: 66c8ffbb27d2df0fdd75e0c8c96790e18a16ed8b4f6bb78fc388232254be3a95
+Copyright:
+License:
+#Header:
+#@node pututxline
+#@section @code{pututxline}
+#@findex pututxline
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pututxline.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/putwc.texi
+Hash: 6c60fa1822603d2c92c59f1e5e591e1af2b89112396c238d847a4b696eb5f93a
+Copyright:
+License:
+#Header:
+#@node putwc
+#@section @code{putwc}
+#@findex putwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/putwchar.texi
+Hash: b09cb7a268544b361a6518977d0cbb34f145881c66588f7a4834577e439bfe17
+Copyright:
+License:
+#Header:
+#@node putwchar
+#@section @code{putwchar}
+#@findex putwchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putwchar.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/pwrite.texi
+Hash: c9bd2a13a91714d5752f09ef6f92b210e7e5e7df7f7ae6ad069e2705e8560aa4
+Copyright:
+License:
+#Header:
+#@node pwrite
+#@section @code{pwrite}
+#@findex pwrite
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pwrite.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/qsort.texi
+Hash: eccfafd811e895dab2d612139558414963994ad85641a831a19ac92054427b1b
+Copyright:
+License:
+#Header:
+#@node qsort
+#@section @code{qsort}
+#@findex qsort
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/qsort.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/raise.texi
+Hash: 9168fc29b1d48f00797fd8aa7575ace765b3f20cb4ff6df9c81e2c5a7f75a505
+Copyright:
+License:
+#Header:
+#@node raise
+#@section @code{raise}
+#@findex raise
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/raise.html}
+#
+#Gnulib module: raise
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/rand.texi
+Hash: fbbf8b1aa9c9585a1951e87f039d4335f526c24c0e78e219db3192d1135cd0d8
+Copyright:
+License:
+#Header:
+#@node rand
+#@section @code{rand}
+#@findex rand
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rand.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/rand_r.texi
+Hash: 59c958eb67399b934750dc9454b7bb7fb2fcdacdcd793765b49f2de183a98292
+Copyright:
+License:
+#Header:
+#@node rand_r
+#@section @code{rand_r}
+#@findex rand_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rand_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/random.texi
+Hash: 1ac28c8bc3664266beda4e1a8bedddfe6e9a2b9d922712df684fce6a569d57c7
+Copyright:
+License:
+#Header:
+#@node random
+#@section @code{random}
+#@findex random
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/random.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/read.texi
+Hash: c0772bc36f187c182877807725aef9e66db5d39de1fd4ba4fb0f3e1d1b104499
+Copyright:
+License:
+#Header:
+#@node read
+#@section @code{read}
+#@findex read
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/read.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/readdir.texi
+Hash: 8acd1c9966f71ead4b10ca70d897276aa12fbc5a41f1ad088cfe1e1849f09d32
+Copyright:
+License:
+#Header:
+#@node readdir
+#@section @code{readdir}
+#@findex readdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readdir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/readdir_r.texi
+Hash: 0b985cea57ac53aacdc262c142dc6836da7ea2f6805a75a52c6badba2a1edfb7
+Copyright:
+License:
+#Header:
+#@node readdir_r
+#@section @code{readdir_r}
+#@findex readdir_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readdir_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/readlink.texi
+Hash: 289041e8eac3117ecaa306f00b03008b7ed1f7f7e8e458edb64e3658d2a78df8
+Copyright:
+License:
+#Header:
+#@node readlink
+#@section @code{readlink}
+#@findex readlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readlink.html}
+#
+#Gnulib module: readlink
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/readlinkat.texi
+Hash: 8e82d14041b87e19c1298c597787ddb51fb2c6d4f3aba4087a064ff6db8445e2
+Copyright:
+License:
+#Header:
+#@node readlinkat
+#@section @code{readlinkat}
+#@findex readlinkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readlinkat.html}
+#
+#Gnulib module: readlinkat
+#
+#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.
+#@end itemize
+File: ./doc/posix-functions/readv.texi
+Hash: 3a5a744fc3b388558d7a6ce32e3cd2409238e7c1de9877ef421916a0a0dc41ff
+Copyright:
+License:
+#Header:
+#@node readv
+#@section @code{readv}
+#@findex readv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/realloc.texi
+Hash: f0e891898abaa0a80d3cda3e3bfd9d8ba9d886fe03eeac0524b958a62e9910cf
+Copyright:
+License:
+#Header:
+#@node realloc
+#@section @code{realloc}
+#@findex realloc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/realloc.html}
+#
+#Gnulib module: realloc-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Upon failure, the function does not set @code{errno} to @code{ENOMEM} on
+#some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/realpath.texi
+Hash: 31d1d7d2fbb89b8b73a9f8c9233c47944c665081515957cdf622af70b157dee5
+Copyright:
+License:
+#Header:
+#@node realpath
+#@section @code{realpath}
+#@findex realpath
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/realpath.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/recv.texi
+Hash: 8a15266da832a4a27bba9fc686336216b9e0f53e3039ae3c90803932b0bd6dda
+Copyright:
+License:
+#Header:
+#@node recv
+#@section @code{recv}
+#@findex recv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/recv.html}
+#
+#Gnulib module: recv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{recv}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+File: ./doc/posix-functions/recvfrom.texi
+Hash: 5b8c576d3b7631a1252a36815ca4dbc99a02857999908fd47132065297ba5145
+Copyright:
+License:
+#Header:
+#@node recvfrom
+#@section @code{recvfrom}
+#@findex recvfrom
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/recvfrom.html}
+#
+#Gnulib module: recvfrom
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{recvfrom} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/recvmsg.texi
+Hash: 6954352174e93bc859b4f4cb4d2f3108621106dc0eac7cce11fed1a3bf900d34
+Copyright:
+License:
+#Header:
+#@node recvmsg
+#@section @code{recvmsg}
+#@findex recvmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/recvmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/regcomp.texi
+Hash: 467aa5c6a5b8e8746e54af135c6a20a7db4192236b82e8aae0fea24c3bf6f04d
+Copyright:
+License:
+#Header:
+#@node regcomp
+#@section @code{regcomp}
+#@findex regcomp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regcomp.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#Many regular expression implementations have bugs.
+File: ./doc/posix-functions/regerror.texi
+Hash: 851681f9c2f6d3b714a4821fa8b8221ccb948088c6a6a676321ede8ecb6e9985
+Copyright:
+License:
+#Header:
+#@node regerror
+#@section @code{regerror}
+#@findex regerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regerror.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/regexec.texi
+Hash: 71275ebcea7b64e5b5a339139d33520241c8f6f2cc2ca66861b663729e14e128
+Copyright:
+License:
+#Header:
+#@node regexec
+#@section @code{regexec}
+#@findex regexec
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regexec.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#Many regular expression implementations have bugs.
+File: ./doc/posix-functions/regfree.texi
+Hash: 546e9045c4a3cd6c27e6d0587177908f4858d68ead5d3956c561ee5a6ae56a59
+Copyright:
+License:
+#Header:
+#@node regfree
+#@section @code{regfree}
+#@findex regfree
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regfree.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/remainder.texi
+Hash: 9048696feeff04cd557d5d0dedca4a672700965097384662d135b754e54b7fbc
+Copyright:
+License:
+#Header:
+#@node remainder
+#@section @code{remainder}
+#@findex remainder
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remainder.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/remainderf.texi
+Hash: eaf831bc14b2dcc900fa892a2e14ba7617b1e6ab61f619f0cd6f7e14d41acd88
+Copyright:
+License:
+#Header:
+#@node remainderf
+#@section @code{remainderf}
+#@findex remainderf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remainderf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/remainderl.texi
+Hash: 14d1ff2d407b0012762b50554da703265c6294096c17d5ae4b14bdc14fc8596e
+Copyright:
+License:
+#Header:
+#@node remainderl
+#@section @code{remainderl}
+#@findex remainderl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remainderl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/remove.texi
+Hash: 3ede2b0a88caf86dc972a636e28b9ba38caf6de6256e0e3bceba9beea59854d9
+Copyright:
+License:
+#Header:
+#@node remove
+#@section @code{remove}
+#@findex remove
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remove.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/remque.texi
+Hash: ba75b73c8d591b696fcd813c3ef76bf5c44770df9c6fbd9ae87c697481437522
+Copyright:
+License:
+#Header:
+#@node remque
+#@section @code{remque}
+#@findex remque
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remque.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/remquo.texi
+Hash: ea3584c21d497ada4dae115741acd1194efd92211942117063c080ae68d3615a
+Copyright:
+License:
+#Header:
+#@node remquo
+#@section @code{remquo}
+#@findex remquo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remquo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/remquof.texi
+Hash: 0f8f9fedc0e9bfe935f7ff6c31311da4900518eab1a3495c3adff52fdd073454
+Copyright:
+License:
+#Header:
+#@node remquof
+#@section @code{remquof}
+#@findex remquof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remquof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/remquol.texi
+Hash: ee10dc1ef5a7800459907dc568a7acc6c3cf233713b3dbefffca813daf3a8576
+Copyright:
+License:
+#Header:
+#@node remquol
+#@section @code{remquol}
+#@findex remquol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remquol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/rename.texi
+Hash: 12e0eb4b7f2d1ab2b06996c40987438ed9f8b4ca2e3bd0798e28a9bfd0aabbfe
+Copyright:
+License:
+#Header:
+#@node rename
+#@section @code{rename}
+#@findex rename
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rename.html}
+#
+#Gnulib module: rename
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not handle trailing slashes correctly on
+#some platforms (the full rules for trailing slashes are complex):
+#SunOS 4.1, mingw.
+#@item
+File: ./doc/posix-functions/renameat.texi
+Hash: c6dc7142536a2a805bcece8b9c0f15fcf548fed2410b817fad4b8d005496bed4
+Copyright:
+License:
+#Header:
+#@node renameat
+#@section @code{renameat}
+#@findex renameat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/renameat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/rewind.texi
+Hash: 7e31de0009419f05734b5d6a322389c5e103c5cd40a060f49efd1f68da2cabb0
+Copyright:
+License:
+#Header:
+#@node rewind
+#@section @code{rewind}
+#@findex rewind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rewind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/rewinddir.texi
+Hash: 42b2c06301ed85a0dfdfd8ef098bdcd6f8cf4a5198eb5fa3f0231f63e14d3ee7
+Copyright:
+License:
+#Header:
+#@node rewinddir
+#@section @code{rewinddir}
+#@findex rewinddir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rewinddir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/rint.texi
+Hash: 0bdbf8e00f3fb2386cfd9a6ef340864607e19f553ea1a84aadaf6f352b8eec33
+Copyright:
+License:
+#Header:
+#@node rint
+#@section @code{rint}
+#@findex rint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/rintf.texi
+Hash: 04b86653c1aebb521570910a97edd79efcfb3d9d4ce5ee36b0bc12caefc93feb
+Copyright:
+License:
+#Header:
+#@node rintf
+#@section @code{rintf}
+#@findex rintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/rintl.texi
+Hash: 3cdf8671de573e8aa145192d0e4b51bdb9813c54328232493738ee146c15f55c
+Copyright:
+License:
+#Header:
+#@node rintl
+#@section @code{rintl}
+#@findex rintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/rmdir.texi
+Hash: f46fa6bd3452720b41ce3c646a159d837c815958bdb713632742c746227a658e
+Copyright:
+License:
+#Header:
+#@node rmdir
+#@section @code{rmdir}
+#@findex rmdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rmdir.html}
+#
+#Gnulib module: rmdir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/round.texi
+Hash: ad1fac248f0027fffeb846b4bcbb10d65dbb8ee2814bf99ca320dc6b76d3591b
+Copyright:
+License:
+#Header:
+#@node round
+#@section @code{round}
+#@findex round
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/round.html}
+#
+#Gnulib module: round
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 4.0, Solaris 9, Interix 3.5.
+#@item
+#This functions returns a wrong result for x = 1/2 - 2^-54 on some platforms:
+File: ./doc/posix-functions/roundf.texi
+Hash: a93f03fd0a866d50dae90b7ed84de5e54ee93a776770d19334d918c68e937352
+Copyright:
+License:
+#Header:
+#@node roundf
+#@section @code{roundf}
+#@findex roundf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/roundf.html}
+#
+#Gnulib module: roundf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 9, Interix 3.5.
+#@item
+#This functions returns a wrong result for x = 1/2 - 2^-25 on some platforms:
+File: ./doc/posix-functions/roundl.texi
+Hash: 34c9077c2dec24f5eac8f86ac817d972e19810b75227e4b638cff1c10952f098
+Copyright:
+License:
+#Header:
+#@node roundl
+#@section @code{roundl}
+#@findex roundl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/roundl.html}
+#
+#Gnulib module: roundl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/scalbln.texi
+Hash: 20b33ecc23fc5311a3eb8423dfb90ed0acc8f5e0a27ce08b33548700dcfd087b
+Copyright:
+License:
+#Header:
+#@node scalbln
+#@section @code{scalbln}
+#@findex scalbln
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbln.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/scalblnf.texi
+Hash: 721d2584694f2c17e701b77dafb1a4a0fce1b4cf75e67286c1de9b3d2bc5fc4d
+Copyright:
+License:
+#Header:
+#@node scalblnf
+#@section @code{scalblnf}
+#@findex scalblnf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalblnf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/scalblnl.texi
+Hash: e29e5eab4e9e4a6a341613b203cb7b6c05be7c3ad6119e0e5b069d8019bbb4e3
+Copyright:
+License:
+#Header:
+#@node scalblnl
+#@section @code{scalblnl}
+#@findex scalblnl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalblnl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/scalbn.texi
+Hash: b98ad8538407e08879d31e648dcf8eacc0c0c187ac2cba1dcec79b87a7d8afe0
+Copyright:
+License:
+#Header:
+#@node scalbn
+#@section @code{scalbn}
+#@findex scalbn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/scalbnf.texi
+Hash: 6c2dfea485571431562f1b51e5920eb4bbe8499512abd58d46fb3e842ea6af67
+Copyright:
+License:
+#Header:
+#@node scalbnf
+#@section @code{scalbnf}
+#@findex scalbnf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbnf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/scalbnl.texi
+Hash: ad72f6be73a435b5d81d01a8b5849eb4531c88a21370bcb2ad87afb73047e436
+Copyright:
+License:
+#Header:
+#@node scalbnl
+#@section @code{scalbnl}
+#@findex scalbnl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbnl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/scandir.texi
+Hash: 19a5e174895872d8102d75603b1f0491cc13b1da4c7c4e4dd0efb3c3c64887ce
+Copyright:
+License:
+#Header:
+#@node scandir
+#@section @code{scandir}
+#@findex scandir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scandir.html}
+#
+#Gnulib module: scandir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 9, mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/scanf.texi
+Hash: 7dfd669e166d9e21af87270f3155e7f1df47d71fd39bcc8b13bccc6b14baace9
+Copyright:
+License:
+#Header:
+#@node scanf
+#@section @code{scanf}
+#@findex scanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_get_priority_max.texi
+Hash: 11f5ff6c55fdb90459f2389d7c1a7818fdce76b58ad1f2b38daea990e1ef5038
+Copyright:
+License:
+#Header:
+#@node sched_get_priority_max
+#@section @code{sched_get_priority_max}
+#@findex sched_get_priority_max
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_get_priority_max.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_get_priority_min.texi
+Hash: edadeaea746bd2c08a9d041afbd07ec8efeae648a41e6360339affd3dd164930
+Copyright:
+License:
+#Header:
+#@node sched_get_priority_min
+#@section @code{sched_get_priority_min}
+#@findex sched_get_priority_min
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_get_priority_min.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_getparam.texi
+Hash: 84f8a1c27e8b95d02bcf6537325ba48127e03e6b84a85899c04754859e6bb9de
+Copyright:
+License:
+#Header:
+#@node sched_getparam
+#@section @code{sched_getparam}
+#@findex sched_getparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_getparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_getscheduler.texi
+Hash: effbc16e72658dd54d3a4dfda735c9a847b984cac1770d3a69e21b18e3295643
+Copyright:
+License:
+#Header:
+#@node sched_getscheduler
+#@section @code{sched_getscheduler}
+#@findex sched_getscheduler
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_getscheduler.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_rr_get_interval.texi
+Hash: 28dde9d502544175d3e577faf43edfc9cdebc23ad5698817f93739b89eaa30ae
+Copyright:
+License:
+#Header:
+#@node sched_rr_get_interval
+#@section @code{sched_rr_get_interval}
+#@findex sched_rr_get_interval
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_rr_get_interval.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_setparam.texi
+Hash: 72b52136de2d388c0b20b342359f6341550f2f169138066f6506aef13dc568a0
+Copyright:
+License:
+#Header:
+#@node sched_setparam
+#@section @code{sched_setparam}
+#@findex sched_setparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_setparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_setscheduler.texi
+Hash: 09602d1144a443906cd95a7abc7338702e87e3a31a3d97685a073899186cb3d3
+Copyright:
+License:
+#Header:
+#@node sched_setscheduler
+#@section @code{sched_setscheduler}
+#@findex sched_setscheduler
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_setscheduler.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sched_yield.texi
+Hash: d2d8c8ac69459f6402005138854b6d4056187e0de6abcf753e292102ea96d34c
+Copyright:
+License:
+#Header:
+#@node sched_yield
+#@section @code{sched_yield}
+#@findex sched_yield
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_yield.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/seed48.texi
+Hash: 28bdf259829fb9387b78e51eab714e073170bbcea61949755e114d1604be8e25
+Copyright:
+License:
+#Header:
+#@node seed48
+#@section @code{seed48}
+#@findex seed48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/seed48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/seekdir.texi
+Hash: 4f3fdb7b17387addc89235b72cd26b1de5f0bad70b0e7b33bbd312857128967b
+Copyright:
+License:
+#Header:
+#@node seekdir
+#@section @code{seekdir}
+#@findex seekdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/seekdir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/select.texi
+Hash: e9ce5f847344b7fb8a70e7c53420b8235ed385d3d43466db2d604a4b87e8c5f7
+Copyright:
+License:
+#Header:
+#@node select
+#@section @code{select}
+#@findex select
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/select.html}
+#
+#Gnulib module: select
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{select} can only be
+#called on descriptors created by the @code{socket} function, not on regular
+#file descriptors.
+#@item
+File: ./doc/posix-functions/sem_close.texi
+Hash: ac874d36dada463ddff2c441e9b401348f525c81472a7913b9f056732453f98b
+Copyright:
+License:
+#Header:
+#@node sem_close
+#@section @code{sem_close}
+#@findex sem_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_destroy.texi
+Hash: 358f0ff417eb0b678c15aa7d2c4c5a230bf8442a78f36e8ec075e0d7c6d21037
+Copyright:
+License:
+#Header:
+#@node sem_destroy
+#@section @code{sem_destroy}
+#@findex sem_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_getvalue.texi
+Hash: 9bcf8c054cef77229c7f601724f90759b075f4360424fc988f0eb35527e37c5f
+Copyright:
+License:
+#Header:
+#@node sem_getvalue
+#@section @code{sem_getvalue}
+#@findex sem_getvalue
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_getvalue.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_init.texi
+Hash: f8c33d28ce23da0f1f9468414b072f0cafd5a250a437f9e67217d0aa46d606f5
+Copyright:
+License:
+#Header:
+#@node sem_init
+#@section @code{sem_init}
+#@findex sem_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_open.texi
+Hash: 535b9d92fa34b5d3a942d1d0c71d5b1cb895b1b3d1a0e1a40976b1aa8369eeef
+Copyright:
+License:
+#Header:
+#@node sem_open
+#@section @code{sem_open}
+#@findex sem_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_post.texi
+Hash: 33572c6870717902841189ed2faa2f22e870317e232b8a0df96ca7f464d55a3b
+Copyright:
+License:
+#Header:
+#@node sem_post
+#@section @code{sem_post}
+#@findex sem_post
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_post.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_timedwait.texi
+Hash: a6440ffe149ca3730afe7d0809bc0df9069248efb58db6d2a78ef3a95cce44d4
+Copyright:
+License:
+#Header:
+#@node sem_timedwait
+#@section @code{sem_timedwait}
+#@findex sem_timedwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_timedwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_trywait.texi
+Hash: 4ceedb230b907d2689613064f8e6d5f7d1ef7d3d3671f98c73cc49e62ded6ebd
+Copyright:
+License:
+#Header:
+#@node sem_trywait
+#@section @code{sem_trywait}
+#@findex sem_trywait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_trywait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_unlink.texi
+Hash: 0ee14f8c63cb4f610209419ac2a952f0baa08190ba720bd498efa60cb4813ad2
+Copyright:
+License:
+#Header:
+#@node sem_unlink
+#@section @code{sem_unlink}
+#@findex sem_unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sem_wait.texi
+Hash: ef6661da464b7311b32b8ecf0428d6ade99f613ecf710a160c964cf9da984909
+Copyright:
+License:
+#Header:
+#@node sem_wait
+#@section @code{sem_wait}
+#@findex sem_wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/semctl.texi
+Hash: a727b206d89f2f607838a05121a9ac9fb8bbbf2b261fec2b53405bade9fc0e8a
+Copyright:
+License:
+#Header:
+#@node semctl
+#@section @code{semctl}
+#@findex semctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/semctl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/semget.texi
+Hash: 3f7d131455914cf554feafcf7c52b429e71825175d3554a71018da6cbd964bfc
+Copyright:
+License:
+#Header:
+#@node semget
+#@section @code{semget}
+#@findex semget
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/semget.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/semop.texi
+Hash: 1174ca67c0eb6ca2cacbe0fbf7493c05e89c9479194549f198df5c92e8c6b935
+Copyright:
+License:
+#Header:
+#@node semop
+#@section @code{semop}
+#@findex semop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/semop.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/send.texi
+Hash: 17bc1f1b9e840a2c9d5faeb78362adfb9876d3b22c19eed265a563b48712ba65
+Copyright:
+License:
+#Header:
+#@node send
+#@section @code{send}
+#@findex send
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/send.html}
+#
+#Gnulib module: send
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{send}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+File: ./doc/posix-functions/sendmsg.texi
+Hash: f483c1453c90cde160dee58c7e1cbbb5710ae07f304e0ebb96b04d68d1040e21
+Copyright:
+License:
+#Header:
+#@node sendmsg
+#@section @code{sendmsg}
+#@findex sendmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sendmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sendto.texi
+Hash: 9e49433726ffd274b30a586229b8e7b56b963711aa9363f3fde85e68eeaeabcf
+Copyright:
+License:
+#Header:
+#@node sendto
+#@section @code{sendto}
+#@findex sendto
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sendto.html}
+#
+#Gnulib module: sendto
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{sendto}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+File: ./doc/posix-functions/setbuf.texi
+Hash: c1b80b2010ab858159853eb49c404f80e62c63fcf5efa4f8b361656ec17d8acb
+Copyright:
+License:
+#Header:
+#@node setbuf
+#@section @code{setbuf}
+#@findex setbuf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setbuf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/setegid.texi
+Hash: 4eb55b5c084cfe20710d1e8373c22fa6391501c1f03ffb45c8a65a67cdce44a2
+Copyright:
+License:
+#Header:
+#@node setegid
+#@section @code{setegid}
+#@findex setegid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setegid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setenv.texi
+Hash: 9c4d89ace2b70d38c942c3f8944928cccef4db906dd979b8657e523b25e949d0
+Copyright:
+License:
+#Header:
+#@node setenv
+#@section @code{setenv}
+#@findex setenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setenv.html}
+#
+#Gnulib module: setenv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, Solaris 9, mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/seteuid.texi
+Hash: 11065f33239479b6f7e52c623212e0e108290ba7a2f225b2fe71d52257a5054f
+Copyright:
+License:
+#Header:
+#@node seteuid
+#@section @code{seteuid}
+#@findex seteuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/seteuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setgid.texi
+Hash: 780d6ade51dbdac0c12016d3fbf16bb2421e62eb4aa70a733b243488d132023c
+Copyright:
+License:
+#Header:
+#@node setgid
+#@section @code{setgid}
+#@findex setgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setgrent.texi
+Hash: ac27d566a363f416471a065bb4b80dfbb1b3d72c6f44d262c47b9bebc5db0069
+Copyright:
+License:
+#Header:
+#@node setgrent
+#@section @code{setgrent}
+#@findex setgrent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setgrent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sethostent.texi
+Hash: 725baa41c0d9b152ca68a043ff588e0e6db3c11f5ef2b9a7b7628389905bb4d2
+Copyright:
+License:
+#Header:
+#@node sethostent
+#@section @code{sethostent}
+#@findex sethostent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sethostent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setitimer.texi
+Hash: 3852bfb85fac9dc66769defed010733ef020845a51b59b8d8ec679dd20aa2d81
+Copyright:
+License:
+#Header:
+#@node setitimer
+#@section @code{setitimer}
+#@findex setitimer
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setitimer.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setjmp.texi
+Hash: 22af0a92b03cbb7a563685898895441b261083b6684d0ee9a48f47ed26891ea4
+Copyright:
+License:
+#Header:
+#@node setjmp
+#@section @code{setjmp}
+#@findex setjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setkey.texi
+Hash: 240a7ea97fba8b9ff6d9a47fa42c31b3e28640d0e8e5981f317b1d9b720e73bb
+Copyright:
+License:
+#Header:
+#@node setkey
+#@section @code{setkey}
+#@findex setkey
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setkey.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setlocale.texi
+Hash: 817b6e7446ec7a47293c021378b27a59878f207483191864702dda72c8b57585
+Copyright:
+License:
+#Header:
+#@node setlocale
+#@section @code{setlocale}
+#@findex setlocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setlocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setlogmask.texi
+Hash: 765d03a247b4621b0d48e4590dedcc6a0d2ec29510e0404540bc61421ae9e253
+Copyright:
+License:
+#Header:
+#@node setlogmask
+#@section @code{setlogmask}
+#@findex setlogmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setlogmask.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setnetent.texi
+Hash: c2c9917076799c5935791b59d9d3ac025ed0ab177cd6b2dbfc31693ec9dd0ed6
+Copyright:
+License:
+#Header:
+#@node setnetent
+#@section @code{setnetent}
+#@findex setnetent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setnetent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setpgid.texi
+Hash: 7c2356192fa6799002224dc1a24029063c4cc90586ebfc253e3559145369bb56
+Copyright:
+License:
+#Header:
+#@node setpgid
+#@section @code{setpgid}
+#@findex setpgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setpgrp.texi
+Hash: e51777dacdd7dc22f04da87cbeee294893c758828e56420309995df635994374
+Copyright:
+License:
+#Header:
+#@node setpgrp
+#@section @code{setpgrp}
+#@findex setpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setpriority.texi
+Hash: c87be1e3b56994f1042308d42e8bdc660f03f0e69c82ee6783262e448151014f
+Copyright:
+License:
+#Header:
+#@node setpriority
+#@section @code{setpriority}
+#@findex setpriority
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpriority.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setprotoent.texi
+Hash: 884e72272c0ebda015c9d69e01182a99e021068f7839b75d276086d994d0fbea
+Copyright:
+License:
+#Header:
+#@node setprotoent
+#@section @code{setprotoent}
+#@findex setprotoent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setprotoent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setpwent.texi
+Hash: 9396b76d7feb617576732f7d10cbf77a866f72f161546b7662bad0b1a54081a9
+Copyright:
+License:
+#Header:
+#@node setpwent
+#@section @code{setpwent}
+#@findex setpwent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpwent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setregid.texi
+Hash: 6bcd6d07ac44360dc656876796a21f972bb05480d9bf57323e40fc5ca550dae3
+Copyright:
+License:
+#Header:
+#@node setregid
+#@section @code{setregid}
+#@findex setregid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setregid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setreuid.texi
+Hash: a2894c1abc3680e75c9c62fe31090120166f9edff985537da0b3b07621a7b130
+Copyright:
+License:
+#Header:
+#@node setreuid
+#@section @code{setreuid}
+#@findex setreuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setreuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setrlimit.texi
+Hash: 5958d803819871762a9194cd467efc0bf2d71ad529a8dbc42aeb3e56d18ef353
+Copyright:
+License:
+#Header:
+#@node setrlimit
+#@section @code{setrlimit}
+#@findex setrlimit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setrlimit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setservent.texi
+Hash: 4140e3b3d42a1e14ceb0d81d7204b6f59b76655866b6693950bfecdae9605d99
+Copyright:
+License:
+#Header:
+#@node setservent
+#@section @code{setservent}
+#@findex setservent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setservent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setsid.texi
+Hash: 5420e9cae04273dfc040f5832b9174b5564f4b38e482b274ecc0e0a8b17bc2c5
+Copyright:
+License:
+#Header:
+#@node setsid
+#@section @code{setsid}
+#@findex setsid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setsid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setsockopt.texi
+Hash: bd5dd31491d9fba4a723fbc708f0f984a77f61bacefaf2fc2ca396fcafc0fe34
+Copyright:
+License:
+#Header:
+#@node setsockopt
+#@section @code{setsockopt}
+#@findex setsockopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setsockopt.html}
+#
+#Gnulib module: setsockopt
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{setsockopt} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/setstate.texi
+Hash: 7b70df59e5d17161587200bda69c41606bc0d74689c8ebe00a6fe3d6b89e534e
+Copyright:
+License:
+#Header:
+#@node setstate
+#@section @code{setstate}
+#@findex setstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setuid.texi
+Hash: 6d8ea2173f4dd28ad1e91fef87b91f4b37f312d94ecde8c2ea7a1def4b20af2c
+Copyright:
+License:
+#Header:
+#@node setuid
+#@section @code{setuid}
+#@findex setuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setutxent.texi
+Hash: c888acebdd69ac6f546bde407b3b5ca347fce9a4abc3738e52bf16116e4782ac
+Copyright:
+License:
+#Header:
+#@node setutxent
+#@section @code{setutxent}
+#@findex setutxent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setutxent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/setvbuf.texi
+Hash: fbfcee6cf17813046c5d7770e3e28de66747fae03b99febcc83a7afd709adb1a
+Copyright:
+License:
+#Header:
+#@node setvbuf
+#@section @code{setvbuf}
+#@findex setvbuf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setvbuf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/shm_open.texi
+Hash: 711cb8029e21657fbc064d404ae7c2ef07e04ac28a7d26aa81a85561f93282bb
+Copyright:
+License:
+#Header:
+#@node shm_open
+#@section @code{shm_open}
+#@findex shm_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shm_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/shm_unlink.texi
+Hash: 35c8021da60f69c9ebcff71354f190dd9ee08ceb621dfcf03648e74f82ff0abd
+Copyright:
+License:
+#Header:
+#@node shm_unlink
+#@section @code{shm_unlink}
+#@findex shm_unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shm_unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/shmat.texi
+Hash: af47252558f36f307c6ce55289a619bde06542814c0df5fe5c6eee825741498c
+Copyright:
+License:
+#Header:
+#@node shmat
+#@section @code{shmat}
+#@findex shmat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/shmctl.texi
+Hash: bbdc41b3831e90eb39d93d9959b3a97aebd44e0ad7838445371d377f11831af0
+Copyright:
+License:
+#Header:
+#@node shmctl
+#@section @code{shmctl}
+#@findex shmctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmctl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/shmdt.texi
+Hash: b232456ce946eab53cb5c9dd93b637d707efd563a3002b96feae52b49bf35788
+Copyright:
+License:
+#Header:
+#@node shmdt
+#@section @code{shmdt}
+#@findex shmdt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmdt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/shmget.texi
+Hash: 1d43d652e94e8910fa095f710d53122c2eb95d2f07f9b0d0dcba635a7c51ec84
+Copyright:
+License:
+#Header:
+#@node shmget
+#@section @code{shmget}
+#@findex shmget
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmget.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/shutdown.texi
+Hash: 29fd2d2990cf30cf14c302f76697e11d96f31a9d4e14073f070bd38a84a0bdda
+Copyright:
+License:
+#Header:
+#@node shutdown
+#@section @code{shutdown}
+#@findex shutdown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shutdown.html}
+#
+#Gnulib module: shutdown
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{shutdown} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+File: ./doc/posix-functions/sigaction.texi
+Hash: 3cdd81c159f9d0dba0a772d6ee39c302d310b9bc0c05293ff05fc4a08daadf1d
+Copyright:
+License:
+#Header:
+#@node sigaction
+#@section @code{sigaction}
+#@findex sigaction
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigaction.html}
+#
+#Gnulib module: sigaction
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/sigaddset.texi
+Hash: 87d0a09d5c3d0fa0a9ad87967175e1c39afbf2d4bb335cdae4e557454163fd5f
+Copyright:
+License:
+#Header:
+#@node sigaddset
+#@section @code{sigaddset}
+#@findex sigaddset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigaddset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/sigaltstack.texi
+Hash: e8985e3e771fbc1c26d97574a451d0a10395aceb70a1d365d4144ca3045b4de4
+Copyright:
+License:
+#Header:
+#@node sigaltstack
+#@section @code{sigaltstack}
+#@findex sigaltstack
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigaltstack.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigdelset.texi
+Hash: 6ab4bcad934cc4107635ba22f4edbec51c53bd010e628837c8a794db9106befb
+Copyright:
+License:
+#Header:
+#@node sigdelset
+#@section @code{sigdelset}
+#@findex sigdelset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigdelset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/sigemptyset.texi
+Hash: 14e1a070f0a75d6ed8d5d0c03a87fb88c716371c984180c7bff89e802c58c46b
+Copyright:
+License:
+#Header:
+#@node sigemptyset
+#@section @code{sigemptyset}
+#@findex sigemptyset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigemptyset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/sigfillset.texi
+Hash: 3b2a1a255cefe69a417f80a0edf260888c0db54bfdd3d12424bb30b31df0c59d
+Copyright:
+License:
+#Header:
+#@node sigfillset
+#@section @code{sigfillset}
+#@findex sigfillset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigfillset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/sighold.texi
+Hash: c28922c54cf2987fd419a7e53c1c070521cdcf17e4c18b7cd7dcb213e7f6006c
+Copyright:
+License:
+#Header:
+#@node sighold
+#@section @code{sighold}
+#@findex sighold
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sighold.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigignore.texi
+Hash: 3ccf3776aadb2d683f46c2e2259b1059bf8f109cbf6322bd4534dbfb315a472c
+Copyright:
+License:
+#Header:
+#@node sigignore
+#@section @code{sigignore}
+#@findex sigignore
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigignore.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/siginterrupt.texi
+Hash: 3349e08d5be99e38c5a03fe7b7d459078dcd284fd0149a41c075402bbfb7c405
+Copyright:
+License:
+#Header:
+#@node siginterrupt
+#@section @code{siginterrupt}
+#@findex siginterrupt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/siginterrupt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigismember.texi
+Hash: 49eccb6e25f6f97abb2511bd20e9d3e01769d0bd25e1401230b3a252e95c213f
+Copyright:
+License:
+#Header:
+#@node sigismember
+#@section @code{sigismember}
+#@findex sigismember
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigismember.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/siglongjmp.texi
+Hash: 24a32bca7cf45f9d1b12aeeda5dcb11dd4fd66f53d74c27d12bd42e474c9d1d0
+Copyright:
+License:
+#Header:
+#@node siglongjmp
+#@section @code{siglongjmp}
+#@findex siglongjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/siglongjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/signal.texi
+Hash: c518a9f0387ab90d8b170e72d3583f762ac4a05461790508d01beab9ab3d8558
+Copyright:
+License:
+#Header:
+#@node signal
+#@section @code{signal}
+#@findex signal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/signal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/signbit.texi
+Hash: 9e6a47f6d9259e813d6797c19a71415f8e4647438247ff24e8e2424a0a565702
+Copyright:
+License:
+#Header:
+#@node signbit
+#@section @code{signbit}
+#@findex signbit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/signbit.html}
+#
+#Gnulib module: signbit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/signgam.texi
+Hash: 3ef7a55a9465be68ba43768332914144bd6c2c173b9a7a9a2e4b07f33121c7ed
+Copyright:
+License:
+#Header:
+#@node signgam
+#@section @code{signgam}
+#@findex signgam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/signgam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigpause.texi
+Hash: 90fce48a0d49ab718dd652a5a5a87668ce9617dad7ff70874f4b1f7460432841
+Copyright:
+License:
+#Header:
+#@node sigpause
+#@section @code{sigpause}
+#@findex sigpause
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigpause.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigpending.texi
+Hash: 2de6219e44b909caad92df6778f831f8b2a15b1ccf7e05f729d33dd54c5fc27a
+Copyright:
+License:
+#Header:
+#@node sigpending
+#@section @code{sigpending}
+#@findex sigpending
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigpending.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/sigprocmask.texi
+Hash: 7811aa27382f44d47c7d149b3806ae14f1198c12a3dd63ebcf6f243a6558b74f
+Copyright:
+License:
+#Header:
+#@node sigprocmask
+#@section @code{sigprocmask}
+#@findex sigprocmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigprocmask.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/sigqueue.texi
+Hash: 9c5d6f633c6f30e8fc0156ab80d63f803626e6f8bb5643e76ab141df5110c706
+Copyright:
+License:
+#Header:
+#@node sigqueue
+#@section @code{sigqueue}
+#@findex sigqueue
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigqueue.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigrelse.texi
+Hash: 65be3cf6a9cbb69df7b4747865bd7efa29653d3e971d39e3aa1419deb39a80ea
+Copyright:
+License:
+#Header:
+#@node sigrelse
+#@section @code{sigrelse}
+#@findex sigrelse
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigrelse.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigset.texi
+Hash: 817f69cc205c41f70b80ea90ab05062b190f96036502febe7c854c33b17a253a
+Copyright:
+License:
+#Header:
+#@node sigset
+#@section @code{sigset}
+#@findex sigset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigset.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigsetjmp.texi
+Hash: cc4ca79a3fb359807d0b9b990ec85be94f2c178350a771f908b5256c556a8817
+Copyright:
+License:
+#Header:
+#@node sigsetjmp
+#@section @code{sigsetjmp}
+#@findex sigsetjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigsetjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigsuspend.texi
+Hash: 9f9cff8e739048a9f60008555c57b52b49ef7d90ca097e08f8988d24a4c1a8a5
+Copyright:
+License:
+#Header:
+#@node sigsuspend
+#@section @code{sigsuspend}
+#@findex sigsuspend
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigsuspend.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigtimedwait.texi
+Hash: 0d47c3fdba144dd0c0aa13adc6924d3275b3cfec99c840ed982482cc8d729c12
+Copyright:
+License:
+#Header:
+#@node sigtimedwait
+#@section @code{sigtimedwait}
+#@findex sigtimedwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigtimedwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigwait.texi
+Hash: 6dddd4ba0f84a96575d582a6ff6afe6edf8ed9f95b14fa5a75a0e30525066682
+Copyright:
+License:
+#Header:
+#@node sigwait
+#@section @code{sigwait}
+#@findex sigwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sigwaitinfo.texi
+Hash: 8519df8c6af7a55c5e9a477e0ea273270f47ecec2e180025c7e26a2992b94378
+Copyright:
+License:
+#Header:
+#@node sigwaitinfo
+#@section @code{sigwaitinfo}
+#@findex sigwaitinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigwaitinfo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sin.texi
+Hash: f676105dffa7de8f92a0b6f8f57abef62d5cd3185cfbbb94f4dcc80a1d2a0170
+Copyright:
+License:
+#Header:
+#@node sin
+#@section @code{sin}
+#@findex sin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/sinf.texi
+Hash: 6b533d6508b0c237bc96b621b1f7e8f506f848ceff578dc4c25a0739ff026e70
+Copyright:
+License:
+#Header:
+#@node sinf
+#@section @code{sinf}
+#@findex sinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sinh.texi
+Hash: eee78b2f05fd0d6a7ca4c90460bb0440ce78fa090a075e3ec74f104b18b887f1
+Copyright:
+License:
+#Header:
+#@node sinh
+#@section @code{sinh}
+#@findex sinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/sinhf.texi
+Hash: 15948ac5234b4e3f9763f212e52c490c8d917e214e3314f63e42d48a96c66721
+Copyright:
+License:
+#Header:
+#@node sinhf
+#@section @code{sinhf}
+#@findex sinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sinhl.texi
+Hash: 4ee1ad6e044636412b8f958d57116513ef7412caaa45b936796b888f154f96e9
+Copyright:
+License:
+#Header:
+#@node sinhl
+#@section @code{sinhl}
+#@findex sinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sinl.texi
+Hash: 10f6d3e1420c92efabdee4ff2ec16a1c2a547530c24cd0a0fd564d70e751838e
+Copyright:
+License:
+#Header:
+#@node sinl
+#@section @code{sinl}
+#@findex sinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sleep.texi
+Hash: 4cee9d14a9da82cb86de0e74f1bf4ba2a685783e472474fcef506b8a3a209ff6
+Copyright:
+License:
+#Header:
+#@node sleep
+#@section @code{sleep}
+#@findex sleep
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sleep.html}
+#
+#Gnulib module: sleep
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw (2005 or newer).
+#@item
+#This function takes milliseconds as argument and returns @code{void} on some
+File: ./doc/posix-functions/snprintf.texi
+Hash: 6c65c8fb2c2be3898412015204e121e2d318c68b72bb30da42e1e97638cfc92f
+Copyright:
+License:
+#Header:
+#@node snprintf
+#@section @code{snprintf}
+#@findex snprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/snprintf.html}
+#
+#Gnulib module: snprintf or snprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{snprintf} or @code{snprintf-posix}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1.
+#@item
+#This function overwrites memory even when a size argument of 1 is passed on some
+File: ./doc/posix-functions/sockatmark.texi
+Hash: 920043e499988efb4a6ecd649dee0e51423706cdf1b627d287ee498e733a5e9d
+Copyright:
+License:
+#Header:
+#@node sockatmark
+#@section @code{sockatmark}
+#@findex sockatmark
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sockatmark.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/socket.texi
+Hash: bb5c8946b1533c378b8b51008463815ff926bf3edc8d434945008788336605e6
+Copyright:
+License:
+#Header:
+#@node socket
+#@section @code{socket}
+#@findex socket
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/socket.html}
+#
+#Gnulib module: socket
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), the descriptors returned by
+#the @code{socket} function can not be used in calls to @code{read},
+#@code{write}, and @code{close}; you have to use @code{recv}, @code{send},
+#@code{closesocket} in these cases instead.
+File: ./doc/posix-functions/socketpair.texi
+Hash: 770e250df219be1c39ad0bc54906007f1364594d855db008855fd5027ed6fd17
+Copyright:
+License:
+#Header:
+#@node socketpair
+#@section @code{socketpair}
+#@findex socketpair
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/socketpair.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sprintf.texi
+Hash: adef99bf429ec5dc65bbb09f6b18391699c7c0b404cf95ba34bb4db35c474dc9
+Copyright:
+License:
+#Header:
+#@node sprintf
+#@section @code{sprintf}
+#@findex sprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sprintf.html}
+#
+#Gnulib module: sprintf-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+File: ./doc/posix-functions/sqrt.texi
+Hash: 7bd904a48d9461c5ab7ec22f185475d3849dd2b798f72cb54986fec482103eec
+Copyright:
+License:
+#Header:
+#@node sqrt
+#@section @code{sqrt}
+#@findex sqrt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sqrt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sqrtf.texi
+Hash: 440a2d8390eee454a3f25219d743c8e847045e11fc366fcf2ab6272bff843532
+Copyright:
+License:
+#Header:
+#@node sqrtf
+#@section @code{sqrtf}
+#@findex sqrtf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sqrtf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sqrtl.texi
+Hash: 527035958e9ce2e375b8e03b8d1d37300c3da351d34b8c0eff9e1aba9b15ff54
+Copyright:
+License:
+#Header:
+#@node sqrtl
+#@section @code{sqrtl}
+#@findex sqrtl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sqrtl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/srand.texi
+Hash: b21bd4917b432b6818ebe2f3cbadd1ecb2903b11d0158f2a2af18294b9026cc8
+Copyright:
+License:
+#Header:
+#@node srand
+#@section @code{srand}
+#@findex srand
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/srand.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/srand48.texi
+Hash: d80029584212c15658a5fd5e7e068068dfdf634b4f7e0411b2ef09a698ee7b3c
+Copyright:
+License:
+#Header:
+#@node srand48
+#@section @code{srand48}
+#@findex srand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/srand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/srandom.texi
+Hash: a10bfc704c425ab26485a296899f84e820bede1c112a19af796ee0bdce64d078
+Copyright:
+License:
+#Header:
+#@node srandom
+#@section @code{srandom}
+#@findex srandom
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/srandom.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sscanf.texi
+Hash: 639cf4a9a282985958da828fe209b80969230cb51e066f6f4fdaf79063d373cc
+Copyright:
+License:
+#Header:
+#@node sscanf
+#@section @code{sscanf}
+#@findex sscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/stat.texi
+Hash: 8d8fe8d3a054025b09c15989283e7d4754db8266583f7eb712f079efc1893db4
+Copyright:
+License:
+#Header:
+#@node stat
+#@section @code{stat}
+#@findex stat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/statvfs.texi
+Hash: c157e04fe064fb845027f0118a7978e9efb42c003ebd892582269ef5f45d64e4
+Copyright:
+License:
+#Header:
+#@node statvfs
+#@section @code{statvfs}
+#@findex statvfs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/statvfs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/stderr.texi
+Hash: 7632aaef92a1ca4ce28394d00756b3e8919b15817cbf548d8402404408cce9e7
+Copyright:
+License:
+#Header:
+#@node stderr
+#@section @code{stderr}
+#@findex stderr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stderr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/stdin.texi
+Hash: a2f171d9774add6803c2df2f4d78912d32460e395041035c75c15c3216501ae2
+Copyright:
+License:
+#Header:
+#@node stdin
+#@section @code{stdin}
+#@findex stdin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stdin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/stdout.texi
+Hash: 1820d40f78e54bd1362377e4b2d5f8f9a9da71a37a5e7cb5888e97a455e2b8f9
+Copyright:
+License:
+#Header:
+#@node stdout
+#@section @code{stdout}
+#@findex stdout
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stdout.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/stpcpy.texi
+Hash: ec7fba60db1ae08ec7e335c879369c5952909faa0b097d50f883bf4067adc92b
+Copyright:
+License:
+#Header:
+#@node stpcpy
+#@section @code{stpcpy}
+#@findex stpcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stpcpy.html}
+#
+#Gnulib module: stpcpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1,
+#Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/stpncpy.texi
+Hash: 594dc6a1a62217496f0a4a517ccb4d256911977cf21ad5649ae9ae2c5cb260ec
+Copyright:
+License:
+#Header:
+#@node stpncpy
+#@section @code{stpncpy}
+#@findex stpncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stpncpy.html}
+#
+#Gnulib module: stpncpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX
+#11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@item
+File: ./doc/posix-functions/strcasecmp.texi
+Hash: 7f49d3eceda3f51eb6ede418807164200915a15c26aabee9e3c678f79455ccfc
+Copyright:
+License:
+#Header:
+#@node strcasecmp
+#@section @code{strcasecmp}
+#@findex strcasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strcasecmp_l.texi
+Hash: 2d4cf5c896e1982e35fb0a9e338fe2e67c0c87e9eac900de5045c1af7035bbb7
+Copyright:
+License:
+#Header:
+#@node strcasecmp_l
+#@section @code{strcasecmp_l}
+#@findex strcasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strcat.texi
+Hash: a0407da6c606d87607b8e64140519deb5030ee90004ac26fb72a067c9c0cfbd8
+Copyright:
+License:
+#Header:
+#@node strcat
+#@section @code{strcat}
+#@findex strcat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strchr.texi
+Hash: 91fade2e19fa83ad5590281a8e15b2056505d2812d8c5741760a5ad0dbea0bff
+Copyright:
+License:
+#Header:
+#@node strchr
+#@section @code{strchr}
+#@findex strchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strcmp.texi
+Hash: 7fbbcf029f56138b09c72dda4b9ef0fecc39fbed9deff9b401c58a58d9a0666d
+Copyright:
+License:
+#Header:
+#@node strcmp
+#@section @code{strcmp}
+#@findex strcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strcoll.texi
+Hash: ee188da4f400e65ed26ff9866ff2b8bc30f430eb0512b332087ea2c2cd7a5a7f
+Copyright:
+License:
+#Header:
+#@node strcoll
+#@section @code{strcoll}
+#@findex strcoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcoll.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strcoll_l.texi
+Hash: edfafaa4cc6ba9b3a175802811fc246df5f91d0e63ab0790111490fde6c12719
+Copyright:
+License:
+#Header:
+#@node strcoll_l
+#@section @code{strcoll_l}
+#@findex strcoll_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcoll_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strcpy.texi
+Hash: 2b0a1e8d63a747c6e10fdbdea6ebb0c24d6c6ca2a7c397a53b918eeb2ef6ff3d
+Copyright:
+License:
+#Header:
+#@node strcpy
+#@section @code{strcpy}
+#@findex strcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strcspn.texi
+Hash: 94cc29735d1e83beac880fb97a531b0c6f2a2783f478fa86e97ed03beb2b9920
+Copyright:
+License:
+#Header:
+#@node strcspn
+#@section @code{strcspn}
+#@findex strcspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcspn.html}
+#
+#Gnulib module: strcspn
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/strdup.texi
+Hash: 045dfd18a8b270e77e36277809c55abff0128a0b9029d4decc6afaeed460a08b
+Copyright:
+License:
+#Header:
+#@node strdup
+#@section @code{strdup}
+#@findex strdup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strdup.html}
+#
+#Gnulib module: strdup or strdup-posix
+#
+#Portability problems fixed by either Gnulib module @code{strdup} or @code{strdup-posix}:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@item
+#This function has no prototype in @code{<string.h>} on some old platforms.
+#@end itemize
+File: ./doc/posix-functions/strerror.texi
+Hash: b8b53ff22e7edfdd1ffa1e448407b39e80470f5bce87c775e406765a97263fe7
+Copyright:
+License:
+#Header:
+#@node strerror
+#@section @code{strerror}
+#@findex strerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strerror.html}
+#
+#Gnulib module: strerror
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@item
+#This function does not support the error values that are specified by POSIX
+#but not defined by the system, on some platforms:
+File: ./doc/posix-functions/strerror_l.texi
+Hash: a02032d1af6e599476219e5ff404c30bede78cee58da6ccb0197d0c5e7d9c5a6
+Copyright:
+License:
+#Header:
+#@node strerror_l
+#@section @code{strerror_l}
+#@findex strerror_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strerror_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strerror_r.texi
+Hash: 62874d18f06f58af8ef7a84e900cbf6a0912c558dfd0a20144dc6cc45bfb2c48
+Copyright:
+License:
+#Header:
+#@node strerror_r
+#@section @code{strerror_r}
+#@findex strerror_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strerror_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strfmon.texi
+Hash: 9ee64b73d67aa190bec10ff662e522af5c95efa58b091cf0b6b95ab6dea7f54c
+Copyright:
+License:
+#Header:
+#@node strfmon
+#@section @code{strfmon}
+#@findex strfmon
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strfmon.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strfmon_l.texi
+Hash: 951fbe0fd04da1ac6ec3e5d5e9e25a1ffff8cfbe2af8461f983b46a8b8087809
+Copyright:
+License:
+#Header:
+#@node strfmon_l
+#@section @code{strfmon_l}
+#@findex strfmon_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strfmon_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strftime.texi
+Hash: 2179be9ea7f8728eb9666e1eaf244afabb1776e0aa5cfa301eb494dda908f72c
+Copyright:
+License:
+#Header:
+#@node strftime
+#@section @code{strftime}
+#@findex strftime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strftime_l.texi
+Hash: 2b951eeeafdb7d06f61bd455bfbe223cb6aa0dd8c6bbe1f207dd5d52d07b13a4
+Copyright:
+License:
+#Header:
+#@node strftime_l
+#@section @code{strftime_l}
+#@findex strftime_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strftime_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strlen.texi
+Hash: 9d334c502f628671c63c034801c7e852a2e7800124aa68628543bdb69ecc5684
+Copyright:
+License:
+#Header:
+#@node strlen
+#@section @code{strlen}
+#@findex strlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strlen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strncasecmp.texi
+Hash: e5148eae134f9d79ab3966b17c5120ad16132967ed193205abdc9f704ab59d6c
+Copyright:
+License:
+#Header:
+#@node strncasecmp
+#@section @code{strncasecmp}
+#@findex strncasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strncasecmp_l.texi
+Hash: 3b874f7e054f2f3d2998d2cce8ffd7973b63dab2a40949e464bfd1d728459114
+Copyright:
+License:
+#Header:
+#@node strncasecmp_l
+#@section @code{strncasecmp_l}
+#@findex strncasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strncat.texi
+Hash: 654e14224e9e3ed7ebad2de0510dbed9efce12256abd7259258bec7ae5c780b0
+Copyright:
+License:
+#Header:
+#@node strncat
+#@section @code{strncat}
+#@findex strncat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strncmp.texi
+Hash: 2c3a13c7830cccc3f0be728c0540ddb7ff29f8351df316dfb24b4f1f921aea7b
+Copyright:
+License:
+#Header:
+#@node strncmp
+#@section @code{strncmp}
+#@findex strncmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strncpy.texi
+Hash: 4c05ddf672725788270b9d16711cdbddf4f81bbd16e806664314c222a0a8ecc0
+Copyright:
+License:
+#Header:
+#@node strncpy
+#@section @code{strncpy}
+#@findex strncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strndup.texi
+Hash: ec1c126888ea4ef0b27a3f98df47b67a5ec5102a51b9885ba7336ee6784fc6b2
+Copyright:
+License:
+#Header:
+#@node strndup
+#@section @code{strndup}
+#@findex strndup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strndup.html}
+#
+#Gnulib module: strndup
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@item
+#This function does not NUL-terminate the result on some platforms:
+File: ./doc/posix-functions/strnlen.texi
+Hash: 354bc895a0b87fd89bdd8ee323c4d2ec021252f194ef630ec03cc4d8a1fb7554
+Copyright:
+License:
+#Header:
+#@node strnlen
+#@section @code{strnlen}
+#@findex strnlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strnlen.html}
+#
+#Gnulib module: strnlen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+#@item
+#This function is buggy on some platforms:
+File: ./doc/posix-functions/strpbrk.texi
+Hash: 9557cbb965eb68e1a8e3a75904d406cdac427d63f8d312e48f06b63112641189
+Copyright:
+License:
+#Header:
+#@node strpbrk
+#@section @code{strpbrk}
+#@findex strpbrk
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strpbrk.html}
+#
+#Gnulib module: strpbrk
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/strptime.texi
+Hash: ef3417cc5487eadb9fc54afbab9f4462fdae78770f52efe81eb8c9362b1a8e11
+Copyright:
+License:
+#Header:
+#@node strptime
+#@section @code{strptime}
+#@findex strptime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strptime.html}
+#
+#Gnulib module: strptime
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/strrchr.texi
+Hash: a4a53fda2b5af669b4617b1bdbcafe0fe580a8fb9d5d8d9d5de32baedcd16e80
+Copyright:
+License:
+#Header:
+#@node strrchr
+#@section @code{strrchr}
+#@findex strrchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strrchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strsignal.texi
+Hash: 58c763d79113d00d2daf87b0ea1ca853653533082ecf927ef77d737ebb214c96
+Copyright:
+License:
+#Header:
+#@node strsignal
+#@section @code{strsignal}
+#@findex strsignal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strsignal.html}
+#
+#Gnulib module: strsignal
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+#
+#@item
+File: ./doc/posix-functions/strspn.texi
+Hash: 47c5ad5b37dcc46737f8b28f1398366d4240315e8f53ece412d032dc9bc7b440
+Copyright:
+License:
+#Header:
+#@node strspn
+#@section @code{strspn}
+#@findex strspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strspn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strstr.texi
+Hash: 51205fda2f8406dc3daf66d5ea624d5963fe65610dfab99e46a1785fca95ec46
+Copyright:
+License:
+#Header:
+#@node strstr
+#@section @code{strstr}
+#@findex strstr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strstr.html}
+#
+#Gnulib module: strstr or strstr-simple
+#
+#Portability problems fixed by either Gnulib module @code{strstr-simple}
+#or @code{strstr}:
+#@itemize
+#@item
+#This function can trigger memchr bugs on some platforms:
+#glibc 2.10.
+#@end itemize
+File: ./doc/posix-functions/strtod.texi
+Hash: adba58dc750ac05f63ccdc0320c3ea4c0880205e3336a5666aa8cbdbc5fb5cf1
+Copyright:
+License:
+#Header:
+#@node strtod
+#@section @code{strtod}
+#@findex strtod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtod.html}
+#
+#Gnulib module: strtod
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#
+#@item
+#This function mis-parses strings with leading @samp{+} on some old platforms:
+File: ./doc/posix-functions/strtof.texi
+Hash: f83812681f499b58973a270204a0b5d82f5efe872f0ddc2ffe61902c91845a14
+Copyright:
+License:
+#Header:
+#@node strtof
+#@section @code{strtof}
+#@findex strtof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strtoimax.texi
+Hash: b479a9a1a65dddbcd340e536ac8bf12ab8474dec475b665594875c836c7b0c7b
+Copyright:
+License:
+#Header:
+#@node strtoimax
+#@section @code{strtoimax}
+#@findex strtoimax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoimax.html}
+#
+#Gnulib module: strtoimax
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#OpenBSD 3.8, AIX 4.3.2, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/strtok.texi
+Hash: 76ae3da669ccced4bbe8c116203fe16def6351c6762a852bbf1a5f130e1b71aa
+Copyright:
+License:
+#Header:
+#@node strtok
+#@section @code{strtok}
+#@findex strtok
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtok.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strtok_r.texi
+Hash: 5532819e105838ee4483b268600ad0ab59dbff5a536f814ad80c711e8f0fdaac
+Copyright:
+License:
+#Header:
+#@node strtok_r
+#@section @code{strtok_r}
+#@findex strtok_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtok_r.html}
+#
+#Gnulib module: strtok_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#This function crashes when invoked from code compiled with optimization enabled
+File: ./doc/posix-functions/strtol.texi
+Hash: 478cd81757360e8ff9c6d66c0d859402961adac17a3166c02d8291432b546cc3
+Copyright:
+License:
+#Header:
+#@node strtol
+#@section @code{strtol}
+#@findex strtol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtol.html}
+#
+#Gnulib module: strtol
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/strtold.texi
+Hash: cc0d00fe20a006116f837e389883fd2c3bedef7c16b2e55d8f379052aa8f33af
+Copyright:
+License:
+#Header:
+#@node strtold
+#@section @code{strtold}
+#@findex strtold
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtold.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/strtoll.texi
+Hash: 3aa3df77f158c0f7cc3a99994f2281a6a5ba800aa43fcdbdbd265c4fb4bab884
+Copyright:
+License:
+#Header:
+#@node strtoll
+#@section @code{strtoll}
+#@findex strtoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoll.html}
+#
+#Gnulib module: strtoll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, OSF/1 5.1, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/strtoul.texi
+Hash: fa2e866b9953be91e9970e632d9eb90cf63d61c43c2f431084379e169bd72bb1
+Copyright:
+License:
+#Header:
+#@node strtoul
+#@section @code{strtoul}
+#@findex strtoul
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoul.html}
+#
+#Gnulib module: strtoul
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-functions/strtoull.texi
+Hash: 7672cc8ef139fb96545da9219cbb7e967b8365abd92d12f235ead6afddfdea98
+Copyright:
+License:
+#Header:
+#@node strtoull
+#@section @code{strtoull}
+#@findex strtoull
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoull.html}
+#
+#Gnulib module: strtoull
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, OSF/1 5.1, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/strtoumax.texi
+Hash: 5d686d899707d3f7ed00e8545527d6cb3334bddbf769f422c9077c9c908c59f7
+Copyright:
+License:
+#Header:
+#@node strtoumax
+#@section @code{strtoumax}
+#@findex strtoumax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoumax.html}
+#
+#Gnulib module: strtoumax
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/strxfrm.texi
+Hash: 38eb4167ca28913e09d1aa3cebce875f918b4004b3def72276795b854da15103
+Copyright:
+License:
+#Header:
+#@node strxfrm
+#@section @code{strxfrm}
+#@findex strxfrm
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strxfrm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/strxfrm_l.texi
+Hash: 5877b7bc3ae18925e11da5490d2bf91124f91afffa86d7adbc9daee59b9ce3b8
+Copyright:
+License:
+#Header:
+#@node strxfrm_l
+#@section @code{strxfrm_l}
+#@findex strxfrm_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strxfrm_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/swab.texi
+Hash: 5f1b9e4cd038dfa4ba9b6cced84f7ca4a093bcc874734b7308a6c9f908e2a979
+Copyright:
+License:
+#Header:
+#@node swab
+#@section @code{swab}
+#@findex swab
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/swab.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/swprintf.texi
+Hash: 05d43b5965871120633aaa8e07db8b65e0b5c76f32a79209886f5cd9808d9574
+Copyright:
+License:
+#Header:
+#@node swprintf
+#@section @code{swprintf}
+#@findex swprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/swprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/swscanf.texi
+Hash: bdb33f918f65de4079d17d12db4ce89974b98874586b5239708ca87ea604bf47
+Copyright:
+License:
+#Header:
+#@node swscanf
+#@section @code{swscanf}
+#@findex swscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/swscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/symlink.texi
+Hash: 8ab46669c8aa3f1a94011e96ead35ad94b6b860acfdf93045e2f5fcb4abe68a5
+Copyright:
+License:
+#Header:
+#@node symlink
+#@section @code{symlink}
+#@findex symlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/symlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/symlinkat.texi
+Hash: 74823e16d2e2127a2cea8f8012bde6f13eb46e16b92b95378e44ff1ccdfbe489
+Copyright:
+License:
+#Header:
+#@node symlinkat
+#@section @code{symlinkat}
+#@findex symlinkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/symlinkat.html}
+#
+#Gnulib module: symlinkat
+#
+#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.
+#@end itemize
+File: ./doc/posix-functions/sync.texi
+Hash: f3254dc3fe6e69ccec6ed1fabcc4a937b762d47399b42417b4602600f7a74e02
+Copyright:
+License:
+#Header:
+#@node sync
+#@section @code{sync}
+#@findex sync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/sysconf.texi
+Hash: 7fa91e5905cb666480886ed1fbfcc8bd6143aa15ad991c50e185713932e3954d
+Copyright:
+License:
+#Header:
+#@node sysconf
+#@section @code{sysconf}
+#@findex sysconf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sysconf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/syslog.texi
+Hash: 3fa7a8bce58b4fc35d8de2b7f83302751a10774cd9c47317a649594a412d85a7
+Copyright:
+License:
+#Header:
+#@node syslog
+#@section @code{syslog}
+#@findex syslog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/syslog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/system.texi
+Hash: f2f18381b4fc011d3e3ff57014455b7ad72095ab5dfcd5110c38ad243b1a574a
+Copyright:
+License:
+#Header:
+#@node system
+#@section @code{system}
+#@findex system
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/system.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tan.texi
+Hash: 2548baf13b89054a685577793dcb420503cb01784088d0b67f0b8d4ebef7619e
+Copyright:
+License:
+#Header:
+#@node tan
+#@section @code{tan}
+#@findex tan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/tanf.texi
+Hash: a1ccbad3ea8fc17a79b7965bd07071f3f7a644b3ac32045136f0e3d23ec6da47
+Copyright:
+License:
+#Header:
+#@node tanf
+#@section @code{tanf}
+#@findex tanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tanh.texi
+Hash: 323d1753b2bff97aa6a4d046eb95e878347cfbcce6759c4063bcb2a2700fcac6
+Copyright:
+License:
+#Header:
+#@node tanh
+#@section @code{tanh}
+#@findex tanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/tanhf.texi
+Hash: 585f42d0c0f485ddd0481ca748825a4c1120748889c8bf8cfb92d8e2896045d0
+Copyright:
+License:
+#Header:
+#@node tanhf
+#@section @code{tanhf}
+#@findex tanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tanhl.texi
+Hash: 78a63792dc3fb91f708b6fee2002e2f3cbfd37e4de31be1eb5788e483f6db288
+Copyright:
+License:
+#Header:
+#@node tanhl
+#@section @code{tanhl}
+#@findex tanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tanl.texi
+Hash: 506a2a087c69a32413365c5cc59a894210da81f58ffa38d9342524d45ac84243
+Copyright:
+License:
+#Header:
+#@node tanl
+#@section @code{tanl}
+#@findex tanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcdrain.texi
+Hash: db2ff21ff51f9c0ea21890eafa4e14d4cdcae60837f9aad0aac6d5ef96f769f5
+Copyright:
+License:
+#Header:
+#@node tcdrain
+#@section @code{tcdrain}
+#@findex tcdrain
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcdrain.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcflow.texi
+Hash: 2cf29c5dda1ad174414674a2cf89d10e0da61f1bde45d97c7b529e04fcbc41bd
+Copyright:
+License:
+#Header:
+#@node tcflow
+#@section @code{tcflow}
+#@findex tcflow
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcflow.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcflush.texi
+Hash: e8023b50addee8b28e96ff5b5fa800c3d112d7fe5954fd200142697499fe9a31
+Copyright:
+License:
+#Header:
+#@node tcflush
+#@section @code{tcflush}
+#@findex tcflush
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcflush.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcgetattr.texi
+Hash: 4df9e953232c6815dc79daf79e34deec796ff7d1a571df03a7286e75ac5bf9f2
+Copyright:
+License:
+#Header:
+#@node tcgetattr
+#@section @code{tcgetattr}
+#@findex tcgetattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcgetattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcgetpgrp.texi
+Hash: 929a9e3c434cd83961f1091fd879ec9319832d9a1dcc32cee93a0a2e113a1fd2
+Copyright:
+License:
+#Header:
+#@node tcgetpgrp
+#@section @code{tcgetpgrp}
+#@findex tcgetpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcgetpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcgetsid.texi
+Hash: 51246de9b6b65dcd29ae45a202226470a5c414dd3d410f555ddd4843cd7f4300
+Copyright:
+License:
+#Header:
+#@node tcgetsid
+#@section @code{tcgetsid}
+#@findex tcgetsid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcgetsid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcsendbreak.texi
+Hash: 75192304ee0383d9d9794c92e1a21890b0f0b483a5728e8c855fd8465e3e405f
+Copyright:
+License:
+#Header:
+#@node tcsendbreak
+#@section @code{tcsendbreak}
+#@findex tcsendbreak
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcsendbreak.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcsetattr.texi
+Hash: 6cb8777002ba2e5fa4ee6b5b5b24bb8f26d030711132e546d4024dca56f3143c
+Copyright:
+License:
+#Header:
+#@node tcsetattr
+#@section @code{tcsetattr}
+#@findex tcsetattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcsetattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tcsetpgrp.texi
+Hash: 5f5d907f551275116726385beb40b9a93cc627d3ec22cc80438ab198ef99b131
+Copyright:
+License:
+#Header:
+#@node tcsetpgrp
+#@section @code{tcsetpgrp}
+#@findex tcsetpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcsetpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tdelete.texi
+Hash: 743411155abe9d4d6ea3db338cb01d5793ca8941833126cf12c40c7a1a62fba6
+Copyright:
+License:
+#Header:
+#@node tdelete
+#@section @code{tdelete}
+#@findex tdelete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tdelete.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@item
+#@code{tdelete} returns @code{NULL} when removing the last element of a tree
+File: ./doc/posix-functions/telldir.texi
+Hash: 11cc06c4ebed4b75dd250b1e0d7f6c484c5efd024f99cc72605dee3dd4e37289
+Copyright:
+License:
+#Header:
+#@node telldir
+#@section @code{telldir}
+#@findex telldir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/telldir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tempnam.texi
+Hash: 5374a2d9bda620f20d7b0e7ff1338996187c94b68069775c6843bec9cbd83307
+Copyright:
+License:
+#Header:
+#@node tempnam
+#@section @code{tempnam}
+#@findex tempnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tempnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tfind.texi
+Hash: ae8afd2eeb59398111a80bc961cca20e8d133a9bb048511d1f4306337d1c6cb7
+Copyright:
+License:
+#Header:
+#@node tfind
+#@section @code{tfind}
+#@findex tfind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tfind.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/tgamma.texi
+Hash: 5ca38955dab4ce6bfd9f61431c2c951e0a15408d7badaeb3a6f04de57a479c8e
+Copyright:
+License:
+#Header:
+#@node tgamma
+#@section @code{tgamma}
+#@findex tgamma
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tgamma.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tgammaf.texi
+Hash: 99ee30fd4ccc81ec31d37b8c92e5f73f72aa25df0ecc6a890e333694d95aa450
+Copyright:
+License:
+#Header:
+#@node tgammaf
+#@section @code{tgammaf}
+#@findex tgammaf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tgammaf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tgammal.texi
+Hash: a34594b5d992fbd9d2ee3d630e41c30a2933670fc3c919693b58fe75eb281688
+Copyright:
+License:
+#Header:
+#@node tgammal
+#@section @code{tgammal}
+#@findex tgammal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tgammal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/time.texi
+Hash: 16c2fb4377781ee1d83d384004670abaaa5b4340f5a5d3fa90b3a5e75a552f88
+Copyright:
+License:
+#Header:
+#@node time
+#@section @code{time}
+#@findex time
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/time.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/timer_create.texi
+Hash: a78b5d9fddb3b0e38eb12f1ad442e64b16db90732893875b4d6bae5341152518
+Copyright:
+License:
+#Header:
+#@node timer_create
+#@section @code{timer_create}
+#@findex timer_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/timer_delete.texi
+Hash: 2c2e487fad74e481ec0ef80f805bc04993d69f6b50c2f97c3757b2b29573dc61
+Copyright:
+License:
+#Header:
+#@node timer_delete
+#@section @code{timer_delete}
+#@findex timer_delete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_delete.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/timer_getoverrun.texi
+Hash: 23232ec05fbd7834bad0c5dad506c88ebe2c884fd8c303b913f79ba31c76fc6f
+Copyright:
+License:
+#Header:
+#@node timer_getoverrun
+#@section @code{timer_getoverrun}
+#@findex timer_getoverrun
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_getoverrun.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/timer_gettime.texi
+Hash: 7e92301a5ff64562c7cd009453b91b9be29abf75c1ef65daefc14ff865249300
+Copyright:
+License:
+#Header:
+#@node timer_gettime
+#@section @code{timer_gettime}
+#@findex timer_gettime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_gettime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/timer_settime.texi
+Hash: 8bfaf4e88066cc93846df1a23d788fabf61c3be89fdd3195f934c2479e16123c
+Copyright:
+License:
+#Header:
+#@node timer_settime
+#@section @code{timer_settime}
+#@findex timer_settime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_settime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/times.texi
+Hash: 4b480d61e6dcfe3f0b24cb82dc5d20be0bb6d167ec66c561c37255751821f969
+Copyright:
+License:
+#Header:
+#@node times
+#@section @code{times}
+#@findex times
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/times.html}
+#
+#Gnulib module: times
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/timezone.texi
+Hash: b83ab677215817b1528836ef12de7773c8adbdbb48e495ef2c7a1ab5dd616c7b
+Copyright:
+License:
+#Header:
+#@node timezone
+#@section @code{timezone}
+#@findex timezone
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timezone.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tmpfile.texi
+Hash: edbab21902041e8d278c6745d0290e1659e7d0a29f3f0b6583bc7b860136e14a
+Copyright:
+License:
+#Header:
+#@node tmpfile
+#@section @code{tmpfile}
+#@findex tmpfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tmpfile.html}
+#
+#Gnulib module: tmpfile
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function often fails for trivial reasons on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/tmpnam.texi
+Hash: 9f8cf065941f401bc1e26df99d907d69353ab52d98c46fc54127b405a144a3a9
+Copyright:
+License:
+#Header:
+#@node tmpnam
+#@section @code{tmpnam}
+#@findex tmpnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tmpnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/toascii.texi
+Hash: a97da9d9fd148dad24bcad63d57d69efb5d18fb115eab3e85e04f1a5c4d51e4e
+Copyright:
+License:
+#Header:
+#@node toascii
+#@section @code{toascii}
+#@findex toascii
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/toascii.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/tolower.texi
+Hash: 196548b9522eb8b3c56f209a99d1e13daf87f5f7f2dcd8a1b88eaa49180bbce9
+Copyright:
+License:
+#Header:
+#@node tolower
+#@section @code{tolower}
+#@findex tolower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tolower.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tolower_l.texi
+Hash: ea6dc968b7beb65776cd2184cf2b9b1504f25b58bbcb22ba1c8ae30e387cfe08
+Copyright:
+License:
+#Header:
+#@node tolower_l
+#@section @code{tolower_l}
+#@findex tolower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tolower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/toupper.texi
+Hash: e2defa72d3095d58b3ba26fce4a0aa35b98f40a3f1e08be65e7490c9ed2dc142
+Copyright:
+License:
+#Header:
+#@node toupper
+#@section @code{toupper}
+#@findex toupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/toupper.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/toupper_l.texi
+Hash: 20eedfcf323d2479bb4dbbd241cc190f8ff601fe0516815011c12011b4574cbd
+Copyright:
+License:
+#Header:
+#@node toupper_l
+#@section @code{toupper_l}
+#@findex toupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/toupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/towctrans.texi
+Hash: 8a1e03793aab23ee1d7076c4d9319a4f1b361362e121fa37248bd3503d4a4665
+Copyright:
+License:
+#Header:
+#@node towctrans
+#@section @code{towctrans}
+#@findex towctrans
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towctrans.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/towctrans_l.texi
+Hash: ce31c960b403299b70c3a391016c626884a941aa1cbfcce216840436bf7b7b37
+Copyright:
+License:
+#Header:
+#@node towctrans_l
+#@section @code{towctrans_l}
+#@findex towctrans_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towctrans_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/towlower.texi
+Hash: edd5f5eb25dfcebf7dc296ba43b616d3b4002387d649c2abaa1a044b20643a8d
+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.
+#@end itemize
+File: ./doc/posix-functions/towlower_l.texi
+Hash: 0ba70fedd9ed1733360ed322e14367f432080bf314f87bc6e83649fc9f7e2326
+Copyright:
+License:
+#Header:
+#@node towlower_l
+#@section @code{towlower_l}
+#@findex towlower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towlower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/towupper.texi
+Hash: f46446812e0e4d98a8fbf546a8bf40e189b7fab597162b8ada7ec247311c4fe3
+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.
+#@end itemize
+File: ./doc/posix-functions/towupper_l.texi
+Hash: 3a01be213186f9daf15f189b511d432b1929134741e4e08800b2394700cfe591
+Copyright:
+License:
+#Header:
+#@node towupper_l
+#@section @code{towupper_l}
+#@findex towupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/trunc.texi
+Hash: 2c7faf7f86690c2de6fef3d76f0688aad0b11e1eadce8e1ee31e3963ae357601
+Copyright:
+License:
+#Header:
+#@node trunc
+#@section @code{trunc}
+#@findex trunc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/trunc.html}
+#
+#Gnulib module: trunc
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, Solaris 9, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/truncate.texi
+Hash: ad6988f2a3cf922df9d441be49aceaf0213a6ef329c5e192db4736ae321057a7
+Copyright:
+License:
+#Header:
+#@node truncate
+#@section @code{truncate}
+#@findex truncate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/truncate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/truncf.texi
+Hash: de12f43f978664b351f577e9a5daef41a3fc84222f4f5fc9262f8db26b0f3f25
+Copyright:
+License:
+#Header:
+#@node truncf
+#@section @code{truncf}
+#@findex truncf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/truncf.html}
+#
+#Gnulib module: truncf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, Solaris 9, Interix 3.5.
+#@end itemize
+File: ./doc/posix-functions/truncl.texi
+Hash: d6a3a1679bb8e28f9a3a76b46add1afd31d4ca16e9ba4f3f695ae8d4e2393119
+Copyright:
+License:
+#Header:
+#@node truncl
+#@section @code{truncl}
+#@findex truncl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/truncl.html}
+#
+#Gnulib module: truncl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@item
+#This function crashes on some platforms:
+File: ./doc/posix-functions/tsearch.texi
+Hash: f6916106a56867ee562714e2d11a56ee7e62ba2a5b044f890f5950fc751ff1ac
+Copyright:
+License:
+#Header:
+#@node tsearch
+#@section @code{tsearch}
+#@findex tsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tsearch.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/ttyname.texi
+Hash: 3a53e9dbfb459ef95a6ffd1bd907d0bcd515b0307761cacb5721be060046a0e8
+Copyright:
+License:
+#Header:
+#@node ttyname
+#@section @code{ttyname}
+#@findex ttyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ttyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ttyname_r.texi
+Hash: f6cbfb6ecafbe6dfdb5f40882b617419be277fa894414db40639a726aec47b7e
+Copyright:
+License:
+#Header:
+#@node ttyname_r
+#@section @code{ttyname_r}
+#@findex ttyname_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ttyname_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/twalk.texi
+Hash: 90a77428e374001fd58a522352dbfa4286280c931b9524ea5a2723f8899129ef
+Copyright:
+License:
+#Header:
+#@node twalk
+#@section @code{twalk}
+#@findex twalk
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/twalk.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+File: ./doc/posix-functions/tzname.texi
+Hash: 0441a989ad0b47a309a27221970489ae177f7356e8eb7363d67c878656b54452
+Copyright:
+License:
+#Header:
+#@node tzname
+#@section @code{tzname}
+#@findex tzname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tzname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/tzset.texi
+Hash: 7231d68420d2e952b405f8b492d785b0bf45c997a872cf32b108435420f627ba
+Copyright:
+License:
+#Header:
+#@node tzset
+#@section @code{tzset}
+#@findex tzset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tzset.html}
+#
+#Gnulib module: tzset
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function clobbers the buffer used by the localtime function on some
+#platforms:
+#Solaris 2.6.
+#@end itemize
+File: ./doc/posix-functions/ulimit.texi
+Hash: 328ce2059c0079cf2abc56052da27d917f58ab3422f811cf714d9e423fd04c2a
+Copyright:
+License:
+#Header:
+#@node ulimit
+#@section @code{ulimit}
+#@findex ulimit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ulimit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/umask.texi
+Hash: 8a2f402496200e1fc0c0fd2e0bccccf52b3dcaa6eddfbc48ae47d087deeeb0cf
+Copyright:
+License:
+#Header:
+#@node umask
+#@section @code{umask}
+#@findex umask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/umask.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/uname.texi
+Hash: 6755bde328f8c8a2e26f8eab4760f1a7d572c5339449f2882fdad83f7ff92001
+Copyright:
+License:
+#Header:
+#@node uname
+#@section @code{uname}
+#@findex uname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/uname.html}
+#
+#Gnulib module: uname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+File: ./doc/posix-functions/ungetc.texi
+Hash: 1c34639f7f967f2a66214ca4d0cecc7ff95302248f83b9a70f7e3c06e141669d
+Copyright:
+License:
+#Header:
+#@node ungetc
+#@section @code{ungetc}
+#@findex ungetc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ungetc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/ungetwc.texi
+Hash: 0d06c6a96b420d7b9dccd98aabbd9baac8521acd967cae84e6022cdb8a31c2e2
+Copyright:
+License:
+#Header:
+#@node ungetwc
+#@section @code{ungetwc}
+#@findex ungetwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ungetwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/unlink.texi
+Hash: 1958802de215f64594d391a7f9879329562d8ee7e6321902fc20d289e90a113a
+Copyright:
+License:
+#Header:
+#@node unlink
+#@section @code{unlink}
+#@findex unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/unlinkat.texi
+Hash: 098fa59dd086b58401a4710af7fb3c3171a08c95cf2395f5307f02161cd88f5e
+Copyright:
+License:
+#Header:
+#@node unlinkat
+#@section @code{unlinkat}
+#@findex unlinkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unlinkat.html}
+#
+#Gnulib module: openat
+#
+#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, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+File: ./doc/posix-functions/unlockpt.texi
+Hash: e50e8903ad77ab19f79c13a319ed068480f63ddd947f8dc15a13e534280ff990
+Copyright:
+License:
+#Header:
+#@node unlockpt
+#@section @code{unlockpt}
+#@findex unlockpt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unlockpt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/unsetenv.texi
+Hash: 1541d212606cd33eb1679bcda974df45e99a82dfd665f7d33aac243662a838d7
+Copyright:
+License:
+#Header:
+#@node unsetenv
+#@section @code{unsetenv}
+#@findex unsetenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unsetenv.html}
+#
+#Gnulib module: setenv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 9, mingw, BeOS.
+#@item
+#This function has the return type @samp{void} instead of @samp{int} on some
+File: ./doc/posix-functions/uselocale.texi
+Hash: a1209e949b8c92d82a51dae8e2148b275f81c13b3dd348f543a0b62d47e94db2
+Copyright:
+License:
+#Header:
+#@node uselocale
+#@section @code{uselocale}
+#@findex uselocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/uselocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/utime.texi
+Hash: a24aa88412826d7b02bfe1f02fb6795c7b9a8a59b60ff0a975ec583740290792
+Copyright:
+License:
+#Header:
+#@node utime
+#@section @code{utime}
+#@findex utime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/utime.html}
+#
+#Gnulib module: utime
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On some old platforms (Sequent), @code{utime (file, NULL)} fails to set the
+#file's timestamp to the current time.
+#@end itemize
+File: ./doc/posix-functions/utimensat.texi
+Hash: 173c9ec29703395497e840d32a3fa8155bc291e23d2efa0a7a54e4b42d86a219
+Copyright:
+License:
+#Header:
+#@node utimensat
+#@section @code{utimensat}
+#@findex utimensat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/utimensat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/utimes.texi
+Hash: 8d51beec714b4e3c4ad595e9be1b118696c5a12977fa12a42a629ad03f4669b1
+Copyright:
+License:
+#Header:
+#@node utimes
+#@section @code{utimes}
+#@findex utimes
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/utimes.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/va_arg.texi
+Hash: 2da6d5e606404f38325aec110f29032d73d826516de59cd65a1b0cc3e5ef1e9b
+Copyright:
+License:
+#Header:
+#@node va_arg
+#@section @code{va_arg}
+#@findex va_arg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_arg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/va_copy.texi
+Hash: 89c374aa138c4359ac2b7e0059a6884cc316ed6c9742a1889fcc910d71cfba01
+Copyright:
+License:
+#Header:
+#@node va_copy
+#@section @code{va_copy}
+#@findex va_copy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_copy.html}
+#
+#Gnulib module: stdarg
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This macro is missing on some platforms:
+#AIX 5.1 with cc or xlc, HP-UX 11 with cc, IRIX 6.5 with cc, OSF/1 5.1 with cc.
+#@end itemize
+File: ./doc/posix-functions/va_end.texi
+Hash: 71e8d133b425de3bb999821a3f0e5b9939a9b340de8f85f096f86886c9d05d1b
+Copyright:
+License:
+#Header:
+#@node va_end
+#@section @code{va_end}
+#@findex va_end
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_end.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/va_start.texi
+Hash: 13ed783939fb33555b552e86b00411ec0032076a9d909a99b9812c75e0080654
+Copyright:
+License:
+#Header:
+#@node va_start
+#@section @code{va_start}
+#@findex va_start
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_start.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/vdprintf.texi
+Hash: 855f46947553e9d6e745ed76dd9fc96252202d5a7670d1f7edb31f897d59c866
+Copyright:
+License:
+#Header:
+#@node vdprintf
+#@section @code{vdprintf}
+#@findex vdprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vdprintf.html}
+#
+#Gnulib module: vdprintf or vdprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{vdprintf} or @code{vdprintf-posix}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#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.
+#@end itemize
+File: ./doc/posix-functions/vfprintf.texi
+Hash: ea7d201cdc68907be08bab243835a24441895b202d77e63b48559ddc9086c069
+Copyright:
+License:
+#Header:
+#@node vfprintf
+#@section @code{vfprintf}
+#@findex vfprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfprintf.html}
+#
+#Gnulib module: vfprintf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{vfprintf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+File: ./doc/posix-functions/vfscanf.texi
+Hash: f0b4648d4126271ca14486c4fece1894aca7086f8db26508927cd4d246a2f77f
+Copyright:
+License:
+#Header:
+#@node vfscanf
+#@section @code{vfscanf}
+#@findex vfscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vfwprintf.texi
+Hash: 200c520c974f536a06bfb5ce702add69f502c35b3b57c25eac925fcde5db8f86
+Copyright:
+License:
+#Header:
+#@node vfwprintf
+#@section @code{vfwprintf}
+#@findex vfwprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfwprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vfwscanf.texi
+Hash: 1468115a6058c2641c7ae1ca0a62944642b5841ba17513ad35c6c43fde79142e
+Copyright:
+License:
+#Header:
+#@node vfwscanf
+#@section @code{vfwscanf}
+#@findex vfwscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfwscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vprintf.texi
+Hash: ee2fa0a176a8b7c847e9ec8b4a3bc56c77937cb49dc176fa078e41637967586d
+Copyright:
+License:
+#Header:
+#@node vprintf
+#@section @code{vprintf}
+#@findex vprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vprintf.html}
+#
+#Gnulib module: vprintf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{vprintf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+File: ./doc/posix-functions/vscanf.texi
+Hash: eca0bed937adee2b64abc9215eb27744f667f0d4eda4a232a7dad80995a36c1c
+Copyright:
+License:
+#Header:
+#@node vscanf
+#@section @code{vscanf}
+#@findex vscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vsnprintf.texi
+Hash: 3e468e6f97b3571aee0963c7fc2871601b0e518e07a1df85fb873f8c25d6bcc2
+Copyright:
+License:
+#Header:
+#@node vsnprintf
+#@section @code{vsnprintf}
+#@findex vsnprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsnprintf.html}
+#
+#Gnulib module: vsnprintf or vsnprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{vsnprintf} or @code{vsnprintf-posix}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1.
+#@item
+#This function overwrites memory even when a size argument of 1 is passed on some
+File: ./doc/posix-functions/vsprintf.texi
+Hash: 8a9b9edf7d98f987517cb3b7650a739a7d959ba37dfc9ead9527dc4f9257c2a0
+Copyright:
+License:
+#Header:
+#@node vsprintf
+#@section @code{vsprintf}
+#@findex vsprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsprintf.html}
+#
+#Gnulib module: vsprintf-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+File: ./doc/posix-functions/vsscanf.texi
+Hash: a962e8a48ae62bf84f0ca9e7a5c3f1a5e9f96e855b3f79cff91032624d693a88
+Copyright:
+License:
+#Header:
+#@node vsscanf
+#@section @code{vsscanf}
+#@findex vsscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vswprintf.texi
+Hash: 705139250cb9f7e443a4dc17c4728cd63e8fd6e2c9414bca636536cda23fd758
+Copyright:
+License:
+#Header:
+#@node vswprintf
+#@section @code{vswprintf}
+#@findex vswprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vswprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vswscanf.texi
+Hash: e7a04f078ac79b1890e517f87e8d4694a6e45679b0fb48f236580d197a4e46ca
+Copyright:
+License:
+#Header:
+#@node vswscanf
+#@section @code{vswscanf}
+#@findex vswscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vswscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vwprintf.texi
+Hash: b72b770973a6ef5051e9ff66aa22bcbc8b58a2c6431543512147c1f22ff9c9a6
+Copyright:
+License:
+#Header:
+#@node vwprintf
+#@section @code{vwprintf}
+#@findex vwprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vwprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/vwscanf.texi
+Hash: 923b5d92b22daf9ad2ccba87d91bfa15e157309420f4db651b8629ca43207c6d
+Copyright:
+License:
+#Header:
+#@node vwscanf
+#@section @code{vwscanf}
+#@findex vwscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vwscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wait.texi
+Hash: 7b072a3b82336d00ed25a885cbda48782e1b863c4c027836b77ce61763f3bcc5
+Copyright:
+License:
+#Header:
+#@node wait
+#@section @code{wait}
+#@findex wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/waitid.texi
+Hash: f1062ba46c44cfd335b13fa64595732f330100537d8e9339af1abdd7571845d7
+Copyright:
+License:
+#Header:
+#@node waitid
+#@section @code{waitid}
+#@findex waitid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/waitid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/waitpid.texi
+Hash: 5676832d45eb43ebf1c1aea887bc4c019db4810fbbb16cce5cdc283748655ac9
+Copyright:
+License:
+#Header:
+#@node waitpid
+#@section @code{waitpid}
+#@findex waitpid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/waitpid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcpcpy.texi
+Hash: adbf37b23fbedfbd3bef3f5c4c0088880a853cfbad97f9a7c943fef6cb366636
+Copyright:
+License:
+#Header:
+#@node wcpcpy
+#@section @code{wcpcpy}
+#@findex wcpcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcpcpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcpncpy.texi
+Hash: 89c94c9fc1d0bd17f9cdd12a4dc7fc1d510297fd642acbb2ea6f35e3e97c1572
+Copyright:
+License:
+#Header:
+#@node wcpncpy
+#@section @code{wcpncpy}
+#@findex wcpncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcpncpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcrtomb.texi
+Hash: 20040edab7d3f5b765282992f971d3c8adc2532ca47ffba40dbb3791f4a66dc0
+Copyright:
+License:
+#Header:
+#@node wcrtomb
+#@section @code{wcrtomb}
+#@findex wcrtomb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcrtomb.html}
+#
+#Gnulib module: wcrtomb
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function returns 0 when the first argument is NULL in some locales on some platforms:
+File: ./doc/posix-functions/wcscasecmp.texi
+Hash: 66134fa29f6569f7caaa554bd0513520f1e5319669215d2b3edb1b5732391db9
+Copyright:
+License:
+#Header:
+#@node wcscasecmp
+#@section @code{wcscasecmp}
+#@findex wcscasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcscasecmp_l.texi
+Hash: 92ad8bd9e265fce46bc834d14274050bb01214d2391ccdc3caf5d1961f54f444
+Copyright:
+License:
+#Header:
+#@node wcscasecmp_l
+#@section @code{wcscasecmp_l}
+#@findex wcscasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcscat.texi
+Hash: fdccf8e9cbeccb400ec7d5a4539b3af4454602490af20dea7751c2dab2555a34
+Copyright:
+License:
+#Header:
+#@node wcscat
+#@section @code{wcscat}
+#@findex wcscat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcschr.texi
+Hash: 23b351cedf83b8a8765000a2d21512ec922f12e2240a530bc21f41813933e27b
+Copyright:
+License:
+#Header:
+#@node wcschr
+#@section @code{wcschr}
+#@findex wcschr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcschr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcscmp.texi
+Hash: 71ddccea8ca18d3fd9f2ae85027f8b97cf654fa0316334a151d284aeb63f2666
+Copyright:
+License:
+#Header:
+#@node wcscmp
+#@section @code{wcscmp}
+#@findex wcscmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcscoll.texi
+Hash: aad7c92bbfe1458195cba400ceeedc2f972b53cc82943bb8d33389ebac5806cb
+Copyright:
+License:
+#Header:
+#@node wcscoll
+#@section @code{wcscoll}
+#@findex wcscoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscoll.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcscoll_l.texi
+Hash: 5586b954da59befd5f0ebe05d67197dae1dba49e676f9ce27dd5fbc99ca1ad34
+Copyright:
+License:
+#Header:
+#@node wcscoll_l
+#@section @code{wcscoll_l}
+#@findex wcscoll_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscoll_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcscpy.texi
+Hash: 8304e8f34e5dfb5355ee75b71b3d43120a60e068eb1ec43897ceb9a0256740a7
+Copyright:
+License:
+#Header:
+#@node wcscpy
+#@section @code{wcscpy}
+#@findex wcscpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcscspn.texi
+Hash: 5ffbf9e0f0e2c1fc7d927eb8fd22d924e8d80327a3f0eb7fc61b3ab2d49b0cb7
+Copyright:
+License:
+#Header:
+#@node wcscspn
+#@section @code{wcscspn}
+#@findex wcscspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscspn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsdup.texi
+Hash: 1e78bf9c90542816d00bba60747a68e20620b86c752a95623727f40ab7a51668
+Copyright:
+License:
+#Header:
+#@node wcsdup
+#@section @code{wcsdup}
+#@findex wcsdup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsdup.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsftime.texi
+Hash: 0fd19a9a4993f2b17716c4eac56ccb29a09cdb415a4a84ca0923b41c94d020fc
+Copyright:
+License:
+#Header:
+#@node wcsftime
+#@section @code{wcsftime}
+#@findex wcsftime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcslen.texi
+Hash: e16a5c07a3374522e6426a1cc7e2905cb38bd08c629f2bc0d8edcda65b931dc2
+Copyright:
+License:
+#Header:
+#@node wcslen
+#@section @code{wcslen}
+#@findex wcslen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcslen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsncasecmp.texi
+Hash: 5e9069b6210dd425da54820a9ac0d1e48fc54777a9053a5fbdf09a0ae91c47b9
+Copyright:
+License:
+#Header:
+#@node wcsncasecmp
+#@section @code{wcsncasecmp}
+#@findex wcsncasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsncasecmp_l.texi
+Hash: 623af56af0d98ff81b22a7026dc47dfb9c7c956abcfcf65b79de181098eb5cd9
+Copyright:
+License:
+#Header:
+#@node wcsncasecmp_l
+#@section @code{wcsncasecmp_l}
+#@findex wcsncasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsncat.texi
+Hash: 025d8c6060e4cf49fbb4d9773fea8a45f0cb32c6ac60d7cd5cf5c593de8a3098
+Copyright:
+License:
+#Header:
+#@node wcsncat
+#@section @code{wcsncat}
+#@findex wcsncat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsncmp.texi
+Hash: b2a701a27ef1cd29151fdd7695d90734d9c3263f9c90979e8139694b42f3cca0
+Copyright:
+License:
+#Header:
+#@node wcsncmp
+#@section @code{wcsncmp}
+#@findex wcsncmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsncpy.texi
+Hash: 680c88556c2891e79ba30e5426925cdf6237497b1db6cd6928f9db38175a4a73
+Copyright:
+License:
+#Header:
+#@node wcsncpy
+#@section @code{wcsncpy}
+#@findex wcsncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsnlen.texi
+Hash: c88fc97c86b35cbaaafc72677673750e51c18d4839a2282280f51f3a7c94f29f
+Copyright:
+License:
+#Header:
+#@node wcsnlen
+#@section @code{wcsnlen}
+#@findex wcsnlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsnlen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsnrtombs.texi
+Hash: 38e32313de6075fb014a419f95846e08fe3b6ef0232e974dda96524b9a58ce95
+Copyright:
+License:
+#Header:
+#@node wcsnrtombs
+#@section @code{wcsnrtombs}
+#@findex wcsnrtombs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsnrtombs.html}
+#
+#Gnulib module: wcsnrtombs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX
+#11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-functions/wcspbrk.texi
+Hash: b7e3aae920e207a4ffa9c2d58154db777dab5c03956c90676b7f830dd32b1b9c
+Copyright:
+License:
+#Header:
+#@node wcspbrk
+#@section @code{wcspbrk}
+#@findex wcspbrk
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcspbrk.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsrchr.texi
+Hash: 4827a5725f798d8548c1dc931b4c9ba1cdf0c28742d7023b2fd5648db4f166af
+Copyright:
+License:
+#Header:
+#@node wcsrchr
+#@section @code{wcsrchr}
+#@findex wcsrchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsrchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsrtombs.texi
+Hash: 20549abaf5995e8fc9e206506df36fa821bd6111c06f81f5643fbb9556b833e2
+Copyright:
+License:
+#Header:
+#@node wcsrtombs
+#@section @code{wcsrtombs}
+#@findex wcsrtombs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsrtombs.html}
+#
+#Gnulib module: wcsrtombs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function may set the source pointer to NULL before NUL terminating the destination string on some platforms:
+File: ./doc/posix-functions/wcsspn.texi
+Hash: 9830a44067be9bad8959677dbe641b591b2b3af00a0615925af0d6d559879a34
+Copyright:
+License:
+#Header:
+#@node wcsspn
+#@section @code{wcsspn}
+#@findex wcsspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsspn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsstr.texi
+Hash: d40e47110c8a0582ea5f8a83b11a33c806f3aa455de094b23a17e91b3363ebf0
+Copyright:
+License:
+#Header:
+#@node wcsstr
+#@section @code{wcsstr}
+#@findex wcsstr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsstr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstod.texi
+Hash: 842e8b42f92fd1208caa5feafd8ba211e1f8f809df69858f908c70071e535a8f
+Copyright:
+License:
+#Header:
+#@node wcstod
+#@section @code{wcstod}
+#@findex wcstod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstof.texi
+Hash: 26784e4f1151882911d064b9fb4dd362386ae570fcba9ad669e3db39b5b8f189
+Copyright:
+License:
+#Header:
+#@node wcstof
+#@section @code{wcstof}
+#@findex wcstof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstoimax.texi
+Hash: 6eea93e73c4f3194727b65b2224f65b4f2877fa01a29c2944b8199698cdfea74
+Copyright:
+License:
+#Header:
+#@node wcstoimax
+#@section @code{wcstoimax}
+#@findex wcstoimax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoimax.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstok.texi
+Hash: 557d0180fe43d4074b887b380e8dfe206bb8618788157779751fd3c3771a371e
+Copyright:
+License:
+#Header:
+#@node wcstok
+#@section @code{wcstok}
+#@findex wcstok
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstok.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstol.texi
+Hash: c5b9451a8dbe0bc8c7a11b2ca01b2900c65ca297d593f90d7c575237b9da6093
+Copyright:
+License:
+#Header:
+#@node wcstol
+#@section @code{wcstol}
+#@findex wcstol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstold.texi
+Hash: 2c506830e10b71cbd323b5fbe08af43575e2d3f4551b080a61a87b6db385f690
+Copyright:
+License:
+#Header:
+#@node wcstold
+#@section @code{wcstold}
+#@findex wcstold
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstold.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstoll.texi
+Hash: a7464fcc6fe1de31cdd9f9ce1603fcc1f573603ea086e0eba7d70e59d86a77e0
+Copyright:
+License:
+#Header:
+#@node wcstoll
+#@section @code{wcstoll}
+#@findex wcstoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoll.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstombs.texi
+Hash: 60461f3cad84dd817af8c419fd7b6bbd16d55c9f50e1e9d5736ed893fa558782
+Copyright:
+License:
+#Header:
+#@node wcstombs
+#@section @code{wcstombs}
+#@findex wcstombs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstombs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstoul.texi
+Hash: ea33073e6a7d43480d7024db4c22205b35d28c07f51b5b7bd7ae008c264ea608
+Copyright:
+License:
+#Header:
+#@node wcstoul
+#@section @code{wcstoul}
+#@findex wcstoul
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoul.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstoull.texi
+Hash: 9cb3f44e0ecec8fcea7543b5267aa6e0c308d6cfad5d40e00fbb9e2bde0282cd
+Copyright:
+License:
+#Header:
+#@node wcstoull
+#@section @code{wcstoull}
+#@findex wcstoull
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoull.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcstoumax.texi
+Hash: b565c0f20f9d2fb4e4cfb2fd9d0287cf65ea32a8914754d89b1b1084952f6dd1
+Copyright:
+License:
+#Header:
+#@node wcstoumax
+#@section @code{wcstoumax}
+#@findex wcstoumax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoumax.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcswidth.texi
+Hash: 896decdcde4828a47aa820a0fcb87b34d2c259ff5f12bfbbd366dc21f062ca2d
+Copyright:
+License:
+#Header:
+#@node wcswidth
+#@section @code{wcswidth}
+#@findex wcswidth
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcswidth.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsxfrm.texi
+Hash: a225016ded36398af868e7a7eec2100ec87aa24295fe1b89569cef92ece2b497
+Copyright:
+License:
+#Header:
+#@node wcsxfrm
+#@section @code{wcsxfrm}
+#@findex wcsxfrm
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcsxfrm_l.texi
+Hash: 79db8278300b2e6d0cd705e56a80b189b6cd6fefd07141570ad020c6b58ade06
+Copyright:
+License:
+#Header:
+#@node wcsxfrm_l
+#@section @code{wcsxfrm_l}
+#@findex wcsxfrm_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wctob.texi
+Hash: a328a016c849d39aecc034af1289545c879261dd4d1c0397c13bc897fc1ba248
+Copyright:
+License:
+#Header:
+#@node wctob
+#@section @code{wctob}
+#@findex wctob
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctob.html}
+#
+#Gnulib module: wctob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 5.3, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not work on some platforms:
+File: ./doc/posix-functions/wctomb.texi
+Hash: 271fa327aba8172c6ff974324015b11eb97e362d59a82b5f708cf40f31a0ad77
+Copyright:
+License:
+#Header:
+#@node wctomb
+#@section @code{wctomb}
+#@findex wctomb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctomb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wctrans.texi
+Hash: 777b5cc1977d214324ba2a17afb9e29ac1f236adb3d8d8d17105305d0b8d7428
+Copyright:
+License:
+#Header:
+#@node wctrans
+#@section @code{wctrans}
+#@findex wctrans
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctrans.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wctrans_l.texi
+Hash: 542a8806218cda3159f88863801a4c1411528a8d93987683fcdbf4feccc4f334
+Copyright:
+License:
+#Header:
+#@node wctrans_l
+#@section @code{wctrans_l}
+#@findex wctrans_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctrans_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wctype.texi
+Hash: 2774f59844136310c38578106f1ae858d399cea66f4120c2d61347d88187bea9
+Copyright:
+License:
+#Header:
+#@node wctype
+#@section @code{wctype}
+#@findex wctype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wctype_l.texi
+Hash: 33c31ade64fdf052f408f9cf8d3fe1537a19181f94ba7c7664bb3e3950f3258b
+Copyright:
+License:
+#Header:
+#@node wctype_l
+#@section @code{wctype_l}
+#@findex wctype_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctype_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wcwidth.texi
+Hash: d006f3954b9dbe5f0f62725919a8f69247ee7b5d59027c6100ccdaa54b067c28
+Copyright:
+License:
+#Header:
+#@node wcwidth
+#@section @code{wcwidth}
+#@findex wcwidth
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcwidth.html}
+#
+#Gnulib module: wcwidth
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1, mingw, BeOS.
+#@item
+#This function handles combining characters in UTF-8 locales incorrectly on some
+File: ./doc/posix-functions/wmemchr.texi
+Hash: 0e16deaafb7a56b294ef7beac0845e67c88466e988628403b6ae76191929896f
+Copyright:
+License:
+#Header:
+#@node wmemchr
+#@section @code{wmemchr}
+#@findex wmemchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wmemcmp.texi
+Hash: 7ef06384b1bd437f31fc61be3c8ca6f2cd44db4665392435161774ecebfe8cc2
+Copyright:
+License:
+#Header:
+#@node wmemcmp
+#@section @code{wmemcmp}
+#@findex wmemcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemcmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wmemcpy.texi
+Hash: 371919a935508d67b755bcafdd62402723141e2fc181b84d0af55c3283d70566
+Copyright:
+License:
+#Header:
+#@node wmemcpy
+#@section @code{wmemcpy}
+#@findex wmemcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemcpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wmemmove.texi
+Hash: c60c122626faea9445a6d85c423bd3943f18d9290dd31f23fb364dcb4a152a37
+Copyright:
+License:
+#Header:
+#@node wmemmove
+#@section @code{wmemmove}
+#@findex wmemmove
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemmove.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wmemset.texi
+Hash: 5926f9711c9be1d1a12776c1d5450ba89a635c7e8b333ba5ad91b9f3bc8cd935
+Copyright:
+License:
+#Header:
+#@node wmemset
+#@section @code{wmemset}
+#@findex wmemset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemset.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wordexp.texi
+Hash: d8cf559a0d704061199c24c113cba50f0548d1daaff98b347fae58eeb7c4ad93
+Copyright:
+License:
+#Header:
+#@node wordexp
+#@section @code{wordexp}
+#@findex wordexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wordexp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wordfree.texi
+Hash: f880186c7147a2fa91a929968c6a8d244d03f025699248b285ee838869ae12c4
+Copyright:
+License:
+#Header:
+#@node wordfree
+#@section @code{wordfree}
+#@findex wordfree
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wordfree.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wprintf.texi
+Hash: ee3d50061cb4af26c4e9465ec1754b86d3e04370f066ba326a62dd3010bd2d98
+Copyright:
+License:
+#Header:
+#@node wprintf
+#@section @code{wprintf}
+#@findex wprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/write.texi
+Hash: fd88455aac642a64b0861cd64659fe85a1ebd5e22959b03c07e1f66d655d2924
+Copyright:
+License:
+#Header:
+#@node write
+#@section @code{write}
+#@findex write
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/write.html}
+#
+#Gnulib module: write, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails with error
+#@code{EINVAL}, instead of obeying the current @code{SIGPIPE} handler, on
+#some platforms:
+#mingw.
+File: ./doc/posix-functions/writev.texi
+Hash: f1a345feaf1b45dfce39b4541f67387416d39596695dfbe3591fb464ea2a7730
+Copyright:
+License:
+#Header:
+#@node writev
+#@section @code{writev}
+#@findex writev
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/writev.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/wscanf.texi
+Hash: ae71fd02dddd945d442c5db2676638828bfa5cbbab67e09eb6db357b58bd121f
+Copyright:
+License:
+#Header:
+#@node wscanf
+#@section @code{wscanf}
+#@findex wscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+File: ./doc/posix-functions/y0.texi
+Hash: 101d5a5de97702c6a595b520995e10c8a5d87321309e9754faf260dc9b0dfe76
+Copyright:
+License:
+#Header:
+#@node y0
+#@section @code{y0}
+#@findex y0
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/y0.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/y1.texi
+Hash: de9c81ff2036effeba44607d218f61f4d1de6705ea1d44518df8f9a059045317
+Copyright:
+License:
+#Header:
+#@node y1
+#@section @code{y1}
+#@findex y1
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/y1.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-functions/yn.texi
+Hash: ae6fd587065d1cfd4705b711d50b84951ad55d885acebe2da13ec077928f4c38
+Copyright:
+License:
+#Header:
+#@node yn
+#@section @code{yn}
+#@findex yn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/yn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-headers/aio.texi
+Hash: b5feffffede6b90b47f211b2664652c4c6c256ce00066d8a019328535a217723
+Copyright:
+License:
+#Header:
+#@node aio.h
+#@section @file{aio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/aio.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/arpa_inet.texi
+Hash: ff625ebdd28615e9101d9db60bb98cc044314373a15ccd3f277781dcd9e47d6b
+Copyright:
+License:
+#Header:
+#@node arpa/inet.h
+#@section @file{arpa/inet.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/arpa/inet.h.html}
+#
+#Gnulib module: arpa_inet
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms: mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+File: ./doc/posix-headers/assert.texi
+Hash: f5dd70d9b33819f71ef223c8e8178c1f74c0844199442db3f1dc94fca17fd0c7
+Copyright:
+License:
+#Header:
+#@node assert.h
+#@section @file{assert.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/assert.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-headers/complex.texi
+Hash: 52bf5734bb5d06958672f56209d843d575a9159d0a403da67ea90323dc6e7a80
+Copyright:
+License:
+#Header:
+#@node complex.h
+#@section @file{complex.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/complex.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/cpio.texi
+Hash: 4f3f64a0fee70498e119df8ea2b685d226a566fea46235d4f7ed474d78762abb
+Copyright:
+License:
+#Header:
+#@node cpio.h
+#@section @file{cpio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/cpio.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/ctype.texi
+Hash: 2261b16ead35a385ba1290e174b81a5cdb6f21a6c43ca0d746830f02b6e75c8a
+Copyright:
+License:
+#Header:
+#@node ctype.h
+#@section @file{ctype.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ctype.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-headers/dirent.texi
+Hash: ae0c082fd86691f88441a0e699f09ecd8d56497a9d00c095f604702f69dd38b1
+Copyright:
+License:
+#Header:
+#@node dirent.h
+#@section @file{dirent.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/dirent.h.html}
+#
+#Gnulib module: dirent
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-headers/dlfcn.texi
+Hash: 7773db810790b9370b355e02d7fe355e0ff29986c349754aeae818578a77ca53
+Copyright:
+License:
+#Header:
+#@node dlfcn.h
+#@section @file{dlfcn.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/dlfcn.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/errno.texi
+Hash: e845a33891fb534504b0b538e7d614b4ba914cd3172289569843740bd7875ef8
+Copyright:
+License:
+#Header:
+#@node errno.h
+#@section @file{errno.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/errno.h.html}
+#
+#Gnulib module: errno
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The macros @code{EOVERFLOW}, @code{ENOLINK}, @code{EMULTIHOP} are not defined
+#on some platforms:
+#OpenBSD 4.0, OSF/1 5.1, mingw.
+#@item
+#The macro @code{ECANCELED} is not defined on some platforms:
+File: ./doc/posix-headers/fcntl.texi
+Hash: 9e1afcf5976af7bcc27cfa70afb8b20678e579392a2da17a15d5438d320af442
+Copyright:
+License:
+#Header:
+#@node fcntl.h
+#@section @file{fcntl.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fcntl.h.html}
+#
+#Gnulib module: fcntl-h
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@samp{O_NOCTTY}, @samp{O_DSYNC}, @samp{O_NONBLOCK}, @samp{O_RSYNC},
+#@samp{O_SYNC}, @samp{O_DIRECTORY}, @samp{O_NOFOLLOW}, and
+#@samp{O_TTY_INIT} are not defined on some platforms.
+#
+#@item
+File: ./doc/posix-headers/fenv.texi
+Hash: b84959cdb9de245d1918278e4308945ba58a8b530782338c4051c473614d81ef
+Copyright:
+License:
+#Header:
+#@node fenv.h
+#@section @file{fenv.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fenv.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/float.texi
+Hash: bb06dd01d519ce57e4003bee2a6144e940f92705ccb07ddc48bac06e65e10d46
+Copyright:
+License:
+#Header:
+#@node float.h
+#@section @file{float.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/float.h.html}
+#
+#Gnulib module: float
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The values of @code{LDBL_*} macros are incorrect on some platforms:
+#On OpenBSD 4.0 and BeOS, they are the same as the values of the
+#@code{DBL_*} macros, although @samp{long double} is a larger type than
+#@samp{double}.
+#@end itemize
+File: ./doc/posix-headers/fmtmsg.texi
+Hash: c8d59077dd6ed5e479e80e667a322a69acdbe1d2c1bfa3477d800bc8f0dd83de
+Copyright:
+License:
+#Header:
+#@node fmtmsg.h
+#@section @file{fmtmsg.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fmtmsg.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/fnmatch.texi
+Hash: 8327e6d21c05ab578dc51d533e5fc009683e8ed5a66573d6e0c02c7daf46d516
+Copyright:
+License:
+#Header:
+#@node fnmatch.h
+#@section @file{fnmatch.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fnmatch.h.html}
+#
+#Gnulib module: fnmatch-posix or fnmatch-gnu
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/ftw.texi
+Hash: b57fdf7c8aed07040361be0defb098f165954dbb516d650fe90cf30f503b9a25
+Copyright:
+License:
+#Header:
+#@node ftw.h
+#@section @file{ftw.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ftw.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/glob.texi
+Hash: 93a0a84bb15d874aa8d300eff27f3b095d0865ce4ddbfb6da8df24b0fd884e82
+Copyright:
+License:
+#Header:
+#@node glob.h
+#@section @file{glob.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/glob.h.html}
+#
+#Gnulib module: glob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/google-ranking.txt
+Hash: 36d854034f1dcae0198af5e680acf7f643d6d4b9147571c430f0c755d007f46f
+Copyright:
+License:
+#Header:
+#<stdio.h>        678000
+#<string.h>       589000
+#<stdlib.h>       548000
+#<unistd.h>       448000
+#<sys/types.h>    319000
+#<netdb.h>           700
+#<sys/wait.h>        600
+#<sys/timeb.h>       600
+#<sys/resource.h>    600
+#<stdarg.h>          600
+#<signal.h>          600
+#<regex.h>           600
+#<netinet/in.h>      600
+#<limits.h>          600
+#<libgen.h>          600
+File: ./doc/posix-headers/grp.texi
+Hash: e6a25df21268de19163d73313b9939f6da2173ed7200c4bbaf09ae3dc0c6b235
+Copyright:
+License:
+#Header:
+#@node grp.h
+#@section @file{grp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/grp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/iconv.texi
+Hash: c55452ea875d46c50e54baea90b4886d24d2dd6a082a16ea14aa6d54f0e95f0f
+Copyright:
+License:
+#Header:
+#@node iconv.h
+#@section @file{iconv.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/iconv.h.html}
+#
+#Gnulib module: iconv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The <iconv.h> from GNU libiconv is not found if installed in
+#@file{$PREFIX/include}.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/inttypes.texi
+Hash: 4da04e950bd05c7c376371e68dd6cf709ebb220a80eaa28707cf8893d276f780
+Copyright:
+License:
+#Header:
+#@node inttypes.h
+#@section @file{inttypes.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/inttypes.h.html}
+#
+#Gnulib module: inttypes
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#OSF/1 4.0, Interix 3.5.
+#@item
+#This header file is very incomplete on some platforms.
+#@item
+File: ./doc/posix-headers/iso646.texi
+Hash: 9e67ac3c5beac4ffd5e496de5a3637d5ee7e8200a5a79afbf069e97151e1af29
+Copyright:
+License:
+#Header:
+#@node iso646.h
+#@section @file{iso646.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/iso646.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/langinfo.texi
+Hash: 779a37fb6afdfe4894daba2a8d910718aec86f46348d6dec2614db4cd0ca7476
+Copyright:
+License:
+#Header:
+#@node langinfo.h
+#@section @file{langinfo.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/langinfo.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/libgen.texi
+Hash: 85d49c38bf9a2370252f10d007ff8458b6f69b38de05edfb0e12dc7d45de2487
+Copyright:
+License:
+#Header:
+#@node libgen.h
+#@section @file{libgen.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/libgen.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/limits.texi
+Hash: e634ce8670c851c54ad83b550cdb854c9d08bcbc9777c01c61e521974df770e8
+Copyright:
+License:
+#Header:
+#@node limits.h
+#@section @file{limits.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/limits.h.html}
+#
+#Gnulib module: gethostname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#The @code{HOST_NAME_MAX} macro is not defined on some platforms:
+#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.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/locale.texi
+Hash: baee6e53c2544b87f7bfcabea0e3afc907ae0354856fc3ccda8776ec61ce2580
+Copyright:
+License:
+#Header:
+#@node locale.h
+#@section @file{locale.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/locale.h.html}
+#
+#Gnulib module: locale
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The definition of @samp{LC_MESSAGES} is missing on some platforms:
+#mingw.
+#
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+File: ./doc/posix-headers/math.texi
+Hash: 3ea2c31002adb9a489426663a739c78120fbc5bf8c853b45679fe7d336a12977
+Copyright:
+License:
+#Header:
+#@node math.h
+#@section @file{math.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/math.h.html}
+#
+#Gnulib module: math
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The macro @code{NAN} is not defined on some platforms:
+#OpenBSD 4.0, AIX 5.1, IRIX 6.5, OSF/1 5.1.
+#
+#@item
+#The macro @code{NAN} is not exposed outside of C99 compilation on some
+File: ./doc/posix-headers/monetary.texi
+Hash: a34c02edb7baef72752df520a8004292a877a4149eea0e6714305c5d497ea42a
+Copyright:
+License:
+#Header:
+#@node monetary.h
+#@section @file{monetary.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/monetary.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/mqueue.texi
+Hash: 9e26ec683c374aedfac424770de10bffb88d1fc1e35343906dd4971c3745b380
+Copyright:
+License:
+#Header:
+#@node mqueue.h
+#@section @file{mqueue.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/mqueue.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/ndbm.texi
+Hash: 7c094880e953813e313ccc986d896808eec19926093dde5b77d0543593225871
+Copyright:
+License:
+#Header:
+#@node ndbm.h
+#@section @file{ndbm.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ndbm.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/net_if.texi
+Hash: 9d3f40aa662eebd30b64649ee11e1312f03d64ca3f113074154344985421b22f
+Copyright:
+License:
+#Header:
+#@node net/if.h
+#@section @file{net/if.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/net/if.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/netdb.texi
+Hash: 81efac0cde64e7933c49ca6ba20888bcc1e4d14e39943f3e514dfa6d33bbd1e0
+Copyright:
+License:
+#Header:
+#@node netdb.h
+#@section @file{netdb.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/netdb.h.html}
+#
+#Gnulib module: netdb
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#
+#@item
+#This header file is incomplete on some platforms:
+File: ./doc/posix-headers/netinet_in.texi
+Hash: e542809271aa2cd707d4719a1f8f8d7cbf8226bb1dfb72838ce89a452f2245ac
+Copyright:
+License:
+#Header:
+#@node netinet/in.h
+#@section @file{netinet/in.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/netinet/in.h.html}
+#
+#Gnulib module: netinet_in
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@item
+#This header file is not self-contained on some platforms: it requires
+#@code{<sys/types.h>} to be included first.
+File: ./doc/posix-headers/netinet_tcp.texi
+Hash: 23509502b23ef5cd9c39b8b860bfcbb7f18954a73524fcbe1e2f042b359a4d59
+Copyright:
+License:
+#Header:
+#@node netinet/tcp.h
+#@section @file{netinet/tcp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/netinet/tcp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/nl_types.texi
+Hash: eb08f2ce3f333f7bff7d2153a728b0acf4c4b28b52cef6ca33a13e76f65b5590
+Copyright:
+License:
+#Header:
+#@node nl_types.h
+#@section @file{nl_types.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/nl/types.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/poll.texi
+Hash: ec7ca96e1a5c5ef8c863895984b85ecc85f6746c9c36a183628c9caa38b7cfd4
+Copyright:
+License:
+#Header:
+#@node poll.h
+#@section @file{poll.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/poll.h.html}
+#
+#Gnulib module: poll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/pthread.texi
+Hash: a5be7cd565626355b119c3b1e61b4f6ed8f98e31dda19ee0b4b93dc62385f1f5
+Copyright:
+License:
+#Header:
+#@node pthread.h
+#@section @file{pthread.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/pthread.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/pwd.texi
+Hash: d470a92661247c63368bbd26dc5049ffd6e0c107b2a613ac524295009eef284d
+Copyright:
+License:
+#Header:
+#@node pwd.h
+#@section @file{pwd.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/pwd.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/regex.texi
+Hash: b016c9a3b15736ba0b5699d0161a0f323aacab56bb4360ee7a9991d6a9f8f29c
+Copyright:
+License:
+#Header:
+#@node regex.h
+#@section @file{regex.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/regex.h.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/sched.texi
+Hash: 8d21cf78b24cdf8383d5c5e1abde4f12e080f061aaa86706189afdb9471b492a
+Copyright:
+License:
+#Header:
+#@node sched.h
+#@section @file{sched.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sched.h.html}
+#
+#Gnulib module: sched
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@item
+#@code{struct sched_param} is not defined on some platforms:
+#Haiku.
+File: ./doc/posix-headers/search.texi
+Hash: 4964471e3637333930dc8a6852075de64051c2a5d24d0c36cc52b0af772e0968
+Copyright:
+License:
+#Header:
+#@node search.h
+#@section @file{search.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/search.h.html}
+#
+#Gnulib module: search
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/semaphore.texi
+Hash: 46f4edae0baf6b13b4db3f0de34e44d78f0580050e9053080262852035d475e4
+Copyright:
+License:
+#Header:
+#@node semaphore.h
+#@section @file{semaphore.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/semaphore.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/setjmp.texi
+Hash: 57c43ae545a375c5a52a670a2bfd301f686d1c93025d59c6ac73c93e3e940fa4
+Copyright:
+License:
+#Header:
+#@node setjmp.h
+#@section @file{setjmp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/setjmp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-headers/signal.texi
+Hash: 62595715b74ae647915d4afa4fb949307b061f6c95b3ed52ee4522b67a94d7be
+Copyright:
+License:
+#Header:
+#@node signal.h
+#@section @file{signal.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/signal.h.html}
+#
+#Gnulib module: signal
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{volatile sig_atomic_t} is rejected by older compilers on some
+#platforms:
+#AIX.
+#@item
+#@code{sigset_t} is only declared in <sys/types.h> on some platforms:
+File: ./doc/posix-headers/spawn.texi
+Hash: 035868e3075dfb31415e3611932d366e4cd17c744caf3973f3c2ce700041c92d
+Copyright:
+License:
+#Header:
+#@node spawn.h
+#@section @file{spawn.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/spawn.h.html}
+#
+#Gnulib module: spawn
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#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, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+File: ./doc/posix-headers/stdarg.texi
+Hash: 76bfda1aa2271dc3a394ffa60a359ab70eaee46995d95df2e459724a4f77b800
+Copyright:
+License:
+#Header:
+#@node stdarg.h
+#@section @file{stdarg.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdarg.h.html}
+#
+#Gnulib module: stdarg
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some compilers (e.g., AIX 5.3 cc) need to be in c99 mode for the builtin
+#@code{va_copy} to work.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/stdbool.texi
+Hash: 125bb0ccd0983b885486dcaebf4ddce35dad39e11a1a60c943646ae6a9361866
+Copyright:
+License:
+#Header:
+#@node stdbool.h
+#@section @file{stdbool.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdbool.h.html}
+#
+#Gnulib module: stdbool
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1.
+#@item
+#Some compilers have bugs relating to @samp{bool}.
+#@end itemize
+File: ./doc/posix-headers/stddef.texi
+Hash: 997124bfc90ae125326493c1a5c47f183bb74423ce01fcf55f1601f534dd4617
+Copyright:
+License:
+#Header:
+#@node stddef.h
+#@section @file{stddef.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stddef.h.html}
+#
+#Gnulib module: stddef
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some old platforms fail to provide @code{wchar_t}.
+#
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+File: ./doc/posix-headers/stdint.texi
+Hash: cceffcda2dd894a5e695d4e67857815bade971288c965c84717203bef3c950cd
+Copyright:
+License:
+#Header:
+#@node stdint.h
+#@section @file{stdint.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdint.h.html}
+#
+#Gnulib module: stdint
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Interix 3.5, BeOS.
+#@item
+#This header file is very incomplete on some platforms.
+#@item
+File: ./doc/posix-headers/stdio.texi
+Hash: 0a4463d4d6a612e66896c384608312ebda0d44e646b2a9130cd7e17fc222c313
+Copyright:
+License:
+#Header:
+#@node stdio.h
+#@section @file{stdio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdio.h.html}
+#
+#Gnulib module: stdio
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+#NetBSD 5.0
+#@end itemize
+File: ./doc/posix-headers/stdlib.texi
+Hash: 8ec58fc5ab8a7dab2c799d972b003a16eaa9ce993ade7447eb799b5495c106cd
+Copyright:
+License:
+#Header:
+#@node stdlib.h
+#@section @file{stdlib.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdlib.h.html}
+#
+#Gnulib module: stdlib
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The macros @code{EXIT_SUCCESS} and @code{EXIT_FAILURE} are not defined on
+#some platforms.
+#@item
+#The macro @code{EXIT_FAILURE} is incorrectly defined on Tandem/NSK.
+File: ./doc/posix-headers/string.texi
+Hash: 1e05fd8054a02aa18813a2afaedb80d990ab2762b21331032d6643a5d2bbc6ea
+Copyright:
+License:
+#Header:
+#@node string.h
+#@section @file{string.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/string.h.html}
+#
+#Gnulib module: string
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+#NetBSD 5.0
+#@end itemize
+File: ./doc/posix-headers/strings.texi
+Hash: c36bb3c4fd013835f3f170695cb65bdf9d9941a6a7c8a1ea473deb6c6304c3ea
+Copyright:
+License:
+#Header:
+#@node strings.h
+#@section @file{strings.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/strings.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file defines symbols, such as @samp{index}, often used for
+File: ./doc/posix-headers/stropts.texi
+Hash: 10ce7f6bd56eb5c087bfc1445d5d7d6c1a3a3ab49a46f6f5536f9abf99d0ea5f
+Copyright:
+License:
+#Header:
+#@node stropts.h
+#@section @file{stropts.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stropts.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_ipc.texi
+Hash: 987709fd9b281e1c72ecddc44b2260deaf8643078f674f0b8184e910c3ca940a
+Copyright:
+License:
+#Header:
+#@node sys/ipc.h
+#@section @file{sys/ipc.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/ipc.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_mman.texi
+Hash: 19b6d15cb1e745b8e5b181dfb3cc8d33c73ef5963de3d9edce93f850082ade3e
+Copyright:
+License:
+#Header:
+#@node sys/mman.h
+#@section @file{sys/mman.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/mman.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_msg.texi
+Hash: 3cf9367fe2756d8bbf6a523719715cc088118e49d2c040a4ea03dffe9a7f05e1
+Copyright:
+License:
+#Header:
+#@node sys/msg.h
+#@section @file{sys/msg.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/msg.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_resource.texi
+Hash: 53065ace2cd2231da57a4083773882092b6706781e9d6613dc3f139612645100
+Copyright:
+License:
+#Header:
+#@node sys/resource.h
+#@section @file{sys/resource.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/resource.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_select.texi
+Hash: f1a346ce9d9da46a8ac1f06b73c709f9d438ecb6dbf91d537d3628cf1d1ffdea
+Copyright:
+License:
+#Header:
+#@node sys/select.h
+#@section @file{sys/select.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/select.h.html}
+#
+#Gnulib module: sys_select
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#HP-UX 11, mingw, BeOS.
+#@item
+#This header file is not self-contained on some platforms: it requires
+#@code{<sys/types.h>} to be included first.
+File: ./doc/posix-headers/sys_sem.texi
+Hash: 8c8f9fe68b61ca3c2d0075ac577c1541e33cc7e42e088659651cc7aa5a43f384
+Copyright:
+License:
+#Header:
+#@node sys/sem.h
+#@section @file{sys/sem.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/sem.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_shm.texi
+Hash: 7bcaeeb0859bf5db9953896a7dafdfb71b7dd1c278eab4da77097f2f1eba2850
+Copyright:
+License:
+#Header:
+#@node sys/shm.h
+#@section @file{sys/shm.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/shm.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_socket.texi
+Hash: ad3994d837d6fbde926d68dbd51a4ee1e670df6a7ce683df8f1afcd8f26b9b4b
+Copyright:
+License:
+#Header:
+#@node sys/socket.h
+#@section @file{sys/socket.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/socket.h.html}
+#
+#Gnulib module: sys_socket
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@item
+#This header file is not self-contained on some platforms: it requires
+#@code{<sys/types.h>} to be included first.
+File: ./doc/posix-headers/sys_stat.texi
+Hash: 60dae061a3c75ef68ebb90a832c8d4fa057e5819930adbb7aaec240da84acb59
+Copyright:
+License:
+#Header:
+#@node sys/stat.h
+#@section @file{sys/stat.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/stat.h.html}
+#
+#Gnulib module: sys_stat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some macros, such as @code{S_IFMT}, are missing on some platforms.
+#@item
+#The macros @code{S_ISBLK}, @code{S_ISCHR}, @code{S_ISDIR}, @code{S_ISFIFO},
+#@code{S_ISLNK}, @code{S_ISREG}, @code{S_ISSOCK} are broken on some platforms.
+#@item
+File: ./doc/posix-headers/sys_statvfs.texi
+Hash: 384c0ac41e3f35d7e1ef9ebe2102866be29bb1d1881ee4f95226d7fd225365ef
+Copyright:
+License:
+#Header:
+#@node sys/statvfs.h
+#@section @file{sys/statvfs.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/statvfs.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_time.texi
+Hash: 195cc421036aa90abc0bc0c8e8c5727e61ecf1865acb542bdc289c5010dae9c6
+Copyright:
+License:
+#Header:
+#@node sys/time.h
+#@section @file{sys/time.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/time.h.html}
+#
+#Gnulib module: sys_time
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms.
+#@item
+#@samp{struct timeval} is not defined on some platforms.
+#@end itemize
+File: ./doc/posix-headers/sys_timeb.texi
+Hash: f6dbc92a61228daf56911be1d37146ecacd4df82501bead2009dd5f34f9e7488
+Copyright:
+License:
+#Header:
+#@node sys/timeb.h
+#@section @file{sys/timeb.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/timeb.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-headers/sys_times.texi
+Hash: facec7ecb6acfc5ee08859c13f611d7009bf66d95b8f460cff2b71e52d315b77
+Copyright:
+License:
+#Header:
+#@node sys/times.h
+#@section @file{sys/times.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/times.h.html}
+#
+#Gnulib module: sys_times
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/sys_types.texi
+Hash: 2d7a9db00a00c36d5e166bbf043eb9069b477d61a170213f082f756088c8e4c2
+Copyright:
+License:
+#Header:
+#@node sys/types.h
+#@section @file{sys/types.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/types.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+File: ./doc/posix-headers/sys_uio.texi
+Hash: a3f6385a4227f285dc37fb9ff1db96aa384fbff8a392a2d640bf005f152df908
+Copyright:
+License:
+#Header:
+#@node sys/uio.h
+#@section @file{sys/uio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/uio.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_un.texi
+Hash: a27feb6784f4c51abd27d5667f986f4110373fe629966424d405c5a840342cee
+Copyright:
+License:
+#Header:
+#@node sys/un.h
+#@section @file{sys/un.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/un.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/sys_utsname.texi
+Hash: efbe687e091876e6c676db5a9533062a85adf3009dbf550c52a4d71a69989fb0
+Copyright:
+License:
+#Header:
+#@node sys/utsname.h
+#@section @file{sys/utsname.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/utsname.h.html}
+#
+#Gnulib module: sys_utsname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/sys_wait.texi
+Hash: 44aee91fd4c85b72a8c966954ba061b965aaac1482f69a98aa61089579ff1bc5
+Copyright:
+License:
+#Header:
+#@node sys/wait.h
+#@section @file{sys/wait.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/wait.h.html}
+#
+#Gnulib module: sys_wait
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+File: ./doc/posix-headers/syslog.texi
+Hash: 28ddc4c29384e0d9f34b7aa9cd25745fcaa0985a112d645b84a4f450cc484775
+Copyright:
+License:
+#Header:
+#@node syslog.h
+#@section @file{syslog.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/syslog.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/tar.texi
+Hash: cd109697e8a666ccea3d2f6b9996b60c898cf4c21568a8ef35a2cb8142f026bc
+Copyright:
+License:
+#Header:
+#@node tar.h
+#@section @file{tar.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/tar.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/termios.texi
+Hash: 54b678c554704bf0a1177cbcf6d2db98edbe298e1bcfb6d7d820d268620cc09a
+Copyright:
+License:
+#Header:
+#@node termios.h
+#@section @file{termios.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/termios.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/tgmath.texi
+Hash: 4eb1d7fef4d580e91df7a35edfa926ffd821f8636083b87b8a99413caecbaf13
+Copyright:
+License:
+#Header:
+#@node tgmath.h
+#@section @file{tgmath.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/tgmath.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/time.texi
+Hash: 83887ff1ac780b4b176ca9e9a2836a3d28f0793b67904c221acf46cfc4252de3
+Copyright:
+License:
+#Header:
+#@node time.h
+#@section @file{time.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/time.h.html}
+#
+#Gnulib module: time
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@samp{struct timespec} is not defined on some platforms.
+#
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+File: ./doc/posix-headers/trace.texi
+Hash: d7736e6e0e1a98fcc3b9870300fc691ed4c2fbfaf424f08eda8a19fab101bf66
+Copyright:
+License:
+#Header:
+#@node trace.h
+#@section @file{trace.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/trace.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/ucontext.texi
+Hash: 2975ec1d3f351969dcc37b7d72d6c691a3136116a08ba38bb94723f101f3b069
+Copyright:
+License:
+#Header:
+#@node ucontext.h
+#@section @file{ucontext.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ucontext.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/ulimit.texi
+Hash: 641e0cae8c99f664100b54a41e03e453846ecc8fc889f91a93239c355e8c1ed2
+Copyright:
+License:
+#Header:
+#@node ulimit.h
+#@section @file{ulimit.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ulimit.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/unistd.texi
+Hash: 1e47066520002dbb14539e81acb50184d273f51d047815d246ba2e0a284d8ce5
+Copyright:
+License:
+#Header:
+#@node unistd.h
+#@section @file{unistd.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/unistd.h.html}
+#
+#Gnulib module: unistd
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms: msvc.
+#@item
+#The SEEK_* macros are not defined in this file on some platforms:
+#mingw.
+#@item
+File: ./doc/posix-headers/utime.texi
+Hash: 0a7e8d03567fb3f77e998cf10c309e06154b4cf560909dfe3640b3ccc20f94ee
+Copyright:
+License:
+#Header:
+#@node utime.h
+#@section @file{utime.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/utime.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms.  Use @code{<sys/utime.h>}
+File: ./doc/posix-headers/utmpx.texi
+Hash: 58a3f69e19d495d7189394ede301568c15bc5ee82908884671156bc5c4f1b052
+Copyright:
+License:
+#Header:
+#@node utmpx.h
+#@section @file{utmpx.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/utmpx.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/posix-headers/wchar.texi
+Hash: c9e0acf5b953cdbb5d2a816fb831f55f3e2ab2b85b3793c61f6114b530134e7e
+Copyright:
+License:
+#Header:
+#@node wchar.h
+#@section @file{wchar.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/wchar.h.html}
+#
+#Gnulib module: wchar
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file cannot be included on some platforms:
+#Linux uClibc built without wide character support.
+#@item
+#This header file is not self-contained on some platforms:
+#OSF/1 with Desktop Toolkit C, BSD/OS 4.0.1.
+File: ./doc/posix-headers/wctype.texi
+Hash: c5994d40b69ca8ae0d1bc6c2251fb7cb3b7ec5f64f7bef24fd40ee364b7cab9e
+Copyright:
+License:
+#Header:
+#@node wctype.h
+#@section @file{wctype.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/wctype.h.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#HP-UX 11.00, BeOS.
+#@item
+#This header file is not self-contained on some platforms:
+#Solaris 2.5, OSF/1 with Desktop Toolkit C, BSD/OS 4.0.1.
+File: ./doc/posix-headers/wordexp.texi
+Hash: 7027331cb789ce356e7d3e2b2313dd9b791f9b96444503905a2657230522a331
+Copyright:
+License:
+#Header:
+#@node wordexp.h
+#@section @file{wordexp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/wordexp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+File: ./doc/quote.texi
+Hash: 9cc2b24f70ec69e8dbc53ef7d8100f87dbcf6e4f207d834ce82c872fbeed98bf
+Copyright: 2005 Free Software Foundation, Inc.
+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:
+#@node Quoting
+#@section Quoting
+#
+#@c Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#
+#@cindex Quoting
+#@findex quote
+#@findex quotearg
+File: ./doc/regexprops-generic.texi
+Hash: 953ea60aeff18a45851d07c4fd84c6d47156d1cb6056d2808293b45b3663d4c4
+Copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+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:
+#@c Copyright (C) 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
+#@c
+#@c
+#
+#@c this regular expression description is for: generic
+#
+#@menu
+#* awk regular expression syntax::
+#* egrep regular expression syntax::
+File: ./doc/relocatable-maint.texi
+Hash: 1c95896b667fba221783ec193abf89b00a652dec4c76b849a14b605ed0c5abc3
+Copyright:
+License:
+#Header:
+#@node Supporting Relocation
+#@section Supporting Relocation
+#
+#It has been a pain for many users of GNU packages for a long time that
+#packages are not relocatable.  It means a user cannot copy a program,
+#installed by another user on the same machine, to his home directory,
+#and have it work correctly (including i18n).  So many users need to go
+#through @code{configure; make; make install} with all its
+#dependencies, options, and hurdles.
+#
+#Red Hat, Debian, and similar package systems solve the ``ease of
+#installation'' problem, but they hardwire path names, usually to
+#@file{/usr} or @file{/usr/local}.  This means that users need root
+#privileges to install a binary package, and prevents installing two
+#different versions of the same binary package.
+File: ./doc/relocatable.texi
+Hash: cb899ceab0383cc484f3b15b049b8386a304eb4b3680a196f042fcc2bea03139
+Copyright:
+License:
+#Header:
+#@node Enabling Relocatability
+#@section Enabling Relocatability
+#
+#It has been a pain for many users of GNU packages for a long time that
+#packages are not relocatable.  It means a user cannot copy a program,
+#installed by another user on the same machine, to his home directory,
+#and have it work correctly (including i18n).  So many users need to go
+#through @code{configure; make; make install} with all its
+#dependencies, options, and hurdles.
+#
+#Red Hat, Debian, and similar package systems solve the ``ease of
+#installation'' problem, but they hardwire path names, usually to
+#@file{/usr} or @file{/usr/local}.  This means that users need root
+#privileges to install a binary package, and prevents installing two
+#different versions of the same binary package.
+File: ./doc/safe-alloc.texi
+Hash: 3902a00303495772ce656b944dfff81237d6a421ad80d871254c12d04cc341ae
+Copyright:
+License:
+#Header:
+#@node Safe Allocation Macros
+#@section Safe Allocation Macros
+#
+#The standard C library malloc/realloc/calloc/free APIs are prone to a
+#number of common coding errors.  The @code{safe-alloc} module provides
+#macros that make it easier to avoid many of them.  It still uses the
+#standard C allocation functions behind the scenes.
+#
+#Some of the memory allocation mistakes that are commonly made are
+#
+#@itemize @bullet
+#@item
+#passing the incorrect number of bytes to @code{malloc}, especially
+#when allocating an array,
+#@item
+File: ./doc/solaris-versions
+Hash: bc33ea4cd4eb6126d5633cd3fa7e2adf36078fe37bd648e41612bea8614d2d12
+Copyright: 2003, 2005, 2006 Free Software Foundation, Inc.
+License:
+ Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved.
+#Header:
+#Sun seems to care about Solaris versus SunOS branding...
+#
+#Here is a mapping table that maps the `uname -sr` values to Sun's marketing
+#names.
+#
+#       SunOS 1.x       == SunOS 1.x
+#       SunOS 2.x       == SunOS 2.x
+#       SunOS 3.x       == SunOS 3.x
+#       SunOS 4.0       == SunOS 4.0
+#       SunOS 4.0.x     == SunOS 4.0.x
+#
+#Starting with 4.1.1B of SunOS we have the 'Solaris 1.0' release.
+#
+#       SunOS 4.1.1B    == Solaris 1.0
+#       SunOS 4.1.1.1   ==    "     "
+File: ./doc/standards.texi
+Hash: 758abab5b6cc5d66a433405b865acfbe95b4ea85d3de8e4f7810aa21cc026056
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+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 June 7, 2009
+#@c %**end of header
+#
+#@dircategory GNU organization
+#@direntry
+#* Standards: (standards).       GNU coding standards.
+#@end direntry
+#
+#@c @setchapternewpage odd
+#@setchapternewpage off
+File: ./doc/verify.texi
+Hash: d43e9fbb06bf63392263ab1163c57627f0091d17c88ef1ea645d7d77e2054335
+Copyright: 2006 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV
+#Header:
+#@c GNU verify module documentation
+#
+#@c Copyright (C) 2006 Free Software Foundation, Inc.
+#
+ 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, no Front-Cover Texts, and no Back-Cover
+ Texts.  A copy of the license is included in the ``GNU Free
+ Documentation License'' file as part of this distribution.
+#
+#@node Compile-time Assertions
+#@section Compile-time Assertions
+#
+#@cindex assertion
+File: ./doc/warnings.texi
+Hash: 7d0b8720b49dad5ab65dc973fbdc274a1bece799f17f45b51ebdfbd71ea094a7
+Copyright:
+License:
+#Header:
+#@node warnings
+#@section warnings
+#
+#The @code{warnings} module allows to regularly build a package with more
+#GCC warnings than the default warnings emitted by GCC.
+#
+#It provides the following functionality:
+#
+#@itemize @bullet
+#@item
+#You can select some warning options, such as @samp{-Wall}, to be enabled
+#whenever building with a GCC version that supports these options.  The
+#user can choose to override these warning options by providing the
+#opposite options in the @code{CFLAGS} variable at configuration time.
+File: ./gnulib-tool
+Hash: 506eacbbefeba098819ee35b897a3ac4805d5f1f583b31e03a7513f912d9d7c5
+Copyright: 2002-2009 Free Software Foundation, Inc.
+License: 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 (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.
+##
+## 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
+
+######################################################################
+## UPTOHERE
+######################################################################
+File: ./lib/.cppi-disable
+Hash: ed4ff8357c74f26ce7298059529040adbec140e2aff3512d6f0218a9df753e79
+Copyright:
+License:
+#Header:
+#alloca.in.h
+#error.h
+#exit.h
+#fnmatch.in.h
+#fts.c
+#fts_.h
+#getaddrinfo.h
+#getdelim.h
+#getline.h
+#getndelim2.h
+#getopt.c
+#getopt.h
+#getopt1.c
+#getopt.in.h
+#getopt_int.h
+File: ./lib/Makefile
+Hash: 2cd78169faa2196a45036c205f87158a07795f2333fdf1355032503b7c578f5a
+Copyright:
+License:
+#Header:
+## Run "make check" to ensure that the code passes some simple tests,
+## usually (always?) not involving compilation.
+#all:
+#
+#check:
+#      ./t-idcache
+File: ./lib/README
+Hash: b8e700743605335681712b4fc41327c0e5ec1304558ae837865d0ef791afcf65
+Copyright:
+License:
+#Header:
+#The files in this directory are used in many GNU packages,
+#including coreutils, diffutils, and tar.
+#The autoconf tests required for these files are in ../m4.
+File: ./lib/accept.c
+Hash: 81e7c1c7a740ff4f41971972abd0fce7d0177c859d16af4f191136397a1d820b
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* accept.c --- wrappers for Windows accept function
+#
+#   Copyright (C) 2008 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
+File: ./lib/accept4.c
+Hash: 51542463f5bad636c373ba51c3b2ab426e33b3f939bcbabfcaf2d97af6165104
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Accept a connection on a socket, with specific opening flags.
+#   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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/acl-internal.h
+Hash: eb885f58854359d77e7d3ecfc31a71a4df2476ec860d7e1a51aa30411c71e39e
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Internal implementation of access control lists.
+#
+#   Copyright (C) 2002-2003, 2005-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
+File: ./lib/acl.h
+Hash: 51d61a70672664344e91e265051c9409abd29da6e53bfaa37b774cad919a1b19
+Copyright: 2002, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* acl.c - access control lists
+#
+#   Copyright (C) 2002, 2008 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
+File: ./lib/acl_entries.c
+Hash: 9f85cc40b290acec6fd2d1429421749158816b59818b6542d1058873b08fe6db
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Return the number of entries in an ACL.
+#
+#   Copyright (C) 2002-2003, 2005-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
+File: ./lib/acosl.c
+Hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+License:
+ Developed at SunPro, a Sun Microsystems, Inc. business.
+ Permission to use, copy, modify, and distribute this
+ software is freely granted, provided that this notice
+ is preserved.
+# * ====================================================
+# */
+#
+##include <config.h>
+#
+#/* Specification.  */
+##include <math.h>
+File: ./lib/alignof.h
+Hash: 3462758dafa0cfd9ac5dbecc7fdd45d21f7b7f2a8e87ee35a5b37b251a4b1dca
+Copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Determine alignment of types.
+#   Copyright (C) 2003-2004, 2006, 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/alloca.c
+Hash: 431aec7ca1324fce73e1038b2634ad070f21bb7fee11867cc153c883cbc9e178
+Copyright:
+License:
+  (Mostly) portable public-domain implementation -- D A Gwyn
+#
+#   This implementation of the PWB library alloca function,
+#   which is used to allocate space off the run-time stack so
+#   that it is automatically reclaimed upon procedure exit,
+#   was inspired by discussions with J. Q. Johnson of Cornell.
+#   J.Otto Tennant <jot@cray.com> contributed the Cray support.
+#
+#   There are some preprocessor constants that can
+#   be defined when compiling for your specific system, for
+#   improved efficiency; however, the defaults should be okay.
+#
+#   The general concept of this implementation is to keep
+#   track of all alloca-allocated blocks, and reclaim any
+File: ./lib/alloca.in.h
+Hash: b7dcd93bf4979e9478ae25207f011254c3ac6fa5173505035f727801905dc65d
+Copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Memory allocation on the stack.
+#
+#   Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software
+#   Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published
+#   by the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   General Public License for more details.
+File: ./lib/alphasort.c
+Hash: d9acf3be813a3d6e39e7814ed4bf572e796559daad249c11b26c649d7e4cb68d
+Copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1992, 1997, 1998, 2009 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 it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/arcfour.c
+Hash: c8fed8d528f531f03939034fac2a66aa2101940d2e1a25ae81ecd33397aefd41
+Copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* arcfour.c --- The arcfour stream cipher
+# * Copyright (C) 2000, 2001, 2002, 2003, 2005, 2006 Free Software
+# * Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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: ./lib/arcfour.h
+Hash: 9ac0e9cf9af5561f523190d722544db4ddbbb9e2bb40f47b34daf7cc45ac6f7f
+Copyright: 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* arcfour.h --- The arcfour stream cipher
+# * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
+# *    Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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: ./lib/arctwo.c
+Hash: 2ddafebd0cc6dd4d8ad0fefad69ae2c676755062511550843b130b44e6af00e1
+Copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* arctwo.c --- The RC2 cipher as described in RFC 2268.
+# * Copyright (C) 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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 file; if not, write to the Free Software
+File: ./lib/arctwo.h
+Hash: 8ebc8bf993f2598e4a531b9c879ea30686307379e18170bb774a34814fab8ad4
+Copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* arctwo.h --- The arctwo block cipher
+# * Copyright (C) 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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 file; if not, write to the Free Software
+File: ./lib/areadlink-with-size.c
+Hash: 93cb0c93eeecd42ebcb6f5d41b313d8e54d6e85c97d872159053aadb4412cf8b
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
+License: 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:
+#/* readlink wrapper to return the link name in malloc'd storage.
+#   Unlike xreadlink and xreadlink_with_size, don't ever call exit.
+#
+#   Copyright (C) 2001, 2003-2007 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: ./lib/areadlink.c
+Hash: 3358ac448b45959a1e867e7f73e753dc1a9c0c493a68e0ef9d43d26f412ec68c
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
+License: 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:
+#/* areadlink.c -- readlink wrapper to return the link name in malloc'd storage
+#   Unlike xreadlink and xreadlink_with_size, don't ever call exit.
+#
+#   Copyright (C) 2001, 2003-2007 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: ./lib/areadlink.h
+Hash: 2bd213824c6fa8c5380a7addae975805c2f1550a27120bef5cc9faeae3f6cbe7
+Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Read symbolic links without size limitation.
+#
+#   Copyright (C) 2001, 2003, 2004, 2007 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
+File: ./lib/argmatch.c
+Hash: 76a31c441174aa08a151b841cc9b489075b3e0a4cd0edd4d36279854bdd463ea
+Copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* argmatch.c -- find a match for a string in an array
+#
+#   Copyright (C) 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+#   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: ./lib/argmatch.h
+Hash: 384958e174b369516cfd605f99dc3cbd78763d5df9ecd5a023704eb1009335a6
+Copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* argmatch.h -- definitions and prototypes for argmatch.c
+#
+#   Copyright (C) 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software
+#   Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/argp-ba.c
+Hash: 9661f51641633441a54245954be390ca3d303e3389349b0ff3a221abaa4b080e
+Copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Default definition for ARGP_PROGRAM_BUG_ADDRESS.
+#   Copyright (C) 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-eexst.c
+Hash: b9ad8bc0fa9a452f44ebb0fa9e15e43aba269cc76119db3a0ab3014d0ffaf8b4
+Copyright: 1997 Free Software Foundation, Inc.
+License: 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:
+#/* Default definition for ARGP_ERR_EXIT_STATUS
+#   Copyright (C) 1997 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-fmtstream.c
+Hash: 78c93c6002f45ab98bfcf9487cc421139dc415033d221d8f900454feeb878fab
+Copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
+License: 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:
+#/* Word-wrapping and line-truncating streams
+#   Copyright (C) 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-fmtstream.h
+Hash: a9f5474e0d954582819cb3aec9d04b3ed039a5bcae81d5aff11a632693cf5949
+Copyright: 1997, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Word-wrapping and line-truncating streams.
+#   Copyright (C) 1997, 2006-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-fs-xinl.c
+Hash: f42be327cb0f817cef2cf6b3f54ca487960053ff7e4f66a7b9179304f03270bd
+Copyright: 1997, 2003, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Real definitions for extern inline functions in argp-fmtstream.h
+#   Copyright (C) 1997, 2003, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-help.c
+Hash: 5ca3499ee19a2ab145823797673107b2eb288d217a9a1f500e6d77b1eb29bbe2
+Copyright: 1995-2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Hierarchial argument parsing help output
+#   Copyright (C) 1995-2005, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-namefrob.h
+Hash: 3aba78e59efd19a0514f4d27c434803bbc7b7b67ce6a9a26e257ea726b0f88a8
+Copyright: 1997, 2003, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Name frobnication for compiling argp outside of glibc
+#   Copyright (C) 1997, 2003, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-parse.c
+Hash: 09167da5bae9280333ff29c12986e2e0ef0d0c761efc54d26ae78f4393d0b24f
+Copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Hierarchial argument parsing, layered over getopt
+#   Copyright (C) 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-pin.c
+Hash: 136b821e9b1fcec0809ccd1714aba2e4e7d17cc22ec9f7fda27b53c926aff858
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Full and short program names for argp module
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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/argp-pv.c
+Hash: 3a9ac90d20dda74af5afcc874cbb8f69eb81cd80c21009d94815d6ac64ff79c1
+Copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Default definition for ARGP_PROGRAM_VERSION.
+#   Copyright (C) 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-pvh.c
+Hash: 9bf839864fb8929972b914067dca6bcceb4f05776fc9ecd4d4225356e01042bc
+Copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Default definition for ARGP_PROGRAM_VERSION_HOOK.
+#   Copyright (C) 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp-version-etc.c
+Hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Version hook for Argp.
+#   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/argp-version-etc.h
+Hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Version hook for Argp.
+#   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/argp-xinl.c
+Hash: 55403221c704ff78de0f4fedde5c49143077592a946456cd1dc707caab2ccc94
+Copyright: 1997, 1998, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Real definitions for extern inline functions in argp.h
+#   Copyright (C) 1997, 1998, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argp.h
+Hash: a47d0da1b66595eecbf61c738d5cbcb2c66cb38f2ff958466b5bdaad40e8ce79
+Copyright: 1995-1999,2003-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Hierarchial argument parsing, layered over getopt.
+#   Copyright (C) 1995-1999,2003-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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: ./lib/argv-iter.c
+Hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Iterate over arguments from argv or --files0-from=FILE
+#   Copyright (C) 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,
+#   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/argv-iter.h
+Hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Iterate over arguments from argv or --files0-from=FILE
+#   Copyright (C) 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,
+#   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/argz.c
+Hash: 1c24aecbfd5cd788fc849e7d534c75f86f4e42acb16bc7a18d23e00ba251da74
+Copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Functions for dealing with '\0' separated arg vectors.
+#   Copyright (C) 1995-1998, 2000-2002, 2006, 2008 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/argz.in.h
+Hash: b5f8d15d436b04bc7e91bc0a133e8ef45b4a70906bd0a4aba412c9ba1bf1a924
+Copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Routines for dealing with '\0' separated arg vectors.
+#   Copyright (C) 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C Library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+File: ./lib/arpa_inet.in.h
+Hash: d921498b43bfc8b6c8bd8bc3af58f20194194561344fb042169b9aa720c2dd7f
+Copyright: 2005-2006, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A GNU-like <arpa/inet.h>.
+#
+#   Copyright (C) 2005-2006, 2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/array-mergesort.h
+Hash: 0b6a5a731180bd7f2271e98ae120c9b01c751899c685fe91ed94efdc215557b0
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Stable-sorting of an array using mergesort.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/asinl.c
+Hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+License:
+#Header:
+ Developed at SunPro, a Sun Microsystems, Inc. business.
+ Permission to use, copy, modify, and distribute this
+ software is freely granted, provided that this notice
+ is preserved.
+# * ====================================================
+# */
+#
+##include <config.h>
+#
+#/* Specification.  */
+##include <math.h>
+File: ./lib/asnprintf.c
+Hash: 8e81f2c3c535f505added072b5281fa5c590144c3aa3e083dad0c3ed52b45aa0
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/asprintf.c
+Hash: 2045ea0ccc9c1e33818278aae4f856ccbec17f95c16ed6b1264dbc5f98df421c
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/at-func.c
+Hash: 6123fbee08097fe452caf222c168f32e36f7b9a10d815c8679e22fd0c1fea90f
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Define an at-style functions like fstatat, unlinkat, fchownat, etc.
+#   Copyright (C) 2006, 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/atanl.c
+Hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+License: 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:
+#/* Copyright 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+#
+#   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/atexit.c
+Hash: 9dfd71e9081a0d0955d144016b832253b840f16f0bfe5144f72ad0ce5a13525c
+Copyright:
+License:
+#Header:
+#/* Wrapper to implement ANSI C's atexit using SunOS's on_exit. */
+ This function is in the public domain.  --Mike Stump.
+#
+##include <config.h>
+#
+#int
+#atexit (void (*f) (void))
+#{
+#  /* If the system doesn't provide a definition for atexit, use on_exit
+#     if the system provides that.  */
+#  on_exit (f, 0);
+#  return 0;
+#}
+File: ./lib/atoll.c
+Hash: 43af4461379692b1d5e3db98d3b75cf38757d5cd3b2e0c26efb0287da4ef034f
+Copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Copyright (C) 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C Library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+#   License along with the GNU C Library; if not, write to the Free
+File: ./lib/backupfile.c
+Hash: de3f6f972c0d97e43fda93581b76623a6314b9e5cab5c0559f0b6622d0425874
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* backupfile.c -- make Emacs style backup file names
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+#   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 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: ./lib/backupfile.h
+Hash: 08b55cc0243fe8a455eda4a2ce69f879623f6fadfaf004386062e4c15e9a24dc
+Copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* backupfile.h -- declarations for making Emacs style backup file names
+#
+#   Copyright (C) 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free
+#   Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/base64.c
+Hash: a4fedb1d6d2bee5c7d6100ab2f73c5a24e0cd932921577dd9bca74b57e97c0ff
+Copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* base64.c -- Encode binary data using printable characters.
+#   Copyright (C) 1999, 2000, 2001, 2004, 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/base64.h
+Hash: 92f71847fff2b46fe5623f1da8199c223944384bfe92cf9d66710d17b2969583
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* base64.h -- Encode binary data using printable characters.
+#   Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/basename.c
+Hash: ca4490814d70e42aa42de5259bc7f9535664c76469f4ad8a5b741bd738171b78
+Copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* basename.c -- return the last element in a file name
+#
+#   Copyright (C) 1990, 1998, 1999, 2000, 2001, 2003, 2004, 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
+#   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: ./lib/bcopy.c
+Hash: 141099f203ec7aabf4aefe89031c9d7194ecbcdb85a1f49f18068aaae4da74f5
+Copyright:
+License:
+#Header:
+#/* bcopy.c -- copy memory.
+#   Copy LENGTH bytes from SOURCE to DEST.  Does not null-terminate.
+   In the public domain.
+   By David MacKenzie <djm@gnu.ai.mit.edu>.
+#
+##include <stddef.h>
+#
+#void
+#bcopy (void const *source0, void *dest0, size_t length)
+#{
+#  char const *source = source0;
+#  char *dest = dest0;
+#  if (source < dest)
+#    /* Moving from low mem to hi mem; start at end.  */
+#    for (source += length, dest += length; length; --length)
+File: ./lib/binary-io.h
+Hash: ea71f7a3ab4b4dbfdbe578a2bedc51341a632fae63edc9687ddb301a8e88db6b
+Copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Binary mode I/O.
+#   Copyright (C) 2001, 2003, 2005, 2008 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/bind.c
+Hash: 345fb14e8ab45ff32e86d497f729743b9085d3924d0dcd8dcc4f9b5d28cb843b
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* bind.c --- wrappers for Windows bind function
+#
+#   Copyright (C) 2008 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
+File: ./lib/bitrotate.h
+Hash: bf4e90d06ff8a7eb32a59c54394204b84741046fa15f0ee9dfd0cec19cc2cf25
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* bitrotate.h - Rotate bits in integers
+#   Copyright (C) 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,
+#   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/btowc.c
+Hash: 4c263e1c7b7add699324c83acf27490eae484d98e3ec75ec8abfe89e50e4c3e2
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convert unibyte character to wide character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/byteswap.in.h
+Hash: bd089dcccc601992343eadc9ac5d1173fe47adaa6be9f554de9b56e0ada6ef30
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* byteswap.h - Byte swapping
+#   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#   Written by Oskar Liljeblad <oskar@osk.mine.nu>, 2005.
+#
+#   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: ./lib/c-ctype.c
+Hash: 3247e6ae86bda58108f0933bb516ac7092c6b972c747ebbe1ea530edf06c0793
+Copyright: 2000-2003, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Character handling in C locale.
+#
+#   Copyright 2000-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
+#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
+File: ./lib/c-ctype.h
+Hash: 221f512fb0a226a9fe28608c4f065c4f1aea37664edc45787cf2b677d3347988
+Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Character handling in C locale.
+#
+#   These functions work like the corresponding functions in <ctype.h>,
+#   except that they have the C (POSIX) locale hardwired, whereas the
+#   <ctype.h> functions' behaviour depends on the current locale set via
+#   setlocale.
+#
+#   Copyright (C) 2000-2003, 2006, 2008 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,
+File: ./lib/c-stack.c
+Hash: 0fe02d3bbf8b73c2f3eea5841027b52860666ee94e2795b444dcc98ef79dc503
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Stack overflow handling.
+#
+#   Copyright (C) 2002, 2004, 2006, 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,
+#   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: ./lib/c-stack.h
+Hash: a21e1759d3e498e26d93665fe500f7ac93027b38ee4c9413df473f6bbe8d0b22
+Copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Stack overflow handling.
+#
+#   Copyright (C) 2002, 2004, 2008 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
+File: ./lib/c-strcase.h
+Hash: 700123f142dd7be6a02cb443ec2ec16c5e55412c9b767cb6fb5f41972f2986be
+Copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Case-insensitive string comparison functions in C locale.
+#   Copyright (C) 1995-1996, 2001, 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/c-strcasecmp.c
+Hash: 5813026dcc5c543c5f539fe753092ea0f0419c3a0e5cd28271a66403efd66608
+Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/c-strcaseeq.h
+Hash: 41a44de05c8794489a85f495714c9ebe9b7e86bf93882e1157c7c29ef7e87654
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Optimized case-insensitive string comparison in C locale.
+#   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/c-strcasestr.c
+Hash: a3ef7838539fb370edb6d04a09043224c3852cfa0eb88252705569d7194b217a
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* c-strcasestr.c -- case insensitive substring search in C locale
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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: ./lib/c-strcasestr.h
+Hash: fb9f0ccc3a0843600f8f3c546536dd03d882a1cce67ed06d95299307810a67c7
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Case-insensitive searching in a string in C locale.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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/c-strncasecmp.c
+Hash: 0f5960e9963b050aa381c57b2fb6d08ad32e86d833e906014b9f965a4f233b7e
+Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/c-strstr.c
+Hash: c435d0a89670ee2ac73fad0445f0d15de13e09ddf466ebf15dc872d62b3b5f4c
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* c-strstr.c -- substring search in C locale
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005, 2007.
+#
+#   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: ./lib/c-strstr.h
+Hash: a562f768d2d1e2f44652b98dca2e7ae58e2880eada876116a6d3bf342a312cc0
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Searching in a string.
+#   Copyright (C) 2001-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
+#   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/c-strtod.c
+Hash: 40bcd0ae43e731e785caaf327c327c32e95074019aa23a02fd58c1af79beebaa
+Copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Convert string to double, using the C locale.
+#
+#   Copyright (C) 2003, 2004, 2006, 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
+File: ./lib/c-strtod.h
+Hash: d1d38e765e9bb24e6331acb59798291a42525d3d52b5945a06e04131fda2622c
+Copyright: 2003-2004, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Convert string to double, using the C locale.
+#
+#   Copyright (C) 2003-2004, 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
+File: ./lib/c-strtold.c
+Hash: f2f3327044df634e0b933cb776f209274b8ebea5df3c977a51422befbd6db63a
+Copyright:
+License:
+#Header:
+##define LONG 1
+##include "c-strtod.c"
+File: ./lib/calloc.c
+Hash: 813b2807d1779eccdc16e52eaa6272c8d2cad79b90dcd1a121c59fccbd7db54c
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* calloc() function that is glibc compatible.
+#   This wrapper function is required at least on Tru64 UNIX 5.1 and mingw.
+#   Copyright (C) 2004, 2005, 2006, 2007 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
+File: ./lib/canon-host.c
+Hash: 6e769abcb94fe823344005341e9d566650fc3f05e22afeb853cd498391890071
+Copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Host name canonicalization
+#
+#   Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+#
+#   Written by Derek Price <derek@ximbiot.com>.
+#
+#   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
+#   GNU General Public License for more details.
+File: ./lib/canon-host.h
+Hash: 15c3b5a2570e4d2b2501c12ea7f690cd76be7a4271c9f620df17b9e24574ff2d
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Host name canonicalization
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   Written by Derek Price <derek@ximbiot.com>
+#
+#   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
+#   GNU General Public License for more details.
+File: ./lib/canonicalize-lgpl.c
+Hash: 31572bb94d292f1be2374999e03d2ca1ff506f643e889f1211ad4ec9e42709c3
+Copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Return the canonical absolute name of a given file.
+#   Copyright (C) 1996-2003, 2005-2009 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
+#   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: ./lib/canonicalize.c
+Hash: 317fb2484d6a487a7ab5c964f7fd86fa711e1ab1ab3fd34518c6d6ae7eb77f6d
+Copyright: 1996-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Return the canonical absolute name of a given file.
+#   Copyright (C) 1996-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/canonicalize.h
+Hash: 8946ae555e9b6d4173814e28c850eef63233d5026e291074af2d999e567e3303
+Copyright: 1996-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Return the canonical absolute name of a given file.
+#   Copyright (C) 1996-2007 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/ceil.c
+Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards positive infinity.
+#   Copyright (C) 2007 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/ceilf.c
+Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards positive infinity.
+#   Copyright (C) 2007 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/ceill.c
+Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards positive infinity.
+#   Copyright (C) 2007 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/chdir-long.c
+Hash: 9bfeec4664bd8ea174475e5c7ca4f26bee69370881752dacddb6aeed908600c7
+Copyright: 2004-2009 Free Software Foundation, Inc.
+License: 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:
+#/* provide a chdir function that tries not to fail due to ENAMETOOLONG
+#   Copyright (C) 2004-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/chdir-long.h
+Hash: 43c6066052ad511d0bbc773ab569ed70bfe41a4e8f0168495d53f289d3b8292c
+Copyright: 2004, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* provide a chdir function that tries not to fail due to ENAMETOOLONG
+#   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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/chdir-safer.c
+Hash: 7fb9baacfff6082c7a5913c4aae0557ff60cfb3e65bd0c09ebd438669d66a570
+Copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* much like chdir(2), but safer
+#
+#   Copyright (C) 2005-2006, 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,
+#   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: ./lib/chdir-safer.h
+Hash: e3232b6124ac91a0910daf805e412816cd3a6ee5a8268acdaa366f4c35f9ed51
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* much like chdir(2), but safer
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/check-version.c
+Hash: b9147d6cca01ee62c2de29c59777283b45be1735a457fb9a748256b9f9cd8f43
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* check-version.h --- Check version string compatibility.
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+#   2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/check-version.h
+Hash: eb1e24d6d5f441f55ca7b9ad07249b71a8056ba2eb91ad6584428f97a5a836b5
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* check-version.h --- Check version string compatibility.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/chown.c
+Hash: e72dbae39e506979332040aa02e82336372fc710944efc83f3da40c5c09ca7a6
+Copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* provide consistent interface to chown for systems that don't interpret
+#   an ID of -1 as meaning `don't change the corresponding ID'.
+#
+#   Copyright (C) 1997, 2004-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: ./lib/classpath.c
+Hash: d1d34ae2c6f3915f1a22d0399df01102840772c8733b3782ccd4fe220e819b6a
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Java CLASSPATH handling.
+#   Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/classpath.h
+Hash: 9b2071cc61bb9c5fc67562c4b2ae4270c0e61235f0052a91e63542ed1c161ff1
+Copyright: 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Java CLASSPATH handling.
+#   Copyright (C) 2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2003.
+#
+#   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: ./lib/clean-temp.c
+Hash: 36bc4ff5220f99fef224ee81984f458a050b76097c5a2e5fe8ee40d5d84e1bf4
+Copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Temporary directories and temporary files with automatic cleanup.
+#   Copyright (C) 2001, 2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/clean-temp.h
+Hash: 7fb51e989292b9fee1580dc431185ca8ee300709983c7ab0137bfc372d6a2b18
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Temporary directories and temporary files with automatic cleanup.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/cloexec.c
+Hash: 1f7579bc9888a0a5a4eb18a6a04be6dea54324e346baa4a0c76b240f01ed3329
+Copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* closexec.c - set or clear the close-on-exec descriptor flag
+#
+#   Copyright (C) 1991, 2004, 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
+#   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: ./lib/cloexec.h
+Hash: cfe5843e2e0ac5ad5fc12a47d962d9f8305a2542693105f25917b8f36614b582
+Copyright:
+License:
+#Header:
+##include <stdbool.h>
+#int set_cloexec_flag (int desc, bool value);
+File: ./lib/close-hook.c
+Hash: ec1354c985be7435887fe9b514e9777b573cf13b674dc55eeffbbf2b6f738034
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Hook for making the close() function extensible.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/close-hook.h
+Hash: 0bd92bcbb0e461e75824497facbf3a66e7ae7d8eaf7cc4b91fa7dcb0b827b504
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Hook for making the close() function extensible.
+#   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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/close-stream.c
+Hash: 5b1b946e2cdae710a10239f75e632eaac2c083ad0a895384be7a76254efcdb42
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Close a stream, with nicer error checking than fclose's.
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 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: ./lib/close-stream.h
+Hash: 827172f355991afad504e0cbf0ca7bc6df709d57f14b498de472fed1cff3c71d
+Copyright:
+License:
+#Header:
+##include <stdio.h>
+#int close_stream (FILE *stream);
+File: ./lib/close.c
+Hash: bb1b7ca07113ae43ac558dbd9ba9c62ccef65d984ff7a462df394ded1e8e5a4c
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* close replacement.
+#   Copyright (C) 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,
+#   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/closein.c
+Hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Close standard input, rewinding seekable stdin if necessary.
+#
+#   Copyright (C) 2007 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
+File: ./lib/closein.h
+Hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Close standard input, rewinding seekable stdin if necessary.
+#
+#   Copyright (C) 2007 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
+File: ./lib/closeout.c
+Hash: 0208f6e721c11f8964c3a52a6e8c4bd6f19d35db790e2a5815dfea345d7444eb
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Close standard output and standard error, exiting with a diagnostic on error.
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 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: ./lib/closeout.h
+Hash: 2b48405fde7535d4e60a3e539a77ab974fd3e372cf97d8c0ed3a82991c3b9cbe
+Copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Close standard output and standard error.
+#
+#   Copyright (C) 1998, 2000, 2003, 2004, 2006, 2008 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: ./lib/concat-filename.c
+Hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Construct a full filename from a directory and a relative filename.
+#   Copyright (C) 2001-2004, 2006-2008 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 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/concat-filename.h
+Hash: b84d2c6c2e5a8307529fe2a1345949b40a55aee7271142bf3e56ec008231bc0e
+Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Construct a full filename from a directory and a relative filename.
+#   Copyright (C) 2001-2004, 2007-2008 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/config.charset
+Hash: 6f0998e29a63e3fcb8c4e044840a073a733d777ab343c1a3f045ce6ab2e9ecf9
+Copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+##! /bin/sh
+## Output a system dependent table of character encoding aliases.
+##
+##   Copyright (C) 2000-2004, 2006-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, 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: ./lib/connect.c
+Hash: e9e4f3ca46ee356688d1d58e5eba96562c3850b470cc266856bae4cfc7ef5372
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* connect.c --- wrappers for Windows connect function
+#
+#   Copyright (C) 2008 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
+File: ./lib/copy-acl.c
+Hash: 40c730e383e47065909dd9b5cfabcdf662f5ca1d3491528c2726551c49d88e49
+Copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* copy-acl.c - copy access control list from one file to another file
+#
+#   Copyright (C) 2002-2003, 2005-2008 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
+File: ./lib/copy-file.c
+Hash: 8d79873160d6735d8e50841f62ddb06b8a12bb54fc4ccaa29e8fd4c8009e7ce9
+Copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Copying of files.
+#   Copyright (C) 2001-2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/copy-file.h
+Hash: b83fade95166bced102f06075d40d1b52c09d72aa62e313053f297f2e89e05e4
+Copyright: 2001-2003 Free Software Foundation, Inc.
+License: 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:
+#/* Copying of files.
+#   Copyright (C) 2001-2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/cosl.c
+Hash: f94441c30759bff7b800832d4a5ca7f10ab4fdec07fa304c2a367ee6814a1ada
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+License:
+#Header:
+#/* s_cosl.c -- long double version of s_sin.c.
+# * Conversion to long double by Jakub Jelinek, jj@ultra.linux.cz.
+# */
+#
+#/*
+# * ====================================================
+ Developed at SunPro, a Sun Microsystems, Inc. business.
+ Permission to use, copy, modify, and distribute this
+ software is freely granted, provided that this notice
+ is preserved.
+# * ====================================================
+# */
+File: ./lib/count-one-bits.h
+Hash: 9bfc5b555787364b6d14caddb1e35b0c076627938d3049c7b0d3d0b411409e10
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* count-one-bits.h -- counts the number of 1-bits in a word.
+#   Copyright (C) 2007-2008 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/crc.c
+Hash: 444a38281c2c920f7e54307e2fb960e7e045a71ede5a7793c8b59d19dd42fecc
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* crc.c -- cyclic redundancy checks
+#   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
+#   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
+#   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/crc.h
+Hash: d20e1f1c17cf2ef4fe9383e09809c60590708ecadd57cf6d967c5634c968eea0
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* crc.h -- cyclic redundancy checks
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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/creat-safer.c
+Hash: 675f74818da9e9543301afdb0bacc0922294d33b13d7411ff97044bc83ee5186
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke creat, but avoid some glitches.
+#
+#   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
+#   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: ./lib/csharpcomp.c
+Hash: 60500489341e803a1e684450bb9cb161aa03e3d71fd8c469f1bb47b9e5ddcbf4
+Copyright: 2003-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Compile a C# program.
+#   Copyright (C) 2003-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/csharpcomp.h
+Hash: ed80ee1bdd6a323445877e7988c969b8b4a0699bb70bea8a8f6fd2e98df2f9a2
+Copyright: 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Compile a C# program.
+#   Copyright (C) 2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/csharpexec.c
+Hash: 9c8d0cf212dcaf02bcbd13a6f9fc04f6bde9b26961bcb6b84c8d613eccedbe40
+Copyright: 2003-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Execute a C# program.
+#   Copyright (C) 2003-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/csharpexec.h
+Hash: b52a0f9c1967e21f490cb0a86d5d0910af3e34b693c1937e965561bbe2b01916
+Copyright: 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Execute a C# program.
+#   Copyright (C) 2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/cycle-check.c
+Hash: 42e37d48e8e2bde63e12bb394fa4c50a6209ed1b592e6c236411dd339e0756a1
+Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* help detect directory cycles efficiently
+#
+#   Copyright (C) 2003, 2004, 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
+#   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: ./lib/cycle-check.h
+Hash: 42b5265fff4a67fad7b32708c5ffe9ecb8ee2edac006073355fcc563d9cf7e11
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* help detect directory cycles efficiently
+#
+#   Copyright (C) 2003, 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 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: ./lib/des.c
+Hash: fd7196b6a2a037973cfc74df6861f31d3ca3a201113252ddc69f6d49843296df
+Copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* des.c --- DES and Triple-DES encryption/decryption Algorithm
+# * Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+# *    Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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: ./lib/des.h
+Hash: 0657bba6a068db36353ae4fc668777b7948049ea563a6e04d5643878c73c0553
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* des.h --- DES cipher implementation.
+# * Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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 file; if not, write to the Free Software
+File: ./lib/dev-ino.h
+Hash: 389d203acc8519fb2e74b471a247ffd831d6dd93ff076a42ee47a8a48b4f821a
+Copyright:
+License:
+#Header:
+##ifndef DEV_INO_H
+## define DEV_INO_H 1
+#
+## include <sys/types.h>
+## include <sys/stat.h>
+#
+#struct dev_ino
+#{
+#  ino_t st_ino;
+#  dev_t st_dev;
+#};
+#
+##endif
+File: ./lib/diacrit.c
+Hash: 8fe4fbeca6533f94fe5e22b403d4e9659a74a43af7777951d616971cb58a2865
+Copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Diacritics processing for a few character codes.
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 2000, 2006 Free Software
+#   Foundation, Inc.
+#
+#   François Pinard <pinard@iro.umontreal.ca>, 1988.
+#
+#   All this file is a temporary hack, waiting for locales in GNU.
+#
+#   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: ./lib/diacrit.h
+Hash: 1e18e6c700599854713425ac91ef20e1dc1b48d3842826f8ce12c5b8777f6cac
+Copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
+License: 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:
+#/* Diacritics processing for a few character codes.
+#   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
+#   François Pinard <pinard@iro.umontreal.ca>, 1988.
+#
+#   All this file is a temporary hack, waiting for locales in GNU.
+#
+#   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: ./lib/diffseq.h
+Hash: 8e10c66c285feea8e568e48fc868abfd29fca86308f93231c42016b821f5473d
+Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Analyze differences between two vectors.
+#
+#   Copyright (C) 1988-1989, 1992-1995, 2001-2004, 2006-2008 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: ./lib/dirchownmod.c
+Hash: c257ba60a2b1e58c04bdd873d5f000f1f03c6f2f364bd25f3f6bda2ce19bf4b7
+Copyright: 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Change the ownership and mode bits of a directory.
+#
+#   Copyright (C) 2006, 2007, 2008 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
+File: ./lib/dirchownmod.h
+Hash: 2377b01e9bac7aabe4b35b4ee9493ca91cf6d0edae1905934deb6462f7dfcdb7
+Copyright:
+License:
+#Header:
+##include <sys/types.h>
+#int dirchownmod (int, char const *, mode_t, uid_t, gid_t, mode_t, mode_t);
+File: ./lib/dirent--.h
+Hash: 07dc0881d2aaf744a41393f3eecee439192d76eb2eb03c62fad51514dc6ffb35
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Like dirent.h, but redefine some names to avoid glitches.
+#
+#   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
+File: ./lib/dirent-safer.h
+Hash: 6fa32838fa81f1b4a4e1df89282bd0493df71361847142562db0ebb79c0349da
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke dirent-like functions, but avoid some glitches.
+#
+#   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
+File: ./lib/dirent.in.h
+Hash: 6826b90dd9abb410dd4949515a1d15f184e8db441b5ad50f12c2eaf4f6f542c6
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* A GNU-like <dirent.h>.
+#   Copyright (C) 2006-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/dirfd.c
+Hash: 3d93cdf70fd7be9fc29911d59fe09cb189e040224aaad98a8c9e83309e9c7bc5
+Copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* dirfd.c -- return the file descriptor associated with an open DIR*
+#
+#   Copyright (C) 2001, 2006, 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,
+#   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: ./lib/dirname.c
+Hash: e875ed57e50a82603de0ee7a830a6d495673d3cf95ad330deed4ec9cc540fd7f
+Copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* dirname.c -- return all but the last element in a file name
+#
+#   Copyright (C) 1990, 1998, 2000, 2001, 2003, 2004, 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
+#   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: ./lib/dirname.h
+Hash: 5ecde11db04080822441842ce9cdf1c7d12872412af9305e768bfc5c867e3000
+Copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc.
+License: 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:
+#/*  Take file names apart into directory and base names.
+#
+#    Copyright (C) 1998, 2001, 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
+#    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: ./lib/dprintf.c
+Hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a file descriptor.
+#   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/dummy.c
+Hash: 3afbebab4922858335d8687bdd39bf0881f6eea6ed63f9d8d2999e9010b6704c
+Copyright: 2004, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* A dummy file, to prevent empty libraries from breaking builds.
+#   Copyright (C) 2004, 2007 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/dup-safer.c
+Hash: 37fd02f35d9bbe9b3673b9681de76101a235e4a0fc4d7c630773aabe959455fa
+Copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke dup, but avoid some glitches.
+#
+#   Copyright (C) 2001, 2004, 2005, 2006, 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: ./lib/dup2.c
+Hash: a27cbfd58d5eb3c2d99b2a053764f3f1085841d3f29434c0a8001d845d1387c8
+Copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Duplicate an open file descriptor to a specified file descriptor.
+#
+#   Copyright (C) 1999, 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: ./lib/dup3.c
+Hash: 5a1a146029856f33980e0ca9fb03df16e17c36957b8af8c5f19839cba93b392d
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copy a file descriptor, applying specific flags.
+#   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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/eealloc.h
+Hash: 14128ce1ce8fbad4f7358db50d4b6d6ce1c9c524e4ea23b6e266f36b39a82695
+Copyright: 2003, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Memory allocation with expensive empty allocations.
+#   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003,
+#   based on prior work by Jim Meyering.
+#
+#   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: ./lib/errno.in.h
+Hash: fe88fbd6fac6eb6acc5b84e204ef7b20b5968de6725682e3694d1f027bcf3b32
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A POSIX-like <errno.h>.
+#
+#   Copyright (C) 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/error.c
+Hash: 759532401c6333a4e942e57b2d1ec3efe68990086230f50dfc8018148c6241a9
+Copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Error handler for noninteractive utilities
+#   Copyright (C) 1990-1998, 2000-2007, 2009 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
+#   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: ./lib/error.h
+Hash: c14e8a46030c1ac6f69b89a732b7b3a0c35ab78d550419c08c02a626010c3073
+Copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Declaration for error-reporting function
+#   Copyright (C) 1995, 1996, 1997, 2003, 2006, 2008 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
+#   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: ./lib/euidaccess.c
+Hash: 88c401261238a10e8eb01df632a0149146590e3692034046262b614e176b7677
+Copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* euidaccess -- check if effective user id can access file
+#
+#   Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006,
+#   2008, 2009 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
+#   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
+File: ./lib/exclude.c
+Hash: d841af1f422218e8e2c99fbda36b8626a810eae7a5e2be71c587bf33ecf2a895
+Copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* exclude.c -- exclude file names
+#
+#   Copyright (C) 1992, 1993, 1994, 1997, 1999, 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: ./lib/exclude.h
+Hash: 2b13111b63be6c6ecb81a5e34429097b34c88b4a889ea6a41ef41309a6ef3ca5
+Copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* exclude.h -- declarations for excluding file names
+#
+#   Copyright (C) 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005,
+#   2006, 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: ./lib/execute.c
+Hash: fada894c258c01aed0dcacdb27e67b8302428f122a9a80bd346df99e5e29b461
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Creation of autonomous subprocesses.
+#   Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/execute.h
+Hash: 4e56a6cb0389acc2d1a3f91209fd3781803a0acfeb907ff3d0448286af4e35d9
+Copyright: 2001-2003, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Creation of autonomous subprocesses.
+#   Copyright (C) 2001-2003, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/exitfail.c
+Hash: 5a9a124a57c5dacad4bf2b5e021b77a42a33ee35872481ff71c4e0cd00afc2ec
+Copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Failure exit status
+#
+#   Copyright (C) 2002, 2003, 2005, 2006, 2007 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
+File: ./lib/exitfail.h
+Hash: 877a42c98a8a8b7975c4a116bcc0afead63f92402e05649936af61e72493f252
+Copyright: 2002 Free Software Foundation, Inc.
+License: 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:
+#/* Failure exit status
+#
+#   Copyright (C) 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
+#   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: ./lib/expl.c
+Hash: f570f9a7eb0fc19acf0bd0b30e1482a7ed8ba594dc26eb7951dd8a8f119be46c
+Copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Emulation for expl.
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003, 2007 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+File: ./lib/faccessat.c
+Hash: b11aa6f0dacf29b21357e6fc7694c750c8a7b4d6601f5fbc8b869d1f7c1cfff5
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Check the access rights of a file 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/fatal-signal.c
+Hash: 2439def8a904b9fec75774ba5e8dcc0c4df0ac24598e0395fa54277e258bcaf8
+Copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Emergency actions in case of a fatal signal.
+#   Copyright (C) 2003-2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/fatal-signal.h
+Hash: 161abae5aa433aa22b95dbeacf7abe6b3813df0983bbc3e90d1ac806b398dcdc
+Copyright: 2003-2004 Free Software Foundation, Inc.
+License: 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:
+#/* Emergency actions in case of a fatal signal.
+#   Copyright (C) 2003-2004 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/fbufmode.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/fbufmode.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 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/fchdir.c
+Hash: 1cff01be35d904c715c02a565711422784c3ab81ba68517b8d166ed3fdc8172b
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* fchdir replacement.
+#   Copyright (C) 2006-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/fchmodat.c
+Hash: cb14ca8efe705c5d31767cda4078b03e79cb5401098cd07215414b4af7ccda80
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Change the protections of file relative to an open directory.
+#   Copyright (C) 2006, 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/fchown-stub.c
+Hash: 01f08654cdc736f611bedc64897d6cde20db20238576d2e399050a59b54b6609
+Copyright:
+License:
+#Header:
+##include <config.h>
+#
+##include <sys/types.h>
+##include <errno.h>
+#
+#/* A trivial substitute for `fchown'.
+#
+#   DJGPP 2.03 and earlier (and perhaps later) don't have `fchown',
+#   so we pretend no-one has permission for this operation. */
+#
+#int
+#fchown (int fd, uid_t uid, gid_t gid)
+#{
+#  errno = EPERM;
+#  return -1;
+File: ./lib/fchownat.c
+Hash: f4ccacb449cfd52c9bb32d38c9282f9eb6db3e21bb40fe343f32361e2f2eee4b
+Copyright: 2006-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* This function serves as replacement for a missing fchownat function,
+#   as well as a work around for the fchownat bug in glibc-2.4:
+#    <http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html>
+#   when the buggy fchownat-with-AT_SYMLINK_NOFOLLOW operates on a symlink, it
+#   mistakenly affects the symlink referent, rather than the symlink itself.
+#
+#   Copyright (C) 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
+File: ./lib/fclose.c
+Hash: b9ff3e698a5bc176cc516f2d1bc0f1caeb31ce6ef5bc03a59f86d41f8c9a061a
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* fclose replacement.
+#   Copyright (C) 2008 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/fcntl--.h
+Hash: 3b7416a86275dcfa8f78d2f70ac320e95583cb68a3c2710dfd3d0c0ad79674f5
+Copyright: 2005, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Like fcntl.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005, 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
+File: ./lib/fcntl-safer.h
+Hash: 1b38a5c280f10b1be082ade7aa7a7094e8e48ad6610748a54b3e1e463c6955ec
+Copyright: 2005, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke fcntl-like functions, but avoid some glitches.
+#
+#   Copyright (C) 2005, 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
+File: ./lib/fcntl.in.h
+Hash: 8f4cd6edcf635c7f343e2b03cd1b7d40d742b57ea937a23b4acbac9f79deb464
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Like <fcntl.h>, but with non-working flags defined to 0.
+#
+#   Copyright (C) 2006-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
+File: ./lib/fd-safer.c
+Hash: fe1b4e960de5e5b3af0103f56e2cb6654a051d17aee26df93bda76176ba04d00
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Return a safer copy of a file descriptor.
+#
+#   Copyright (C) 2005, 2006, 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
+File: ./lib/fdopendir.c
+Hash: 6fa3102cfff5b57b78e4709b2c03cdcb8dc5519c9889f635ba73c34887212a84
+Copyright: 2004-2009 Free Software Foundation, Inc.
+License: 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:
+#/* provide a replacement fdopendir function
+#   Copyright (C) 2004-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/fflush.c
+Hash: 2622273e90952bfaa2fca8364132393c33b80f90a66a35c6b75240af7e94606c
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* fflush.c -- allow flushing input streams
+#   Copyright (C) 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.
+#
+#   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/file-has-acl.c
+Hash: 2f4bae0d818e2fcf56e772e9c9caa2310f7f7dc7d3cd3556335b0d04d46964a2
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test whether a file has a nontrivial access control list.
+#
+#   Copyright (C) 2002-2003, 2005-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
+File: ./lib/file-set.c
+Hash: 45dea5f9b0a95afa2babe22d9de18010fe4078005351697ce25c587c75173b3a
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Specialized functions to manipulate a set of files.
+#   Copyright (C) 2007 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/file-set.h
+Hash: 4bacc096f8105ab71d14c90967bb7855d2ad8da0afc132d32c8df03d2eb427dd
+Copyright:
+License:
+#Header:
+##include <sys/types.h>
+##include <sys/stat.h>
+##include <stdbool.h>
+#
+##include "hash.h"
+#
+#extern void record_file (Hash_table *ht, char const *file,
+#                       struct stat const *stats)
+#  __attribute__((nonnull(2, 3)));
+#
+#extern bool seen_file (Hash_table const *ht, char const *file,
+#                     struct stat const *stats);
+File: ./lib/file-type.c
+Hash: 9b360c9dba47a27fbcdcfa7c880672f23094a4332459655d5a06abaf75724544
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Return a string describing the type of a file.
+#
+#   Copyright (C) 1993, 1994, 2001, 2002, 2004, 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
+#   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: ./lib/file-type.h
+Hash: 33f7ce18b9037520c8a1d64bce9ba5ccfccc1ac39b4b08510f2f2caab56064b9
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Return a string describing the type of a file.
+#
+#   Copyright (C) 1993, 1994, 2001, 2002, 2004, 2005 Free Software
+#   Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/fileblocks.c
+Hash: 15debca15418300f226a883a5ce4e98d3b687ef448b5b30e08247e56908be2ae
+Copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Convert file size to number of blocks on System V-like machines.
+#
+#   Copyright (C) 1990, 1997, 1998, 1999, 2004, 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
+#   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: ./lib/filemode.c
+Hash: 169a543533dec3c22ffde0c0391528ea49b2440c80bc3ffde47196967ad49af0
+Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* filemode.c -- make a string describing file modes
+#
+#   Copyright (C) 1985, 1990, 1993, 1998-2000, 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 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: ./lib/filemode.h
+Hash: 6439a9bafba8f71ce6dd51c897b653f713d013a8496413a19361cac6f515dcaf
+Copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Make a string describing file modes.
+#
+#   Copyright (C) 1998, 1999, 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
+#   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: ./lib/filename.h
+Hash: 4f53c064d5d3411085081f0e8d109ed3132ab4333b1eefff9c22a968fa751ad8
+Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Basic filename support macros.
+#   Copyright (C) 2001-2004, 2007-2008 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/filenamecat.c
+Hash: d956c0d319ac571bc4c8d3e7d5be91e47dfbe356a8f4c2c64abe944b8e094af8
+Copyright: 1996-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Concatenate two arbitrary file names.
+#
+#   Copyright (C) 1996-2007 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
+File: ./lib/filenamecat.h
+Hash: 6ddfa3af34686669e746d1cb478b10753b7d450b3097c4b856230acdf11a5a6a
+Copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Concatenate two arbitrary file names.
+#
+#   Copyright (C) 1996, 1997, 2003, 2005, 2007 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
+File: ./lib/filevercmp.c
+Hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+Copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+License: 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:
+#/*
+#   Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
+#   Copyright (C) 2001 Anthony Towns <aj@azure.humbug.org.au>
+#   Copyright (C) 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,
+#   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: ./lib/filevercmp.h
+Hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+Copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+License: 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:
+#/*
+#   Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
+#   Copyright (C) 2001 Anthony Towns <aj@azure.humbug.org.au>
+#   Copyright (C) 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,
+#   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: ./lib/findprog-lgpl.c
+Hash: f142976d34ef0acffd72143865aadaacf7318c9391ac036941d725be41fd1424
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Locating a program in PATH.
+#   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2008.
+#
+#   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: ./lib/findprog.c
+Hash: 0dfc19e772afe61de75fb5844aec46027116c8e89e71b3d1da85482635daf928
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Locating a program in PATH.
+#   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/findprog.h
+Hash: 52461483d830d7ff18633a15addd92530f4b6d1632f3cb1dbf15de8092a7758f
+Copyright: 2001-2003 Free Software Foundation, Inc.
+License: 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:
+#/* Locating a program in PATH.
+#   Copyright (C) 2001-2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/float+.h
+Hash: e0f837de3dc39e0b747f0927653fa501e3e873bdfe1c26b0961519fd8dd897b4
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Supplemental information about the floating-point formats.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/float.in.h
+Hash: 0c19c5ab4c8e1d8499f9edd1fd44d287083f329b75ec2b54100b101310e88ab6
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* A correct <float.h>.
+#
+#   Copyright (C) 2007-2008 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
+File: ./lib/flock.c
+Hash: c4837f3ed93fcac221405077e40e31648eda752325afe74b7b28d32928fbdec3
+Copyright: 2008 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Emulate flock on platforms that lack it, primarily Windows and MinGW.
+#
+#   This is derived from sqlite3 sources.
+#   http://www.sqlite.org/cvstrac/rlog?f=sqlite/src/os_win.c
+#   http://www.sqlite.org/copyright.html
+#
+#   Written by Richard W.M. Jones <rjones.at.redhat.com>
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   This library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+File: ./lib/floor.c
+Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards negative infinity.
+#   Copyright (C) 2007 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/floorf.c
+Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards negative infinity.
+#   Copyright (C) 2007 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/floorl.c
+Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards negative infinity.
+#   Copyright (C) 2007 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/fnmatch.c
+Hash: a1023b214fa5f3433ca30359a6857be416dc1dade27370bdbd7100857341f56c
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/fnmatch.in.h
+Hash: a5c8c5adbf49f1404d18740af34363323265ef6c7588387425b5797518dd9317
+Copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
+#   2005, 2007 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/fnmatch_loop.c
+Hash: 5351dffc7f21918d5a731915aca1c452c091beb8a7df2ed78acf823afad6d785
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/fopen-safer.c
+Hash: 2c3a39bc70dada2b591df7cbf00ccc0ceed6e2f66c08fd5e01c7f70cc55eade6
+Copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke fopen, but avoid some glitches.
+#
+#   Copyright (C) 2001, 2004, 2005, 2006, 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: ./lib/fopen.c
+Hash: 0eae410e55fc3de8810a3f68d37626df92ba75bbadf58269f8e802be2c05310b
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Open a stream to a file.
+#   Copyright (C) 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.
+#
+#   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/fpending.c
+Hash: af0350b9abdd28ebb8e56a842c10a760620a22b242a6a2f74402ee4222dcc8a2
+Copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* fpending.c -- return the number of pending output bytes on a stream
+#   Copyright (C) 2000, 2004, 2006, 2007 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/fpending.h
+Hash: 01eea55927650242b2ec6a6293963c43ab840f135e5d4e9895c43aaff5d529a1
+Copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Declare __fpending.
+#
+#   Copyright (C) 2000, 2003, 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
+#   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: ./lib/fprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 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/fprintftime.c
+Hash: 2f439ed60059d2a1a96bdb1e19ca32c81fdcced639c884f1deaf416f4d750e84
+Copyright:
+License:
+#Header:
+##define FPRINTFTIME 1
+##include "strftime.c"
+File: ./lib/fprintftime.h
+Hash: 4f0efdf4cf65af56c865a1cf73b3314360fe7b326a00eb9994ba12a5bb0d2920
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Generate time strings directly to the output.  */
+#
+#/* Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/fpucw.h
+Hash: e47878db46d7035debf5275a50634b563f90405b938fb8721ade14b526fc4738
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Manipulating the FPU control word.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/fpurge.c
+Hash: 979d16d694737fea189e9bf8d29a91f31305bc10386618604a2efd317703b257
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Flushing buffers of a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/freadable.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/freadable.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 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/freadahead.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/freadahead.h
+Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2008 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/freading.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/freading.h
+Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2008 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/freadptr.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/freadptr.h
+Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2008 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/freadseek.c
+Hash: e5dad14d411c6ebf4122bb8b36c186dc7c6c396d1a13b24aeea84bd19679c098
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Skipping input from a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/freadseek.h
+Hash: c7545f90ba5bf8bba37c297551a1a35b4c1814f8cf6d6c3f8d57b2e56ebaba0c
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Skipping input from a FILE stream.
+#   Copyright (C) 2007-2008 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/free.c
+Hash: b573f5b5fea990902e68d85f02b015cf9320100fe56678f14e732f90cf83e473
+Copyright: 2003, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Work around incompatibility on older systems where free (NULL) fails.
+#
+#   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
+#   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: ./lib/freopen.c
+Hash: 58204a89790d1470a883e67f10cd0ddd7153655334e185ca64530467b797a4f9
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Open a stream to a file.
+#   Copyright (C) 2007-2008 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/frexp.c
+Hash: 91c12c41ce9b83e5cb3b66a32ee07dd6c30c8d24dd94f452238c006a0322287e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Split a double into fraction and mantissa.
+#   Copyright (C) 2007-2008 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/frexpl.c
+Hash: c03c58defe40517c302193125927eacad08dcda5bf4f49afaec567a5729e3a3d
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Split a 'long double' into fraction and mantissa.
+#   Copyright (C) 2007 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/fseek.c
+Hash: 0047d7b482dad80bda7de91feaa9d092a02a2a7fdcc852df3c8dc2f9c4bd0191
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* An fseek() function that, together with fflush(), is POSIX compliant.
+#   Copyright (C) 2007 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/fseeko.c
+Hash: 7b2541be24bdcf54f417ab2189fb821a645f6a4f06a21adaff8f058594862194
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* An fseeko() function that, together with fflush(), is POSIX compliant.
+#   Copyright (C) 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/fseterr.c
+Hash: 7db3706c69835761a78a456fd39fb66f59d80b7ec061c6c204cceb4ac8cc5094
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Set the error indicator of a stream.
+#   Copyright (C) 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.
+#
+#   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/fseterr.h
+Hash: 59926523da017089371d4894c0e5bccd77843a75a6a837ab203c875d993393fb
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Set the error indicator of a stream.
+#   Copyright (C) 2007 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/fstatat.c
+Hash: e4dee1ca9774aa96627d99386e03d3a973f79dd331825b6d818b8f50a77bd65d
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Work around an fstatat bug on Solaris 9.
+#
+#   Copyright (C) 2006, 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
+File: ./lib/fstrcmp.c
+Hash: bfca8347502966f7b7e533a47fc2545366b589adee21a653689f4503158b2e5e
+Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008, Free Software Foundation, Inc.
+License: 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:
+#/* Functions to make fuzzy comparisons between strings
+#   Copyright (C) 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
+#   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
+File: ./lib/fstrcmp.h
+Hash: affd05fb827a563d7f36a218fddb5aabf27be47e86157d97d850ff3f98ef74e1
+Copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Fuzzy string comparison.
+#   Copyright (C) 1995, 2000, 2002-2003, 2006, 2008 Free Software
+#   Foundation, Inc.
+#
+#   This file was written by Peter Miller <pmiller@agso.gov.au>
+#
+#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: ./lib/fsusage.c
+Hash: bf6546df7e894ec6855dfb9c9548dae4acbe9b4d69acde87b3c3d5deb1534091
+Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* fsusage.c -- return space usage of mounted file systems
+#
+#   Copyright (C) 1991-1992, 1996, 1998-1999, 2002-2006, 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: ./lib/fsusage.h
+Hash: 0fbfea12b9dabb5987b88390bdc84d23c2dcd6a435f842f44d26c0a985a490b7
+Copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* fsusage.h -- declarations for file system space usage info
+#
+#   Copyright (C) 1991, 1992, 1997, 2003, 2004, 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
+#   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: ./lib/fsync.c
+Hash: 3d47bf5b981a180ca9cc8a052b84b52744342a9cc13c1c814274b04ed0ccce99
+Copyright: 2008 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Emulate fsync on platforms that lack it, primarily Windows and
+#   cross-compilers like MinGW.
+#
+#   This is derived from sqlite3 sources.
+#   http://www.sqlite.org/cvstrac/rlog?f=sqlite/src/os_win.c
+#   http://www.sqlite.org/copyright.html
+#
+#   Written by Richard W.M. Jones <rjones.at.redhat.com>
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   This library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+
+
+######################################################################
+# UPTOHERE
+######################################################################
+File: ./lib/ftell.c
+Hash: bdacd27661da79a67395f4c109a4ca358cbf5f7708013ac8b4597e1748cb866c
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* An ftell() function that works around platform bugs.
+#   Copyright (C) 2007, 2008 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/ftello.c
+Hash: 8eb3edb3ac0a89c7d9fbf79c0f5b80d54bf4ba9150f30175b5c00d56b78da476
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* An ftello() function that works around platform bugs.
+#   Copyright (C) 2007 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/ftruncate.c
+Hash: 7e7eb364e0c33931844842e8432d1ba9a9f8b8dd506599b01ab206d1a414039f
+Copyright:
+License:
+#Header:
+#/* ftruncate emulations that work on some System V's.
+   This file is in the public domain.
+#
+##include <config.h>
+#
+#/* Specification.  */
+##include <unistd.h>
+#
+##include <sys/types.h>
+##include <fcntl.h>
+#
+##ifdef F_CHSIZE
+#
+#int
+#ftruncate (int fd, off_t length)
+File: ./lib/fts-cycle.c
+Hash: fc1d44a722404dd98d94914dab1b5ec263ac0d9749adcb8eadab0455348c1b8e
+Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Detect cycles in file tree walks.
+#
+#   Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#   Written by Jim Meyering.
+#
+#   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: ./lib/fts.c
+Hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+Copyright: 1990, 1993, 1994 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
+License: GPL-3+ and BSD (3-clause)
+   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/>.
+   
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+ 4. Neither the name of the University nor the names of its contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+    
+  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+  SUCH DAMAGE.
+
+#Header:
+#/* Traverse a file hierarchy.
+#
+#   Copyright (C) 2004-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
+File: ./lib/fts_.h
+Hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+Copyright: 1989, 1993 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
+License: GPL-3+ and BSD (3-clause)
+   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/>.
+   
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+ 4. Neither the name of the University nor the names of its contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+    
+  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+  SUCH DAMAGE.
+#Header:
+#/* Traverse a file hierarchy.
+#
+#   Copyright (C) 2004-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
+File: ./lib/full-read.c
+Hash: 8a27da95d11da5cac1d6d93a7c5408ac9e9e9b84c727c9d6426d536d74329533
+Copyright: 2002, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to read that retries after partial reads and interrupts.
+#   Copyright (C) 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
+#   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/full-read.h
+Hash: d4d3d1e43b305e2074d6ceb67dfc077058f73fa50b9188c61e3322de4c84a156
+Copyright: 2002 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to read() that reads all it is asked to read.
+#
+#   Copyright (C) 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
+#   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: ./lib/full-write.c
+Hash: 14aac294502e565d0475a4605c4fa84cd3ba3b006dc9f31359bd20cd01d223fb
+Copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to read and write that retries (if necessary) until complete.
+#
+#   Copyright (C) 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
+#   2004, 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
+#   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: ./lib/full-write.h
+Hash: 6fc92b2c6f57f68ee664efc58bd464d3694584a11c7895b3e10d073f7463e4eb
+Copyright: 2002-2003 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to write() that writes all it is asked to write.
+#
+#   Copyright (C) 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
+#   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: ./lib/fwritable.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/fwritable.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 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/fwriteerror.c
+Hash: 1a1137f1f41c92585bea0ad15c2c294253d8d496638763318511930ddc34559f
+Copyright: 2003-2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Detect write error on a stream.
+#   Copyright (C) 2003-2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/fwriteerror.h
+Hash: 57d77b30a81499334eeb50f7dfc84fa69ae4232ff0670018e7d4544f670e33a0
+Copyright: 2003, 2005-2006 Free Software Foundation, Inc.
+License: 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:
+#/* Detect write error on a stream.
+#   Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/fwriting.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 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.
+#
+#   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/fwriting.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 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/gai_strerror.c
+Hash: 6fa8c98c6159a1bc336cc672906d02a7c2b14a0db56b900ebd375c79e93e0a51
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Philip Blundell <pjb27@cam.ac.uk>, 1997.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/gc-gnulib.c
+Hash: a1a6cd40081db989deb6d637777e1ea5e616b3d6a283a7a7f4a9d5e09291c419
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* gc-gnulib.c --- Common gnulib internal crypto interface functions
+# * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+# * Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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: ./lib/gc-libgcrypt.c
+Hash: 17a44f44fe9aa32fa885740126dc77e9789d91af8a7b6481c1c03a99b378b010
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* gc-libgcrypt.c --- Crypto wrappers around Libgcrypt for GC.
+# * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+# * Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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: ./lib/gc-pbkdf2-sha1.c
+Hash: 2286c6ae2cbbc15032408e0ab1b986db3f9ba1b141f1a542dbddcbb50c8dce4c
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* gc-pbkdf2-sha1.c --- Password-Based Key Derivation Function a'la PKCS#5
+#   Copyright (C) 2002, 2003, 2004, 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/gc.h
+Hash: a4f94bdf9e032840c9e93a7a9da02fd788642e5def0abcfa0107c6a129f2f4b8
+Copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* gc.h --- Header file for implementation agnostic crypto wrapper API.
+# * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008  Simon Josefsson
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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 file; if not, write to the Free Software
+File: ./lib/gcd.c
+Hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Arithmetic.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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: ./lib/gcd.h
+Hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Arithmetic.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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: ./lib/gen-uni-tables.c
+Hash: aad2b45b19beca4f2ac5d5f5bb9edce6d0afc88e1b7b9d1047748f876a287f4a
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Generate Unicode conforming character classification tables and
+#   line break properties tables and word break property tables and
+#   decomposition/composition and case mapping tables from a UnicodeData file.
+#   Copyright (C) 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2000-2002.
+#
+#   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: ./lib/getaddrinfo.c
+Hash: adc75b9ed0c95c54930e8aed577992958efb7d055fee5326a497b8abb69d0316
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Get address information (partial implementation).
+#   Copyright (C) 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
+#   Foundation, Inc.
+#   Contributed by Simon Josefsson <simon@josefsson.org>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/getcwd.c
+Hash: 5875b69c2fe815331158284d7517251ab1bf88edae205ac42d739b529a6d4873
+Copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991-1999, 2004-2009 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
+#   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/getdate.h
+Hash: b9389accd94ac78a67232edb3c527f3f70ee67ad6f01602d68b55ba4fbcd0dba
+Copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software Foundation, Inc.
+License: 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 a string into an internal time stamp.
+#
+#   Copyright (C) 1995, 1997, 1998, 2003, 2004, 2007 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: ./lib/getdate.y
+Hash: b5fca8ba27d142ddf8675e4f97a669f215e388619b18a6be948a2fb748066a5c
+Copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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 a string into an internal time stamp.
+#
+#   Copyright (C) 1999, 2000, 2002, 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,
+#   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: ./lib/getdelim.c
+Hash: 992ace4fcbea4653a4c94a5e3161682e707b458f19befe7a2efe9b6d0536c45b
+Copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* getdelim.c --- Implementation of replacement getdelim function.
+#   Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 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 2, or (at
+#   your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful, but
+#   WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/getdomainname.c
+Hash: 49d9ff73b25a4e25ab534f038da03ecc6bd4f1e55511d312f3e3652d79e561f3
+Copyright: 2003, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* getdomainname emulation for systems that doesn't have it.
+#
+#   Copyright (C) 2003, 2006, 2008 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
+File: ./lib/getdtablesize.c
+Hash: 51191e642c33bb0d979044844f6eff55029ec458cd21474f85bb0b0d51eb1353
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* getdtablesize() function for platforms that don't have it.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/getgroups.c
+Hash: 0f0b9f4b7e5c2b88b951017ee86711bfeafe90b04b0b610061b888563f4fdded
+Copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* provide consistent interface to getgroups for systems that don't allow N==0
+#
+#   Copyright (C) 1996, 1999, 2003, 2006, 2007, 2008 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: ./lib/gethostname.c
+Hash: 08b8fc75fb3ab4c65596a95988f9a243016039c6a6d58db033df382b3e85ef91
+Copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* gethostname emulation for SysV and POSIX.1.
+#
+#   Copyright (C) 1992, 2003, 2006, 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,
+#   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: ./lib/gethrxtime.c
+Hash: 1cec40c1dcc320f69be6e1c805d217f9abab323dfc4d321daeb53e6d8a47b7d8
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* gethrxtime -- get high resolution real time
+#
+#   Copyright (C) 2005, 2006, 2007 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
+File: ./lib/gethrxtime.h
+Hash: 0f5ade662a7551e4b033ef5d892a59fa220a1ca1e4fca8feb3778e6102444739
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* gethrxtime -- get high resolution real time
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/getline.c
+Hash: db509c33815c26829232154304e781d89be477ad3f316afe1d06f654877e7697
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* getline.c --- Implementation of replacement getline function.
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU General Public License as
+#   published by the Free Software Foundation; either version 2, or (at
+#   your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful, but
+#   WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software
+File: ./lib/getloadavg.c
+Hash: 2d24f7a43c161425aa87eff2a7f2fb2bc4a9a1f84761f74178139d04c1fece2b
+Copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Get the system load averages.
+#
+#   Copyright (C) 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994,
+#   1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+#   Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with gnulib.
+#   Bugs can be reported to bug-gnulib@gnu.org.
+#
+#   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: ./lib/getlogin_r.c
+Hash: 71342da5c9fce5ffc521819fbf5ea380288d8dd31a5a80d9272b7f75b422173c
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide a working getlogin_r for systems which lack it.
+#
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/getndelim2.c
+Hash: 9ee7610ebe6f8a37f5a5a68a7b3449214c14a38ff0d7dd572812bb7859df98f1
+Copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* getndelim2 - Read a line from a stream, stopping at one of 2 delimiters,
+#   with bounded memory allocation.
+#
+#   Copyright (C) 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 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: ./lib/getndelim2.h
+Hash: f5045e0d348580d1368f95e10cdc98ef5dc5cb756ace0005aa8ea0b4b3ec3c44
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* getndelim2 - Read a line from a stream, stopping at one of 2 delimiters,
+#   with bounded memory allocation.
+#
+#   Copyright (C) 2003, 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 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: ./lib/getnline.c
+Hash: bbdd86a205f27f15ef28fbde34d1623b507bb2453e631af80a1afab6cd8981ec
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* getnline - Read a line from a stream, with bounded memory allocation.
+#
+#   Copyright (C) 2003, 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 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: ./lib/getnline.h
+Hash: 03573e9a526808be4f0f78b44449e9d23df1f24379e10ec2ba8ca76d47a3c4a6
+Copyright: 2003, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* getnline - Read a line from a stream, with bounded memory allocation.
+#
+#   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/getopt.c
+Hash: 4d0fd46f29bb8073586f8ec6d6970bb6076904b387b4ba39b52e67f894fad2ac
+Copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008 Free Software Foundation, Inc.
+License: 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:
+#/* Getopt for GNU.
+#   NOTE: getopt is now part of the C library, so if you don't know what
+#   "Keep this file name-space clean" means, talk to drepper@gnu.org
+#   before changing it!
+#   Copyright (C) 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008
+#      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
+#   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
+File: ./lib/getopt.in.h
+Hash: 85fd6cbd9bf519076eb2762b34c713e170afc8e197126defee267fedcee58ff4
+Copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
+License: 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:
+#/* Declarations for getopt.
+#   Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
+#   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
+#   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: ./lib/getopt1.c
+Hash: 40109d2a58167504326aad2cb1b61592e621cfc075c9499cc9fc8c4428517863
+Copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009 Free Software Foundation, Inc.
+License: 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:
+#/* getopt_long and getopt_long_only entry points for GNU getopt.
+#   Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
+#     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
+#   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: ./lib/getopt_int.h
+Hash: 54606da8ebed47f74fd89143417b60de590aa10ec0620f8a7a78ebd0c36557e3
+Copyright: 1989-1994,1996-1999,2001,2003,2004 Free Software Foundation, Inc.
+License: 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:
+#/* Internal declarations for getopt.
+#   Copyright (C) 1989-1994,1996-1999,2001,2003,2004
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/getpagesize.c
+Hash: cc8c7a17126f58bdff2c354feec2eed60d44ff713caa57dc3075bc3f136601ba
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* getpagesize emulation for systems where it cannot be done in a C macro.
+#
+#   Copyright (C) 2007 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
+File: ./lib/getpass.c
+Hash: 3c4602671b814d6de906dbab501db462e449060ec3b662a3cc813158469c1c41
+Copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1992-2001, 2003, 2004, 2005, 2006, 2007 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/getpass.h
+Hash: 715da55d6addef9aba7f35a6d79bf776995ba58b92e85e1355038b36d4dd757c
+Copyright: 2004 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* getpass.h -- Read a password of arbitrary length from /dev/tty or stdin.
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#   Contributed by Simon Josefsson <jas@extundo.com>, 2004.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/getpeername.c
+Hash: 3a2f22e1c404ed3915fd5dfe38a6d499d2cb70e1fd51eaa0dd53aadc7b7be703
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* getpeername.c --- wrappers for Windows getpeername function
+#
+#   Copyright (C) 2008 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
+File: ./lib/getsockname.c
+Hash: db4f104421692ccfcaec0efbeefb8abf3170e8e83c3f80d16d4088a9570c0747
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* getsockname.c --- wrappers for Windows getsockname function
+#
+#   Copyright (C) 2008 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
+File: ./lib/getsockopt.c
+Hash: cfa28503953c834f7db8e9d1e3113792201bf64a0b7ef2ef1e4f2cbb56b5ac98
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* getsockopt.c --- wrappers for Windows getsockopt function
+#
+#   Copyright (C) 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,
+#   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: ./lib/getsubopt.c
+Hash: ec9a4323b51dc83a8a3dab5470517e58f1bb6eade183c6dc3eba458312ab0d3e
+Copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
+License: 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 comma separated list into words.
+#   Copyright (C) 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
+#
+#   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: ./lib/gettext.h
+Hash: 136f1ff682700ad9f5fb60428eeada20f160e6ed38a19ad78bd1dc4e440f55f0
+Copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Convenience header for conditional use of GNU <libintl.h>.
+#   Copyright (C) 1995-1998, 2000-2002, 2004-2006, 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/gettime.c
+Hash: 77086b931aa5e0345ebf249afe25b980450af522098b0dc7db39c72cda600702
+Copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* gettime -- get the system clock
+#
+#   Copyright (C) 2002, 2004, 2005, 2006, 2007 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
+File: ./lib/gettimeofday.c
+Hash: cde7080c035c43c360bf0a39981d8e1f56a5745a9f0857f3fab617c0414c9aa6
+Copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide gettimeofday for systems that don't have it or for which it's broken.
+#
+#   Copyright (C) 2001, 2002, 2003, 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/getugroups.c
+Hash: 270b3c42be956bed158bfc6996f80f6ea8860856d9d24ce150bc04e2d49c0cb4
+Copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation, Inc.
+License: 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:
+#/* getugroups.c -- return a list of the groups a user is in
+#
+#   Copyright (C) 1990, 1991, 1998-2000, 2003-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: ./lib/getugroups.h
+Hash: 5a293b9aa238d490fa967e3b2edb180d4e6dc234cc662fd796ebefe226ef0c7d
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Get a list of group IDs associated with a specified user ID.
+#   Copyright (C) 2007 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/getusershell.c
+Hash: 1fd7fb9cb095692b1bf2300b27d245389e99a34347ace403e72b60d4bf3dd633
+Copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* getusershell.c -- Return names of valid user shells.
+#
+#   Copyright (C) 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 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: ./lib/git-merge-changelog.c
+Hash: 1eb639ccc3a04697cdb5744ebbcb63f90893e0de7ec866b6dd449e350d28915f
+Copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* git-merge-changelog - git "merge" driver for GNU style ChangeLog files.
+#   Copyright (C) 2008-2009 Bruno Haible <bruno@clisp.org>
+#
+#   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: ./lib/gl_anyavltree_list1.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anyavltree_list2.h
+Hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anyhash_list1.h
+Hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with another list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anyhash_list2.h
+Hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with another list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anylinked_list1.h
+Hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anylinked_list2.h
+Hash: ebec01e1e27b8f47a348c6c8aab61a6cd8a6d756d7af2d6af0fb0717ebac9699
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anyrbtree_list1.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anyrbtree_list2.h
+Hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anytree_list1.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anytree_list2.h
+Hash: 40c2faf4dbc261cf4e9ef93bd5c202d96530b5ad6198c8421f85b2d5c9e841ef
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anytree_oset.h
+Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anytreehash_list1.h
+Hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_anytreehash_list2.h
+Hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_array_list.c
+Hash: 0c25ceacf9c0bdb5aab3741b0cb9cda44011e1dc5d268cbc8bf5101e0acce283
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by an array.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_array_list.h
+Hash: 863f801e67908ee9891c3f0dcb4f8ce0e131de5453303e2a7790b0bd3958ca0a
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by an array.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_array_oset.c
+Hash: c819d4f4a184e90641f6cefcacbf6b02abed3b6e38373b86c138dea7cac916ac
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Ordered set data type implemented by an array.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_array_oset.h
+Hash: 019de04fadf81baec6bf31de9ff73bb78d4ad248796b60a6875b604a8a4fbaa7
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Ordered set data type implemented by an array.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_avltree_list.c
+Hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_avltree_list.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_avltree_oset.c
+Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_avltree_oset.h
+Hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_avltreehash_list.c
+Hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_avltreehash_list.h
+Hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_carray_list.c
+Hash: 1231124fa2b6eb2388f59849dfadbcc1121ac93c1498182180307abef125f81e
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a circular array.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_carray_list.h
+Hash: 69dc4efd9c2c04954ad4b58ec33e4e452068e7afc4bd466a824816dc6a94dc82
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a circular array.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_linked_list.c
+Hash: ed7862364a0ad9a0b599013e8efaf9a1bd4ca2fee8ca914048d25296fa8a55af
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_linked_list.h
+Hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_linkedhash_list.c
+Hash: 0ac3aac0adac6ac1565820f39242ce8abaf6ce35fe9f110d5bda696eb80db47f
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a linked list.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_linkedhash_list.h
+Hash: dd97ead793ac89798799ec721b21cc9e52051b5bf68d0c4b5a0437b938a30069
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a linked list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_list.c
+Hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Abstract sequential list data type.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_list.h
+Hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Abstract sequential list data type.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_oset.c
+Hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Abstract ordered set data type.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_oset.h
+Hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Abstract ordered set data type.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_rbtree_list.c
+Hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_rbtree_list.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_rbtree_oset.c
+Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_rbtree_oset.h
+Hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_rbtreehash_list.c
+Hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_rbtreehash_list.h
+Hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_sublist.c
+Hash: 73915aa3876fd8f8947afe4eea6a3383db1680e283ed8da437d4ce635e8148d5
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type backed by another list.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/gl_sublist.h
+Hash: 6b2c4954c29b3c4f64ecfc9ea385e7613778fe57581326d0bb0865f30f47bdf2
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Sequential list data type backed by another list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/glob-libc.h
+Hash: b8ac91c8cae0271efb81ee15e750224494a993f3198db3e110c2affbe1dbbf6d
+Copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Copyright (C) 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C Library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+#   License along with the GNU C Library; if not, write to the Free
+File: ./lib/glob.c
+Hash: f71e836c564095b672ee61d58fa2acf0272842c03360d1642e7ada6d132305a0
+Copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Copyright (C) 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C Library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+File: ./lib/glob.in.h
+Hash: 6064b1858ef6f12b46d80c41a6c8e25567a40c42ea0a9e7712fcbf75d7d1b499
+Copyright: 2005-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* glob.h -- Find a path matching a pattern.
+#
+#   Copyright (C) 2005-2007 Free Software Foundation, Inc.
+#
+#   Written by Derek Price <derek@ximbiot.com> & Paul Eggert <eggert@CS.UCLA.EDU>
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/glthread/cond.c
+Hash: d5641ae46998e1a8654c5e3549b9c7b3db1d3ca85dd8fe7f311bc8e674cb71e2
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Condition variables for multithreading.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/glthread/cond.h
+Hash: b3332b7fa3f32abab59fe03fbc119d02861b28da6534ce9ad1f3469f070f0971
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Condition variables for multithreading.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/glthread/lock.c
+Hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Locking in multithreaded situations.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/glthread/lock.h
+Hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Locking in multithreaded situations.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/glthread/thread.c
+Hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Creating and controlling threads.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/glthread/thread.h
+Hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Creating and controlling threads.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/glthread/threadlib.c
+Hash: 2294600f29fbe5bce62a905bfe009f89a1c37bd29adcd4b57528e33d3e793a06
+Copyright: 2005-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Multithreading primitives.
+#   Copyright (C) 2005-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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/glthread/tls.c
+Hash: 23dde3cdce3671ccb6ea2e6d89bad99e9b6be9e40ad0295a2bc4025aa4e99f07
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Thread-local storage in multithreaded situations.
+#   Copyright (C) 2005-2008 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/glthread/tls.h
+Hash: ed954c215d967d813727cef3ec96b920dbfecedb4774907236526505e9fc97ac
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Thread-local storage in multithreaded situations.
+#   Copyright (C) 2005, 2007-2008 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/glthread/yield.h
+Hash: 2bcbee6893754730a99361ac72c8b8af2bcb514f7ee153772ff69c10a6ad7ea7
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Yielding the processor to other threads and processes.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/group-member.c
+Hash: 8474fc86e2ee602d1afb18ec7ebbae7f9f83d113d63848cfb4df91f6b741bbad
+Copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* group-member.c -- determine whether group id is in calling user's group list
+#
+#   Copyright (C) 1994, 1997, 1998, 2003, 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
+#   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: ./lib/group-member.h
+Hash: 563dcdfc1c58f40bf17d5ab635d790c0c7844c61ccd6e496de34fa33a2b3dd40
+Copyright: 1994, 1997, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Determine whether group id is in calling user's group list.
+#
+#   Copyright (C) 1994, 1997, 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
+#   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: ./lib/hard-locale.c
+Hash: ac46d3e77162a575cb9cd0c05179c4a69489214f6bc3c02f037007dfca33d5eb
+Copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* hard-locale.c -- Determine whether a locale is hard.
+#
+#   Copyright (C) 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 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: ./lib/hard-locale.h
+Hash: ecaf6cfa27e7cf1f1d6352bb186bc8e4e65b5fdfcb09c13e99ef463705a8fb0c
+Copyright: 1999, 2003, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Determine whether a locale is hard.
+#
+#   Copyright (C) 1999, 2003, 2004 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/hash-pjw.c
+Hash: b468ec2f4a022e97eaf348f80c034c2e2e60123e1ac7e7616870d776d32f223d
+Copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* hash-pjw.c -- compute a hash value from a NUL-terminated string.
+#
+#   Copyright (C) 2001, 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
+#   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: ./lib/hash-pjw.h
+Hash: 102a798ca5da9f9351c39aa2c91082bf9d774f1a330d81b924966f58543eed81
+Copyright: 2001, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* hash-pjw.h -- declaration for a simple hash function
+#   Copyright (C) 2001, 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
+#   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/hash-triple.c
+Hash: fbf36f90dc1c8954ed95b4cccf669147164280573695a4286b79f36dc4c1c4ec
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Hash functions for file-related triples: name, device, inode.
+#   Copyright (C) 2007 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/hash-triple.h
+Hash: 96088774b989d1fc41e81f6377fbe2c1a17baec684be47bbca7ec9a7c0071c04
+Copyright:
+License:
+#Header:
+##ifndef HASH_TRIPLE_H
+##define HASH_TRIPLE_H
+#
+##include <sys/types.h>
+##include <sys/stat.h>
+##include <stdbool.h>
+#
+#/* Describe a just-created or just-renamed destination file.  */
+#struct F_triple
+#{
+#  char *name;
+#  ino_t st_ino;
+#  dev_t st_dev;
+#};
+File: ./lib/hash.c
+Hash: 4062f069a5ed949dfecf5ed42bddd98a48a5090946d9b54d800d6fa02c4c611d
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* hash - hashing table processing.
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007,
+#   2009 Free Software Foundation, Inc.
+#
+#   Written by Jim Meyering, 1992.
+#
+#   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
+File: ./lib/hash.h
+Hash: f6f040c23d292aacf272c2311ed2e73b4e442125219242180ca61b8a8b8a01c1
+Copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* hash - hashing table processing.
+#   Copyright (C) 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
+#   Written by Jim Meyering <meyering@ascend.com>, 1998.
+#
+#   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: ./lib/hmac-md5.c
+Hash: ed5bd8c5068d05ebc413d1374482c55577681191971dbfd83a866beb78da5152
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* hmac-md5.c -- hashed message authentication codes
+#   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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/hmac-sha1.c
+Hash: 4bf9541934465ef6d67baa91aceb2287bc67777ed6f7c25c0952c43c6ea464a8
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* hmac-sha1.c -- hashed message authentication codes
+#   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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/hmac.h
+Hash: 567a64cdb7bc0339a02d4df869ded8aab7a23849fbd9e981af8a9a9acfa0d215
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* hmac.h -- hashed message authentication codes
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/human.c
+Hash: e32265ab4d043a7abcb8f615e2cc58a500928f0421d37ecc9d774895580c1e4d
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* human.c -- print human readable file size
+#
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+#   2005, 2006, 2007 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: ./lib/human.h
+Hash: 9cecd9075608ba01827d4b74ea741b74eeb0b933f1a8850b7163cbfefaeaf456
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* human.h -- print human readable file size
+#
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+#   2005, 2006, 2007 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: ./lib/i-ring.c
+Hash: 04cc3226eee4b74df051e43d1b1131567b9837369d3dd9f02a53ebc685f1607d
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* a simple ring buffer
+#   Copyright (C) 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 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/i-ring.h
+Hash: 83d5e547a1b2282a81722d24d3fd7ab460d6d5d9062532235e0030df6de1bdb2
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* definitions for a simple ring buffer
+#   Copyright (C) 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 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/iconv.c
+Hash: 3059e46d2d2c44be2ae300d27f485ee07d544f254865f96ebf86dea813b4fffa
+Copyright: 1999-2001, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Character set conversion.
+#   Copyright (C) 1999-2001, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/iconv.in.h
+Hash: a0c00abb098262610f94109af9bc3bc9f27219dd9f3169ad081a47cd9228d1ca
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A GNU-like <iconv.h>.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/iconv_close.c
+Hash: 4871e1d8a40deb9c674779c24cf93e04b326ab61be8bcb4cc8e739d22ba70961
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Character set conversion.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/iconv_open-aix.gperf
+Hash: 6da2acfc8d64cb160d117fcf2ae6ff0c1074e75e98ec00cebcbcd25c91ff6c71
+Copyright:
+License:
+#Header:
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On AIX 5.1, look in /usr/lib/nls/loc/uconvTable.
+#ISO-8859-1, "ISO8859-1"
+#ISO-8859-2, "ISO8859-2"
+#ISO-8859-3, "ISO8859-3"
+File: ./lib/iconv_open-hpux.gperf
+Hash: 1af956e948c4e74ae425bc40a8df179820746ac4407e809a8c2c83971c8e0f6f
+Copyright:
+License:
+#Header:
+#struct mapping { int standard_name; const char vendor_name[9 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On HP-UX 11.11, look in /usr/lib/nls/iconv.
+#ISO-8859-1, "iso88591"
+#ISO-8859-2, "iso88592"
+#ISO-8859-5, "iso88595"
+File: ./lib/iconv_open-irix.gperf
+Hash: 828615fa97c1771502ef557a7aef007676e378822a93f914e2b67b5ec3ce3912
+Copyright:
+License:
+#Header:
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On IRIX 6.5, look in /usr/lib/iconv and /usr/lib/international/encodings.
+#ISO-8859-1, "ISO8859-1"
+#ISO-8859-2, "ISO8859-2"
+#ISO-8859-3, "ISO8859-3"
+File: ./lib/iconv_open-osf.gperf
+Hash: 2c9f609f72f0c386bfbcac0e2f65cd6624a1279429fae6d38e4c2fb91bb4fa2b
+Copyright:
+License:
+#Header:
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On OSF/1 5.1, look in /usr/lib/nls/loc/iconv.
+#ISO-8859-1, "ISO8859-1"
+#ISO-8859-2, "ISO8859-2"
+#ISO-8859-3, "ISO8859-3"
+File: ./lib/iconv_open-solaris.gperf
+Hash: 855843d24b44701480c504188b9c91b3b602d6c134e3b450cd8573fd92b35ca6
+Copyright:
+License:
+#Header:
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On Solaris 10, look in the "iconv -l" output. Some aliases are advertised but
+## not actually supported by the iconv() function and by the 'iconv' program.
+## For example:
+##   $ echo abc | iconv -f 646 -t ISO-8859-1
+File: ./lib/iconv_open.c
+Hash: 9ed1da2147b3e675bbd6775a42ab67d25e2fe781f6cdf15eaab5c231273ff0e7
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Character set conversion.
+#   Copyright (C) 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/iconveh.h
+Hash: 67e4aaef11864ffbdc1e1f005051bea04babd77da24011ef95dbb4d36320570e
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Character set conversion handler type.
+#   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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: ./lib/idcache.c
+Hash: b9013a2865d4a3daaca3b55f2be4ed9e3a20a075a05ea60d26ea660978090977
+Copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007 Free Software Foundation, Inc.
+License: 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:
+#/* idcache.c -- map user and group IDs, cached for speed
+#
+#   Copyright (C) 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007
+#   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: ./lib/idcache.h
+Hash: be4efe8ffdf2e8d49697677451ff6b5db99c836286bace3d23e00fe57cf35725
+Copyright:
+License:
+#Header:
+##ifndef IDCACHE_H
+## define IDCACHE_H 1
+#
+## include <sys/types.h>
+#
+#extern char *getuser (uid_t uid);
+#extern char *getgroup (gid_t gid);
+#extern uid_t *getuidbyname (const char *user);
+#extern gid_t *getgidbyname (const char *group);
+#
+##endif
+File: ./lib/idpriv-drop.c
+Hash: 7f9a23470304193f0c1f172af0a8809eabc7b87a17c08a904e03e6f0e23c4412
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Dropping uid/gid privileges of the current process permanently.
+#   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/idpriv-droptemp.c
+Hash: 489bb045e6211eb0d6389cfc83518e2fe2ddc45fe2c192956d5403520ab12454
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Dropping uid/gid privileges of the current process temporarily.
+#   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/idpriv.h
+Hash: 46f34c0a8796bc8842508928d2398c9e0348051b305656e2e8a6b0a7b6f16b85
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Dropping uid/gid privileges of the current process.
+#   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/ignore-value.h
+Hash: b844f7425a0066e987565375e711d4932b9f502ff6f149a93c5ba9120c99ea63
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* ignore a function return without a compiler warning
+#
+#   Copyright (C) 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,
+#   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: ./lib/imaxabs.c
+Hash: 4c3cd71956269b0c624236e9f02355a8ab08d726ee6663e731a88cb79a85330f
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* imaxabs() function: absolute value of 'intmax_t'.
+#   Copyright (C) 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 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/imaxdiv.c
+Hash: 1c1e3f382e0b77378c6c8f9632d7c4635f390115c0897a74b6b7b22a3ac34be7
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* imaxdiv() function: division of 'intmax_t'.
+#   Copyright (C) 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 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/imaxtostr.c
+Hash: c5ccba8a9cadbb5e7d6bcb207caa40a490337d0f938712b6886792bb1c3f750f
+Copyright:
+License:
+#Header:
+##define inttostr imaxtostr
+##define inttype intmax_t
+##include "inttostr.c"
+File: ./lib/inet_ntop.c
+Hash: bb85be451bd6abe2730ae9c900eca3d5dfeb58717a5fe8020fd32c3197efe395
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc. / 1996-1999 by Internet Software Consortium
+License: GPL-2+ and ISC
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software Foundation,
+   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+   
+  Permission to use, copy, modify, and distribute this software for any
+  purpose with or without fee is hereby granted, provided that the above
+  copyright notice and this permission notice appear in all copies.
+  THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
+  ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+  OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
+  CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+  PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
+  ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
+  SOFTWARE.
+#Header:
+#/* inet_ntop.c -- convert IPv4 and IPv6 addresses from binary to text form
+#
+#   Copyright (C) 2005, 2006, 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/inet_pton.c
+Hash: 33b53b62f48e6b8843c4109e0cb9632ed41cd3ff07ea81a3842fb24a3d42781e
+Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-3+ and ISC
+   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/>.  */
+  
+  Copyright (c) 1996,1999 by Internet Software Consortium.
+  Permission to use, copy, modify, and distribute this software for any
+  purpose with or without fee is hereby granted, provided that the above
+  copyright notice and this permission notice appear in all copies.
+  THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
+  ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+  OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
+  CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+  PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
+  ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
+  SOFTWARE.
+#Header:
+#/* inet_pton.c -- convert IPv4 and IPv6 addresses from text to binary form
+#
+#   Copyright (C) 2006, 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,
+#   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: ./lib/intprops.h
+Hash: 9e2808fa7e1039a775f0131499ed427895f2ae4376bf394d44e98dc59d256c3b
+Copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* intprops.h -- properties of integer types
+#
+#   Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/inttostr.c
+Hash: 1890559866d6095b73e83459b5eaca3ea71812c130099e512534096ef240c29e
+Copyright: 2001, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* inttostr.c -- convert integers to printable strings
+#
+#   Copyright (C) 2001, 2006, 2008 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
+File: ./lib/inttostr.h
+Hash: 7f7f2820aac6266245de58217005c72002285153e793b1bdbdbab45aea9b2234
+Copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* inttostr.h -- convert integers to printable strings
+#
+#   Copyright (C) 2001, 2002, 2003, 2004, 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
+#   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: ./lib/inttypes.in.h
+Hash: b572e765fe79d49fffbc38520ba9a41cf3b650f9078db83da161ddf1bd81d03d
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Paul Eggert, Bruno Haible, Derek Price.
+#   This file is part of gnulib.
+#
+#   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: ./lib/ioctl.c
+Hash: a838bb30b06340f3dd9a82218a003ea0bd38e4312c6342ae7f20c6bc1fef878b
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* ioctl.c --- wrappers for Windows ioctl function
+#
+#   Copyright (C) 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,
+#   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: ./lib/isapipe.c
+Hash: 457e1ad81d87c14336cc33a66c0a6470db91a5d315e83811d98e82aab1dfe238
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test whether a file descriptor is a pipe.
+#
+#   Copyright (C) 2006, 2008 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
+File: ./lib/isapipe.h
+Hash: 1e08bd60adc2a94f785eb57858cc60eee319d0250d409627b746953c9778a34e
+Copyright:
+License:
+#Header:
+#/* Whether pipes are FIFOs; -1 if not known.  */
+##ifndef HAVE_FIFO_PIPES
+## define HAVE_FIFO_PIPES (-1)
+##endif
+#
+#int isapipe (int fd);
+File: ./lib/isdir.c
+Hash: 03760bca801b4b55e9e0a1e0cf3b2df572ad1dc4a10cceac16254afd692ad1f2
+Copyright: 1990, 1998, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* isdir.c -- determine whether a directory exists
+#
+#   Copyright (C) 1990, 1998, 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 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: ./lib/isfinite.c
+Hash: 040962d83f2dc48a4f86e204594272a3a1345da3bf72f77a0141696c2e67670d
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Test for finite value (zero, subnormal, or normal, and not infinite or NaN).
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/isinf.c
+Hash: 8b36f7949b786a5b398b697020f0bae0094e677bc8237320acdf88dd784c4f27
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Test for positive or negative infinity.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/isnan.c
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 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/isnand-nolibm.h
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 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/isnand.c
+Hash: 130313c72e69a6238a9736af813940f148965be7cd35509e7a7db5af4b502737
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2008 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/isnanf-nolibm.h
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 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/isnanf.c
+Hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007 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/isnanl-nolibm.h
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 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/isnanl.c
+Hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007 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/javacomp.c
+Hash: 5510a586bdbed690c0f58f407e86f128dd19f69e30f7b763fc80645dfdb5fdab
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Compile a Java program.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/javacomp.h
+Hash: 7796f276d24731ee6d3c7f5294adfe566e8c046007020386e7f14820b6e0719a
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Compile a Java program.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/javaexec.c
+Hash: d5c2f1711f1f3dd4c31a2579a9a93a3f361c1b1b03e78713f1935e5c360e3e01
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Execute a Java program.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/javaexec.h
+Hash: fdd928324e8ecf1d026624ada4377dc47be047d3e38b42a0456e1dec3b50a51b
+Copyright: 2001-2002 Free Software Foundation, Inc.
+License: 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:
+#/* Execute a Java program.
+#   Copyright (C) 2001-2002 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/javaversion.c
+Hash: fdead42e957d45aad5a32be39fc000b965f101ba1255624f9b54cccc347dab26
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Determine the Java version supported by javaexec.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/javaversion.class
+Hash: 2bee26b0b761a52a418a6488d94be8af824a30a3f87f50cb8d35f4b7a54a13a6
+Copyright:
+License:
+File: ./lib/javaversion.h
+Hash: 29a446b837cf48407147af943a7093bdb31bb10c00fc791eab8870a4acc0602e
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Determine the Java version supported by javaexec.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/javaversion.java
+Hash: a97b370d2fde64e69acc4e2896d1da82e09cbf28058f4565b2f61d6433088d72
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Show the Java version.
+# * Copyright (C) 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 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/lchown.c
+Hash: 953d98a6f7fe6ee1359d3d4946aa47ae6596a61298964fd3c03b359f351f0338
+Copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Provide a stub lchown function for systems that lack it.
+#
+#   Copyright (C) 1998, 1999, 2002, 2004, 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: ./lib/ldexpl.c
+Hash: c540324ac2ca2517b41b719aad57bf1773ee104baf901c03daa8bbf5208d3e3c
+Copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Emulation for ldexpl.
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+File: ./lib/linebuffer.c
+Hash: d85578cc459795d236f48e817ded298d632fa6890aac27376aecf0c47a856fa8
+Copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* linebuffer.c -- read arbitrarily long lines
+#
+#   Copyright (C) 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007
+#   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: ./lib/linebuffer.h
+Hash: 34656b0c4b8d689a203a09d7b36721f38b76bcb871571a8c4b0d923840a9fe58
+Copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* linebuffer.h -- declarations for reading arbitrarily long lines
+#
+#   Copyright (C) 1986, 1991, 1998, 1999, 2002, 2003, 2007 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: ./lib/link.c
+Hash: c0b30ef6d1e001b2928d2bb394b5762a98b6b6ede802eaa83c1319c2e03dce1e
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Emulate link on platforms that lack it, namely native Windows platforms.
+#
+#   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, 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: ./lib/listen.c
+Hash: c6134f3762f75b62f22278b0c4dd5119a598c12d4e5c20957e32c6cd33314666
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* listen.c --- wrappers for Windows listen function
+#
+#   Copyright (C) 2008 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
+File: ./lib/localcharset.c
+Hash: 1548af2400728ae263f6a2bb0118e7778437b3639878649dc0257a527e4e0629
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Determine a canonical name for the current locale's character encoding.
+#
+#   Copyright (C) 2000-2006, 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/localcharset.h
+Hash: 119c2de543436735fe784154d840a118ae31756c5fbbbb7f30b1cd3e2b54616a
+Copyright: 2000-2003 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Determine a canonical name for the current locale's character encoding.
+#   Copyright (C) 2000-2003 Free Software Foundation, Inc.
+#   This file is part of the GNU CHARSET Library.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/locale.in.h
+Hash: 208f60fb61b19efcd077917af5a61aad7ac1210ed158ba35d67c172ead537649
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* A POSIX <locale.h>.
+#   Copyright (C) 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.
+#
+#   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/localename.c
+Hash: f6fbb8df7f52b6eafa7552a49d6e5eee9816b690a0d89c2b03462044652914d2
+Copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc.
+License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
+#Header:
+#/* Determine name of the currently selected locale.
+#   Copyright (C) 1995-1999, 2000-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU Library General Public License as published
+#   by the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+#   License along with this program; if not, write to the Free Software
+File: ./lib/localename.h
+Hash: 6a79383773a37a8b6886c6d119e3890f98db4a414a013cc80eac6449b8e5fe4b
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
+#Header:
+#/* Determine name of the currently selected locale.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU Library General Public License as published
+#   by the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+#   License along with this program; if not, write to the Free Software
+File: ./lib/logl.c
+Hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+License: 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:
+#/* Copyright 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+#
+#   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/long-options.c
+Hash: 4365412d9fe5d790d7ad8e3e03649fe0e872a7e666491c956fbbdaded0030cc0
+Copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Utility to accept --help and --version options as unobtrusively as possible.
+#
+#   Copyright (C) 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 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
+#   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: ./lib/long-options.h
+Hash: 4f9add7cfbe1ff66d2f74e25eefc73829aef3fb75c1d70eb1760a07c288b5a31
+Copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* long-options.h -- declaration for --help- and --version-handling function.
+#   Copyright (C) 1993, 1994, 1998, 1999, 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
+#   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/lseek.c
+Hash: 02f75754750c8263d25c4282d7b6167a2d40d0c8f8cf8a952486fc65dc812321
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* An lseek() function that detects pipes.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/lstat.c
+Hash: 345ec037534ce5c96f9599c78e87c36be1fee4649a8ec187168445e6bb2d1cc7
+Copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Work around a bug of lstat on some systems
+#
+#   Copyright (C) 1997-1999, 2000-2006, 2008 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
+File: ./lib/malloc.c
+Hash: 7754ece2820e7ddc5a364b370c2560187d53c00f4695409abd04ecedeff2aa94
+Copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* malloc() function that is glibc compatible.
+#
+#   Copyright (C) 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/malloca.c
+Hash: e0f9431b8801560a2ec9fecb1893f9c1443bd37ac24a4785196d0c03321f52da
+Copyright: 2003, 2006-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Safe automatic memory allocation.
+#   Copyright (C) 2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/malloca.h
+Hash: 56c3717d1d0f5f3cbdf6f2b581ad097dd47935c459a239db9ca84db9fd339f1c
+Copyright: 2003-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Safe automatic memory allocation.
+#   Copyright (C) 2003-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/malloca.valgrind
+Hash: 93322a37edfb58a01aa98fa0cc0c4887861c816c873681286b20873bee36e170
+Copyright:
+License:
+#Header:
+## Suppress a valgrind message about use of uninitialized memory in freea().
+## This use is OK because it provides only a speedup.
+#{
+#    freea
+#    Memcheck:Cond
+#    fun:freea
+#}
+File: ./lib/math.in.h
+Hash: 1d71d3fe653ddb331f364aadd7e0db6e31fc0a63300b049925c39c9120777288
+Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* A GNU-like <math.h>.
+#
+#   Copyright (C) 2002-2003, 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.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/mbchar.c
+Hash: 1b800acccc08b7bf9876ec834e26931f8cbc2ca5f69d788879010a196026a89a
+Copyright: 2001, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* 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
+#   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/mbchar.h
+Hash: 419eac128ee022faceedcbce731388308f72bf42d570dcc74d67721645d9ad75
+Copyright: 2001, 2005-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Multibyte character data type.
+#   Copyright (C) 2001, 2005-2007 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/mbfile.h
+Hash: f148ab5a88b3ab7847530f40507a08b257c44574da3e3824feca0501fc1ff87d
+Copyright: 2001, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Multibyte character I/O: macros for multi-byte encodings.
+#   Copyright (C) 2001, 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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/mbiter.h
+Hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+Copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Iterating through multibyte strings: macros for multi-byte encodings.
+#   Copyright (C) 2001, 2005, 2007 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/mbmemcasecmp.c
+Hash: f5ab326ce04660d7c088d2589429beeb7310d839bd0559a3a37f42497870f830
+Copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Compare two memory areas with possibly different lengths, case-insensitive.
+#   Copyright (C) 1998-1999, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009,
+#   based on earlier glibc code.
+#
+#   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: ./lib/mbmemcasecmp.h
+Hash: 85c672759815348bfc4928739797c22787d4f55386d3bb5effd4685cd12f7496
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare two memory areas with possibly different lengths, case-insensitive.
+#   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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/mbmemcasecoll.c
+Hash: cab139308f71e0434b70aeaf0f3dbed1381ead7271c0d992e00b93438c1d6499
+Copyright: 2001, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale-specific case-ignoring memory comparison.
+#   Copyright (C) 2001, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/mbmemcasecoll.h
+Hash: 746e4714316afcd2eb3d13bb38d3c2776496e6f2f77b745a1d694e53a6f74a61
+Copyright: 2001, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale-specific case-ignoring memory comparison.
+#   Copyright (C) 2001, 2009 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/mbrlen.c
+Hash: 34f5f51edaf35ee0284c34df8f8288a04625716cf5817d6eefc9c8dad9b06473
+Copyright: 1999-2000, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Recognize multibyte character.
+#   Copyright (C) 1999-2000, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/mbrtowc.c
+Hash: 76ee0ca75066f435d593cbebd63b7abab83e289e38af89d03f5fbba1a1b9ca8a
+Copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Convert multibyte character to wide character.
+#   Copyright (C) 1999-2002, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/mbscasecmp.c
+Hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005,
+#   based on earlier glibc code.
+#
+#   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: ./lib/mbscasestr.c
+Hash: 067b762668e77d779287cb9e16e0d9d0d54425834153a41df667fe96abe6d5ea
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Case-insensitive searching in a string.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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: ./lib/mbschr.c
+Hash: 0400e89b869bf824f778a6860325c96dbf6fc811f1872770a0bd662a5af0f847
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching a string for a character.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbscspn.c
+Hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching a string for a character among a given set of characters.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbsinit.c
+Hash: 295fe542f5ad6e27ca5816217b9805d2428ea1aabd57962bdb2d3306a6c769fb
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test for initial conversion state.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/mbslen.c
+Hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Counting the multibyte characters in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbsncasecmp.c
+Hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005,
+#   based on earlier glibc code.
+#
+#   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: ./lib/mbsnlen.c
+Hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Counting the multibyte characters in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbsnrtowcs.c
+Hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convert string to wide string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/mbspbrk.c
+Hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching a string for a character among a given set of characters.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbspcasecmp.c
+Hash: 07f7fe969a7c752b56b078f855dce95806287b22873440d798b831f5629d3589
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbsrchr.c
+Hash: aae99e9b396b908d7c7fcd21ce6bcb2e4aaef1810a36771e91c2436918d26978
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching a string for the last occurrence of a character.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbsrtowcs-state.c
+Hash: c1ee8e5f9ff539152510bee610b85b5129447259bd0740852310fbe0aa05dcfb
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Convert string to wide string.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/mbsrtowcs.c
+Hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convert string to wide string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/mbssep.c
+Hash: e91f2687c32b2d7fbb211e0e114d331fff93022b0c657cc6b2a6a934cb3b67b4
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Tokenizing a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbsspn.c
+Hash: 96a736a43629e5ae2f508a50e854f65078635e6552ac998e4b72d981b4de9333
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching a string for a character outside a given set of characters.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbsstr.c
+Hash: 05f8fd03123cf70b50e8a4ca02b2bef23c41c488ce1f33530c0e5b912b20898c
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching in a string.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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: ./lib/mbstok_r.c
+Hash: 1f180b2d8a6c65bfff77cd72bec0837f16a2a39411db702acaeeddcd0797a7cf
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Tokenizing a string.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/mbswidth.c
+Hash: 20f724a9c2c1b2039071c36cc6fa2828284e3561211957e7800e0275df016a16
+Copyright: 2000-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Determine the number of screen columns needed for a string.
+#   Copyright (C) 2000-2008 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/mbswidth.h
+Hash: f66eede184bcac83a9639c243acc2e81ac0b5c2ce302a8ef776ce3896ab69682
+Copyright: 2000-2004, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Determine the number of screen columns needed for a string.
+#   Copyright (C) 2000-2004, 2007 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/mbuiter.h
+Hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+Copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Iterating through multibyte strings: macros for multi-byte encodings.
+#   Copyright (C) 2001, 2005, 2007 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/md2.c
+Hash: 04204819baa32da88084b2206ea067ea6a78cde426759ad1eaf12598747f9715
+Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Functions to compute MD2 message digest of files or memory blocks.
+#   according to the definition of MD2 in RFC 1319 from April 1992.
+#   Copyright (C) 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+#   Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/md2.h
+Hash: 1635bb2eff1d6c4202462a1493aa8fa1122f0b8c628f9d5e1a1bd1b959fdab11
+Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Declarations of functions and data types used for MD2 sum
+#   library functions.
+#   Copyright (C) 2000, 2001, 2003, 2005, 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 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/md4.c
+Hash: 0862a8a513fa370cc94a968cac68ab365d1c9a3648137d2af8aaf5c719a4b737
+Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Functions to compute MD4 message digest of files or memory blocks.
+#   according to the definition of MD4 in RFC 1320 from April 1992.
+#   Copyright (C) 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+#   Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/md4.h
+Hash: dcc57d0ac574c78b51a7293f7ad573d8a4c524cf2988b283d86fc5ff1b5f57bf
+Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Declarations of functions and data types used for MD4 sum
+#   library functions.
+#   Copyright (C) 2000, 2001, 2003, 2005, 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 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/md5.c
+Hash: ffa2dd5235fc5bc1cff6f871fca1f3804da0f74bbdcfa48050479b24225ac1e6
+Copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Functions to compute MD5 message digest of files or memory blocks.
+#   according to the definition of MD5 in RFC 1321 from April 1992.
+#   Copyright (C) 1995,1996,1997,1999,2000,2001,2005,2006,2008
+#      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 it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/md5.h
+Hash: e0f5a2253099054a9a71d12e1df625a6f7afa5bed4c53400f687e1b319bd0f95
+Copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Declaration of functions and data types used for MD5 sum computing
+#   library functions.
+#   Copyright (C) 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009
+#      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 it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/memcasecmp.c
+Hash: 807b6ac25ddd6d8ae26a583a2ae26a3a1cfb85acd6c8c70fd81e0dcbb30b7905
+Copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Case-insensitive buffer comparator.
+#   Copyright (C) 1996, 1997, 2000, 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
+#   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/memcasecmp.h
+Hash: 18edc330f64fe3fe7683e14bcb89316afede0ebbf8ce49bc0abcd324eaecdf41
+Copyright: 1996, 1998, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Case-insensitive buffer comparator.
+#
+#   Copyright (C) 1996, 1998, 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
+#   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: ./lib/memchr.c
+Hash: 1b3448d898ff7ee9149e469a0d1dfaa91777ad13ac93aeca526c1d7534006686
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
+#   Free Software Foundation, Inc.
+#
+#   Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
+#   with help from Dan Sahlin (dan@sics.se) and
+#   commentary by Jim Blandy (jimb@ai.mit.edu);
+#   adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu),
+#   and implemented by Roland McGrath (roland@ai.mit.edu).
+#
+#NOTE: The canonical source of this file is maintained with the GNU C Library.
+#Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#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 any
+File: ./lib/memchr.valgrind
+Hash: c4d33a28f691c84b723d8efc9fcdf251c64affe0008457a7b2fe246c1493dff7
+Copyright:
+License:
+#Header:
+## Suppress a valgrind message about use of uninitialized memory in memchr().
+## POSIX states that when the character is found, memchr must not read extra
+## bytes in an overestimated length (for example, where memchr is used to
+## implement strnlen).  However, we use a safe word read to provide a speedup.
+#{
+#    memchr-value4
+#    Memcheck:Value4
+#    fun:rpl_memchr
+#}
+#{
+#    memchr-value8
+#    Memcheck:Value8
+#    fun:rpl_memchr
+#}
+File: ./lib/memchr2.c
+Hash: f8a8a07596253d814b66f51a219b27446056819948a185735c326a34032971de
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006,
+#   2008 Free Software Foundation, Inc.
+#
+#   Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
+#   with help from Dan Sahlin (dan@sics.se) and
+#   commentary by Jim Blandy (jimb@ai.mit.edu);
+#   adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu),
+#   and implemented in glibc by Roland McGrath (roland@ai.mit.edu).
+#   Extension to memchr2 implemented by Eric Blake (ebb9@byu.net).
+#
+#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 any
+#later version.
+File: ./lib/memchr2.h
+Hash: 5b2e0321ef5edf4284193b2bb4a6b3837d05ba4d909864b2faea89fa327027c0
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Scan memory for the first of two bytes.
+#   Copyright (C) 2008 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/memchr2.valgrind
+Hash: 44d9292cd45aeb29569397844ca468602c6e200a76dcba52f4f852fd64fab480
+Copyright:
+License:
+#Header:
+## Suppress a valgrind message about use of uninitialized memory in memchr2().
+## Like memchr, it is safe to overestimate the length when the terminator
+## is guaranteed to be found.  In this case, we may end up reading a word
+## that is partially uninitialized, but this use is OK for a speedup.
+#{
+#    memchr2-value4
+#    Memcheck:Value4
+#    fun:memchr2
+#}
+#{
+#    memchr2-value8
+#    Memcheck:Value8
+#    fun:memchr2
+#}
+File: ./lib/memcmp.c
+Hash: 115e253d20ce838f3f9a7b7bdb87ca7bc9c5f1cfb6217d3659c62d22b284250f
+Copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
+#   Foundation, Inc.
+#
+#   Contributed by Torbjorn Granlund (tege@sics.se).
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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 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
+File: ./lib/memcmp2.c
+Hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare two memory areas with possibly different lengths.
+#   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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/memcmp2.h
+Hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare two memory areas with possibly different lengths.
+#   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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/memcoll.c
+Hash: 45afdae44d3da5345c4e1ff5bbbe23a35f6c8f04d1f7913937376f96d3927dd6
+Copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Locale-specific memory comparison.
+#
+#   Copyright (C) 1999, 2002, 2003, 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 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: ./lib/memcoll.h
+Hash: ceebe2fe05b83b4b212dc4dc72283ab2d56ca2e8778bd92fd1867d9df2c2b1ba
+Copyright: 1999, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Locale-specific memory comparison.
+#
+#   Copyright (C) 1999, 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
+#   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: ./lib/memcpy.c
+Hash: e77f76fb0280fc06e306294c9d397a3319c397fa293104c6f3c231c149ae3597
+Copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1995, 1997, 2000, 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
+#   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/memmem.c
+Hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1991,92,93,94,96,97,98,2000,2004,2007,2008 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/memmove.c
+Hash: bbdc865dae97e17c0683fdb3a8eada83f89acfb60003bfa558dc1a7bb63fd59c
+Copyright:
+License:
+#Header:
+#/* memmove.c -- copy memory.
+#   Copy LENGTH bytes from SOURCE to DEST.  Does not null-terminate.
+   In the public domain.
+   By David MacKenzie <djm@gnu.ai.mit.edu>.
+#
+##include <config.h>
+#
+##include <stddef.h>
+#
+#void *
+#memmove (void *dest0, void const *source0, size_t length)
+#{
+#  char *dest = dest0;
+#  char const *source = source0;
+#  if (source < dest)
+File: ./lib/mempcpy.c
+Hash: 162deb5da2eb01183cd1ea3c6c29887ff8f634735322780be17607aa892ec4a5
+Copyright: 2003, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copy memory area and return pointer after last written byte.
+#   Copyright (C) 2003, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/memrchr.c
+Hash: 7df103a286eed4dd6f31836264675378b140d030d4dcbb3e810f24d122227d43
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* memrchr -- find the last occurrence of a byte in a memory block
+#
+#   Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005,
+#   2006, 2007, 2008 Free Software Foundation, Inc.
+#
+#   Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
+#   with help from Dan Sahlin (dan@sics.se) and
+#   commentary by Jim Blandy (jimb@ai.mit.edu);
+#   adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu),
+#   and implemented by Roland McGrath (roland@ai.mit.edu).
+#
+#   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: ./lib/memset.c
+Hash: 40655652ef5140299df50fcd8dbb02a23d78c3961e6078fcf866232c481752b7
+Copyright: 1991, 2003 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* memset.c -- set an area of memory to a given value
+#   Copyright (C) 1991, 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/memxfrm.c
+Hash: 925c125df6e81f5c5be0eee6a767546cf977fc4e55b5712c490cd84f80061da8
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent memory area transformation for comparison.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/memxfrm.h
+Hash: 8fbe3c5f0271469b59387f418cf5a7a39d02a67082c24952d53ad9e12e1ff3f2
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent memory area transformation for comparison.
+#   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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/memxor.c
+Hash: 95bea5a33c7fc7fa109f69789827d4274d5f8f8b0d8ad5e195fcfa3df0838ac5
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* memxor.c -- perform binary exclusive OR operation of two memory blocks.
+#   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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/memxor.h
+Hash: 8b8f42a17c5880f430a23152165a2a48a1d9ce6f523fcc08cf0fa013d207820c
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* memxor.h -- perform binary exclusive OR operation on memory blocks.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/minmax.h
+Hash: fc14ab477958a0d028d651e94f71938ac898148d7a4fb3641065e97ffc0033ac
+Copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* MIN, MAX macros.
+#   Copyright (C) 1995, 1998, 2001, 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
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/mkancesdirs.c
+Hash: fbf7223604ae868a286a8b7782520dcfecf8871450373ce6eddd4231d6987d86
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Make a file's ancestor directories.
+#
+#   Copyright (C) 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 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: ./lib/mkancesdirs.h
+Hash: a956611cade93a9ab7ab7b3a953fd1555ed37d0bf625e985bf66067e1b158431
+Copyright:
+License:
+#Header:
+##include <stddef.h>
+#struct savewd;
+#ptrdiff_t mkancesdirs (char *, struct savewd *,
+#                     int (*) (char const *, char const *, void *), void *);
+File: ./lib/mkdir-p.c
+Hash: cca87ad7e743252b92404f484d9be69bc26ebc17de6d3091edfe804910f54529
+Copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* mkdir-p.c -- Ensure that a directory and its parents exist.
+#
+#   Copyright (C) 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005,
+#   2006, 2007 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: ./lib/mkdir-p.h
+Hash: bf444d5e7cf40b933757ee95b2fb1d8348f6c03d75afbb4b093609ff4cc6d27a
+Copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* mkdir-p.h -- Ensure that a directory and its parents exist.
+#
+#   Copyright (C) 1994, 1995, 1996, 1997, 2000, 2003, 2004, 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
+#   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: ./lib/mkdir.c
+Hash: e036cb236f6cf2b150e76519fa45b1e2d5a887bf7d45803e686f5a302b0f4e66
+Copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* On some systems, mkdir ("foo/", 0700) fails because of the trailing
+#   slash.  On those systems, this wrapper removes the trailing slash.
+#
+#   Copyright (C) 2001, 2003, 2006, 2008 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: ./lib/mkdirat.c
+Hash: e9de0eaf6cda53b633eb6f3b637d1a89e21ee06ea81e2578412a0a1f4f33a0ae
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* fd-relative mkdir
+#   Copyright (C) 2005, 2006, 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/mkdtemp.c
+Hash: 90c1ed532e82f71aea40266d94df8e15d52ef9622ee699ae2a3358ba9e0fa5db
+Copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1999, 2001-2003, 2006-2007, 2009 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
+#   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/mkostemp.c
+Hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#   This file is derived from the one in the GNU C Library.
+#
+#   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/mkstemp-safer.c
+Hash: 5dfad6cc702f2dcd88df092b3ebee11ef4795e45592e03d7f1c7841a9a5e48e2
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke mkstemp, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2006, 2007 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
+File: ./lib/mkstemp.c
+Hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#   This file is derived from the one in the GNU C Library.
+#
+#   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/mktime.c
+Hash: 1a80cec494e14569464c9c913b8d639fde5ca46a2ad8b19c097398be567c3987
+Copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Convert a `struct tm' to a time_t value.
+#   Copyright (C) 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Paul Eggert <eggert@twinsun.com>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/modechange.c
+Hash: 04c294fd66aee3490b759ca54e9bbc039f30063774f91b695f200425413f52cc
+Copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* modechange.c -- file mode manipulation
+#
+#   Copyright (C) 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 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
+#   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: ./lib/modechange.h
+Hash: 9e926e58af501dd9da1d504389fed35d905b66bccc24a4ab3a30e0e2eb6d8d5b
+Copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* modechange.h -- definitions for file mode manipulation
+#
+#   Copyright (C) 1989, 1990, 1997, 2003, 2004, 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
+#   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: ./lib/mountlist.c
+Hash: 8131b2bba35b93115b79375a032a364f5821a6773dbee18aa26a24e896829459
+Copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc.
+License: 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:
+#/* mountlist.c -- return a list of mounted file systems
+#
+#   Copyright (C) 1991, 1992, 1997-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
+File: ./lib/mountlist.h
+Hash: 19c16002f5ad4f33a7ebd8c726e357e18d9a7f2f8ae6b1a42459ecb2eba2e0c8
+Copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* mountlist.h -- declarations for list of mounted file systems
+#
+#   Copyright (C) 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
+#   Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/mpsort.c
+Hash: 754a18c37e339daeaa3129f85d1e11a2e8eb04ce0b9b382d25a02b40dee33112
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Sort a vector of pointers to data.
+#
+#   Copyright (C) 2007 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
+File: ./lib/mpsort.h
+Hash: b88563a5eb4834d0691531bdfead0f4a1c6441fb83fca6b4d49b862ca6d4e651
+Copyright:
+License:
+#Header:
+##include <stddef.h>
+#void mpsort (void const **, size_t, int (*) (void const *, void const *));
+File: ./lib/nanosleep.c
+Hash: 2fb5279d8f37cfd3ec3a500d9127e805131b37d39fa15187a82bfefb3b7fbe77
+Copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Provide a replacement for the POSIX nanosleep function.
+#
+#   Copyright (C) 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 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: ./lib/netdb.in.h
+Hash: 313d83faf1e58b363f56df9abd41c694cc877655a1f383b9c96c52f2b5492090
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide a netdb.h header file for systems lacking it (read: MinGW).
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/netinet_in.in.h
+Hash: ba843c9c4800f24e66a3b94aefe21730afdc0233254175a20b3f503b12b022a1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Substitute for <netinet/in.h>.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/nproc.c
+Hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Detect the number of processors.
+#
+#   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, 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: ./lib/nproc.h
+Hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Detect the number of processors.
+#
+#   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, 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: ./lib/obstack.c
+Hash: c51f2b4012075fb4a6f199dc311d6a80a6da3a59080e65c78ab906d198fa52c8
+Copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* obstack.c - subroutines used implicitly by object stack macros
+#
+#   Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997,
+#   1998, 1999, 2000, 2001, 2002, 2003, 2004, 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
+#   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: ./lib/obstack.h
+Hash: bec03a89fef72b0110d29ed4efaa664fc79fd03132e71c57e2088432a3af65ba
+Copyright: 1988-1994,1996-1999,2003,2004,2005,2006 Free Software Foundation, Inc.
+License: 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:
+#/* obstack.h - object stack macros
+#   Copyright (C) 1988-1994,1996-1999,2003,2004,2005,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
+#   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: ./lib/obstack_printf.c
+Hash: ec3b6ee4cf323b218382e7b0b4c647e67f88d44b9bde87ad0faf1004fa480c69
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Formatted output to obstacks.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/offtostr.c
+Hash: 97beafafd8e31c4c52db5355eb0acef1fa5771aa4b21e8d75e9355494786978b
+Copyright:
+License:
+#Header:
+##define inttostr offtostr
+##define inttype off_t
+##include "inttostr.c"
+File: ./lib/open-safer.c
+Hash: f5c5c83637f90b3f8e7310337390ff817b1c3eb020f5f944b7d2cc04f809f581
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke open, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2006, 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,
+#   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: ./lib/open.c
+Hash: 1700deda821715bdbac72d0da2e09c3ce1dc34279381170e21eab9187e142c63
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Open a descriptor to a file.
+#   Copyright (C) 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.
+#
+#   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/openat-die.c
+Hash: c32e1b799da53de52b5bee09ffcbbe4f2b4b4db28ef45bbcdf0af0346fee99c8
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Report a save- or restore-cwd failure in our openat replacement and then exit.
+#
+#   Copyright (C) 2005, 2006, 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,
+#   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: ./lib/openat-priv.h
+Hash: de3bc79756c38bf4c0d3930bd43e5559159edaff0ee82652ee068d1f3ce3507a
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Internals for openat-like functions.
+#
+#   Copyright (C) 2005, 2006, 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
+File: ./lib/openat-proc.c
+Hash: 5adc0d5b70d50bb5b44d3de2819622c2e2f6ebbb06b868b4013b245d24e772e3
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Create /proc/self/fd-related names for subfiles of open directories.
+#
+#   Copyright (C) 2006, 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
+File: ./lib/openat-safer.c
+Hash: 56934bd9aed0b0823c2ee17a8b46147af53d10daea72b9ca7c1a132ceead70d2
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke openat, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2006, 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,
+#   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: ./lib/openat.c
+Hash: 2cc87825fb5511fc2a3e5e700dceb67002be17775fa619eb19d96a15d8b5be2a
+Copyright: 2004-2009 Free Software Foundation, Inc.
+License: 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:
+#/* provide a replacement openat function
+#   Copyright (C) 2004-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/openat.h
+Hash: aef33cd705f809a57238d48fd05fb4491c97687b372cecf7c69341cdcab2f654
+Copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* provide a replacement openat function
+#   Copyright (C) 2004-2006, 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,
+#   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/opendir-safer.c
+Hash: 2429dbf23e1213eb581af6196c671f69f35fed4b342c7fd3fff0d504356d93a5
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke opendir, but avoid some glitches.
+#
+#   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
+File: ./lib/pagealign_alloc.c
+Hash: 556403e976c41313f9325e500d34e5165c9f3173eeb22c7d1e80481b40a08425
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Memory allocation aligned to system page boundaries.
+#
+#   Copyright (C) 2005, 2006, 2007 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
+File: ./lib/pagealign_alloc.h
+Hash: eb99842218a16ee4d0c565f1ad99bb5143f4ee3a77e8dcce80a0bd95cf085cd5
+Copyright: 2005, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Memory allocation aligned to system page boundaries.
+#
+#   Copyright (C) 2005, 2008 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
+File: ./lib/parse-duration.c
+Hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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 a time duration and return a seconds count
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruce Korb <bkorb@gnu.org>, 2008.
+#
+#   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: ./lib/parse-duration.h
+Hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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 a time duration and return a seconds count
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruce Korb <bkorb@gnu.org>, 2008.
+#
+#   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: ./lib/pathmax.h
+Hash: c643310e04770fbcc160973a5552561f7c122f2a5e6a61adba5b1f6f6073596d
+Copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Define PATH_MAX somehow.  Requires sys/types.h.
+#   Copyright (C) 1992, 1999, 2001, 2003, 2005, 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/perror.c
+Hash: 9a22ceeb839da7e1b91e96f5d0812174c06aa7deb3f1312c1b9d137bbe191602
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Print a message describing error code.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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: ./lib/physmem.c
+Hash: b06bd14f93155ac98d9a92df716ba22a1fa39c63b510a32beb9c06627c183012
+Copyright: 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Calculate the size of physical memory.
+#
+#   Copyright (C) 2000, 2001, 2003, 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
+#   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: ./lib/physmem.h
+Hash: 3a6cbe3d952eab59a5cd17b28b2b869ebdc9b8f19c1eded770524ea7c863270a
+Copyright: 2000, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Calculate the size of physical memory.
+#
+#   Copyright (C) 2000, 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
+#   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: ./lib/pipe-filter-aux.h
+Hash: dd7eec8d6ec8c14b97efee5589cb013a0d4bf682e94019d235b35fead5b42d07
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Auxiliary code for filtering of data through a subprocess.
+#   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009.
+#
+#   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: ./lib/pipe-filter-gi.c
+Hash: 7b798dfae0edb799145d56afbab5ad04a9af74dfbe6bb5614fcf4f5357e51aea
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Filtering of data through a subprocess.
+#   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009,
+#   and Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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: ./lib/pipe-filter-ii.c
+Hash: 9049b5c7b4ed08a8c9dd5a090c5f0632c4f769691c9d0bc3abafd2ed205c449a
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Filtering of data through a subprocess.
+#   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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: ./lib/pipe-filter.h
+Hash: cb4091cc5532a11d2184725fbafb495b5dc0e0e99d888529d15ec9f6ac8db90b
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Filtering of data through a subprocess.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009,
+#   and Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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: ./lib/pipe-safer.c
+Hash: 8b0ecacdeacd13de295a1575a525fb82a56a4a6315081874b0c32cf2cfe958e0
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke pipe, but avoid some glitches.
+#   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
+#   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/pipe.c
+Hash: 4bad855b30e4735483d65e1b608087804110d24a67ba16cf7ed987c5f5bcd5c2
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Creation of subprocesses, communicating via pipes.
+#   Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/pipe.h
+Hash: 8e9240d53e76426a4087f6a35ebd4b865be3105da821c9139043bf9232c4c171
+Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Creation of subprocesses, communicating via pipes.
+#   Copyright (C) 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/pipe2.c
+Hash: 61562647025e035a2e08fcbba935557f0ce2b3a273ca93855a3184d523bdc97f
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Create a pipe, with specific opening flags.
+#   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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/poll.c
+Hash: 033d3d5afa8977c21203f543b7bac8bc53f51acf846088848087638d72ff8bf0
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Emulation for poll(2)
+#   Contributed by Paolo Bonzini.
+#
+#   Copyright 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+File: ./lib/poll.in.h
+Hash: 75e680c286d79502b2c414e7b8929c31247c980612c852936f7ca1d1593362b8
+Copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Header for poll(2) emulation
+#   Contributed by Paolo Bonzini.
+#
+#   Copyright 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+File: ./lib/popen-safer.c
+Hash: da9c884b0efa4edd9844b332c14b060d0cab98c6049f38731a3d590b89a00d06
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke popen, but avoid some glitches.
+#
+#   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
+File: ./lib/popen.c
+Hash: d7c25fe6b43efdd98d5042c3424eba51cd53ea80bb948f9a92a099fb8c02142c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Open a stream to a sub-process.
+#   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: 4ba1c7c3e6714bb668acbece4b919082141b0a2736fb94262f2eb8e2598235d5
+Copyright: 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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 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: ./lib/posixtm.h
+Hash: 942d45b6994556544668951294f7b94af106ac8b0b2ce064003998679266d698
+Copyright: 1998, 2003, 2005, 2007 Free Software Foundation, Inc.
+License: 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) 1998, 2003, 2005, 2007 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
+File: ./lib/posixver.c
+Hash: f931363ed3fde9bde1676789900417a39c317a4fd6dd869b69d1dbe7ff3a035a
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Which POSIX version to conform to, for utilities.
+#
+#   Copyright (C) 2002, 2003, 2004, 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
+#   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: ./lib/posixver.h
+Hash: 36d1d0fffe2504bfc87051722c32887652d6719a80a23e93cc01daee61006134
+Copyright:
+License:
+#Header:
+#int posix2_version (void);
+File: ./lib/printf-args.c
+Hash: 12bb86c9307ecf947c3e487e6bf53531b56f83f43d5e9babf59a2a57cde92c7c
+Copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/printf-args.h
+Hash: cf140b5cb22fa0718dbc5a41c94ab6327a7a447612d93e4b6c51016418701bc8
+Copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/printf-frexp.c
+Hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Split a double into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 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/printf-frexp.h
+Hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Split a double into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 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/printf-frexpl.c
+Hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Split a 'long double' into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 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/printf-frexpl.h
+Hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Split a 'long double' into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 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/printf-parse.c
+Hash: e87d67950b9b8fd0411ed7bd3201b3ae9eb97549cf5d6255c2f6065e46d1aff1
+Copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/printf-parse.h
+Hash: 1cbba74b564ba38b983e35311a8dcb098229112ee464a2940dae6abba3a12247
+Copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Parse printf format string.
+#   Copyright (C) 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/printf.c
+Hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a stream.
+#   Copyright (C) 2007 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/priv-set.c
+Hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Query, remove, or restore a Solaris privilege.
+#
+#   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
+File: ./lib/priv-set.h
+Hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Query, remove, or restore a Solaris privilege.
+#
+#   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
+File: ./lib/progname.c
+Hash: 92661819f28e9fd0cb1b6c24c52d6f96e2746bf9eb417cf6cd6fb92a009d0fbb
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Program name management.
+#   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/progname.h
+Hash: fb156ffb4593024e0b50a3bfa0f8e0c9d280dfe5cc173a7c2b3796e892b3243b
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Program name management.
+#   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/progreloc.c
+Hash: babc96a49ada0b13bd47d6931240b971ddf7a571a2c9a989c351f1b54caec1df
+Copyright: 2003-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Provide relocatable programs.
+#   Copyright (C) 2003-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/propername.c
+Hash: 453584a838b6191dd3f10ed6858fbc73356af59689880952a06d1984c013e443
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Localization of proper names.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/propername.h
+Hash: b709e58dcf9e44473ab7139d39df8d4143a783b73be0b4b8e5f589e2f37ff33f
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Localization of proper names.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/pthread.in.h
+Hash: ef4cc2c979afda964299a12c9b1d50231399227aa30af97c27d6fad997de2255
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Implement a trivial subset of the pthreads library.
+#
+#   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, 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: ./lib/putenv.c
+Hash: 17b29fb75137b2e5e475f2813253c186798f360d5711c1ac87ef1796680902b1
+Copyright: 1991, 1994, 1997-1998, 2000, 2003-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991, 1994, 1997-1998, 2000, 2003-2008
+#   Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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 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: ./lib/quote.c
+Hash: c4a8b48c291af2ee7a2a7f70e0a643b88950e3ade7d29053180a8e109d792efa
+Copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* quote.c - quote arguments for output
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2003, 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
+#   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: ./lib/quote.h
+Hash: 5d10e05c536ff1a439a2f8460f1e6ac91d61ba93ebf6280fe6ab090f9321d27b
+Copyright: 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* quote.h - prototypes for quote.c
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 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
+#   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: ./lib/quotearg.c
+Hash: aa0d608c0d77808b3ad8e91a0a3b802b9a13118b657be7df6bd43b7aec178ef0
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
+License: 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:
+#/* quotearg.c - quote arguments for output
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007,
+#   2008 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.
+
+
+######################################################################
+# UPTOHERE
+######################################################################
+File: ./lib/quotearg.h
+Hash: 2e6f8072d5c251a83bae1fd9e1d85ed223633968bae640a6ab6e759963b50d0c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* quotearg.h - quote arguments for output
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 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: ./lib/raise.c
+Hash: 50b03c3b985400bc1e7f8910337b51a9ce593ebd8b792aa1f1a1788960c9c26a
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Provide a non-threads replacement for the POSIX raise function.
+#
+#   Copyright (C) 2002, 2003, 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
+#   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: ./lib/random_r.c
+Hash: 56ff6e2aaf2d55a023c78529f964988504c867e654d0df6993406e27656be439
+Copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation, Inc.
+License: BSD (3 clause) and LGPL-2.1+
+#FIXME
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   The GNU C Library 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.
+   
+   Copyright (C) 1983 Regents of the University of California.
+   All rights reserved.
+   
+   Redistribution and use in source and binary forms, with or without
+   modification, are permitted provided that the following conditions
+   are met:
+   
+   1. Redistributions of source code must retain the above copyright
+      notice, this list of conditions and the following disclaimer.
+   2. Redistributions in binary form must reproduce the above copyright
+      notice, this list of conditions and the following disclaimer in the
+      documentation and/or other materials provided with the distribution.
+   4. Neither the name of the University nor the names of its contributors
+      may be used to endorse or promote products derived from this software
+      without specific prior written permission.
+      
+   THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+   ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+   OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+   OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+   SUCH DAMAGE.
+#Header:
+#/*
+#   Copyright (C) 1995, 2005, 2008 Free Software Foundation
+#
+#   The GNU C Library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+#   License along with the GNU C Library; if not, write to the Free
+File: ./lib/rawmemchr.c
+Hash: 45a83b9183090995a3bb18e9b251a511464e420d7fa99da1e03ce2d9bd3d4e6b
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching in a string.
+#   Copyright (C) 2008 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/rawmemchr.valgrind
+Hash: f728bb18311f04d34ed0495880117ccaa59b4c6bc8ebaac82459903cfc3247c8
+Copyright:
+License:
+#Header:
+## Suppress a valgrind message about use of uninitialized memory in rawmemchr().
+## This use is OK because it provides only a speedup.
+#{
+#    rawmemchr-value4
+#    Memcheck:Value4
+#    fun:rawmemchr
+#}
+#{
+#    rawmemchr-value8
+#    Memcheck:Value8
+#    fun:rawmemchr
+#}
+File: ./lib/read-file.c
+Hash: 51c7d95dd1381f2a59ceb5c375cfb7998aec903e9b91e27baa7da0afa5e8468c
+Copyright: 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* read-file.c -- read file contents into a string
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson and Bruno Haible.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/read-file.h
+Hash: ca324b683cf28737c1848bb23eb0b92cdc0044ee67094c57e91c08bdbf81f53e
+Copyright: 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* read-file.h -- read file contents into a string
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/readline.c
+Hash: 1c45ecec189bf0ab208143e3b0965baabebfcccb8f2389c02fe5ba6b4b7648a0
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* readline.c --- Simple implementation of readline.
+#   Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#   Written by Simon Josefsson
+#
+#   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: ./lib/readline.h
+Hash: 4cafc96af802460b1d7f54218bf92ca62cf6b7cd0a2abffc02d7ea516d1d1946
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* readline.h --- Simple implementation of readline.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#   Written by Simon Josefsson
+#
+#   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: ./lib/readlink.c
+Hash: 4a11f960e0153527f36536d9b396257683b425331d992420cffc853dfec35ddc
+Copyright: 2003-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Stub for readlink().
+#   Copyright (C) 2003-2007 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/readtokens.c
+Hash: ffc9a757ad67bba5dcce13dfac14da216892391e5879cee666b99d8154c49b0e
+Copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* readtokens.c  -- Functions for reading tokens from an input stream.
+#
+#   Copyright (C) 1990-1991, 1999-2004, 2006, 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
+File: ./lib/readtokens.h
+Hash: 452dfbc07c636749aa830a30599c7c5bc109f4c51b72d8891b968640b102b9d5
+Copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc.
+License: 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:
+#/* readtokens.h -- Functions for reading tokens from an input stream.
+#
+#   Copyright (C) 1990, 1991, 1999, 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 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: ./lib/readtokens0.c
+Hash: 8cb5713080fed145a957a71a48ce5c11d1d74bd0964b2f90d2d52f9e643a1db4
+Copyright: 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* readtokens0.c -- Read NUL-separated tokens from an input stream.
+#
+#   Copyright (C) 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 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: ./lib/readtokens0.h
+Hash: fa2844a8aefa737f7d2630364652206697cebc7c5d15193fb3273257c1afa96b
+Copyright: 2004 Free Software Foundation, Inc.
+License: 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:
+#/* readtokens0.h -- read NUL-separated tokens from an input stream.
+#
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/readutmp.c
+Hash: 6018c3b26e7b6cc70156a39368851213becaa215df3e58ef5966e9237d173463
+Copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* GNU's read utmp module.
+#
+#   Copyright (C) 1992-2001, 2003, 2004, 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
+#   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: ./lib/readutmp.h
+Hash: e4edf9b2cd3b4a9662bd1a50b7a068f8dadee724d6b47e05b5c629cc890cb0f4
+Copyright: 1992-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Declarations for GNU's read utmp module.
+#
+#   Copyright (C) 1992-2007 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
+File: ./lib/realloc.c
+Hash: b65d6b9cadf8e53a3ff901459826791ef77acce1f247a65f3759c647442f3de9
+Copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* realloc() function that is glibc compatible.
+#
+#   Copyright (C) 1997, 2003, 2004, 2006, 2007 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
+File: ./lib/recv.c
+Hash: 86a2667aca771f6d5c7502ac7cbddf51018f3dea268d5a1461b98f7b9af5f095
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* recv.c --- wrappers for Windows recv function
+#
+#   Copyright (C) 2008 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
+File: ./lib/recvfrom.c
+Hash: 76c2990bcd168811c2511e685b811321ebc18fb7257375d1cb2f7d025d90dd34
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* recvfrom.c --- wrappers for Windows recvfrom function
+#
+#   Copyright (C) 2008 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
+File: ./lib/ref-add.sin
+Hash: 384e11c05bb265e3613f6e8b6c445f77d0cecc679e59cddac3c606015c6f5fc3
+Copyright: 2000 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+## Add this package to a list of references stored in a text file.
+##
+##   Copyright (C) 2000 Free Software Foundation, Inc.
+##
+##   This program is free software; you can redistribute it and/or modify
+##   it under the terms of the GNU General Public License as published by
+##   the Free Software Foundation; either version 2, or (at your option)
+##   any later version.
+##
+##   This program is distributed in the hope that it will be useful,
+##   but WITHOUT ANY WARRANTY; without even the implied warranty of
+##   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+##   GNU General Public License for more details.
+##
+##   You should have received a copy of the GNU General Public License along
+File: ./lib/ref-del.sin
+Hash: 55d01b01839af2472b2f966cda363787756440f9ac8024938ea8dfa8b2323862
+Copyright: 2000 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+## Remove this package from a list of references stored in a text file.
+##
+##   Copyright (C) 2000 Free Software Foundation, Inc.
+##
+##   This program is free software; you can redistribute it and/or modify
+##   it under the terms of the GNU General Public License as published by
+##   the Free Software Foundation; either version 2, or (at your option)
+##   any later version.
+##
+##   This program is distributed in the hope that it will be useful,
+##   but WITHOUT ANY WARRANTY; without even the implied warranty of
+##   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+##   GNU General Public License for more details.
+##
+##   You should have received a copy of the GNU General Public License along
+File: ./lib/regcomp.c
+Hash: c2483b14cafcc8625bd4c467a5fd09efa0d50666fbb8a5fd38e2123b1ecb0945
+Copyright: 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/regex.c
+Hash: b01492f4d85ec55b5acc0f48cbe61e292c5b461a01bda985e49a53989594e947
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/regex.h
+Hash: c53492d2516ee161d8077ce24002a78d186df06b5c5941fa8401ef7998ac8375
+Copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Definitions for data structures and routines for the regular
+#   expression library.
+#   Copyright (C) 1985,1989-93,1995-98,2000,2001,2002,2003,2005,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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/regex_internal.c
+Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/regex_internal.h
+Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/regexec.c
+Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/relocatable.c
+Hash: 0d1858bafd12c7ab346742483ec5d97e6efbdebfd46524a7a8f231696f2a22ac
+Copyright: 2003-2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
+#Header:
+#/* Provide relocatable packages.
+#   Copyright (C) 2003-2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU Library General Public License as published
+#   by the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+File: ./lib/relocatable.h
+Hash: bcbac1b3bdd53abac5276b593b5ab4e22160d29de32e77245f5d9a04269770cf
+Copyright: 2003, 2005, 2008 Free Software Foundation, Inc.
+License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
+#Header:
+#/* Provide relocatable packages.
+#   Copyright (C) 2003, 2005, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU Library General Public License as published
+#   by the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+File: ./lib/relocwrapper.c
+Hash: c167810a619a4782afbe8842f06bdd194461d73cc0a1f4c1dfc0e5c49815a107
+Copyright: 2003, 2005-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Relocating wrapper program.
+#   Copyright (C) 2003, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/rename-dest-slash.c
+Hash: ef1b249ccdf7cb59741f8b296b4aad87ef269ecddf2d084a4d560b83e6a804e2
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* A rename wrapper to make tools like mv -- that would normally rely
+#   on the underlying rename syscall -- work more consistently.
+#   On at least NetBSD 1.6, `rename ("dir", "B/")' fails when B doesn't
+#   exist, whereas it succeeds on Linux-2.6.x and Solaris 10.  This wrapper
+#   provides an interface for systems like the former so that the tools
+#   (namely mv) relying on the rename syscall have more consistent
+#   semantics.
+#
+#   Copyright (C) 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 Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
+File: ./lib/rename.c
+Hash: 1f9e11ca836ae5b2fb8b9e66aed55f3d358c7e104a480df3fd71801eb0a0bb64
+Copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Work around rename bugs in some systems.  On SunOS 4.1.1_U1
+#   and mips-dec-ultrix4.4, rename fails when the source file has
+#   a trailing slash.  On mingw, rename fails when the destination
+#   exists.
+#
+#   Copyright (C) 2001, 2002, 2003, 2005, 2006, 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
+File: ./lib/rijndael-alg-fst.c
+Hash: 49cc6c6e9d8de361675d0546671526e3109140364ce29855fbb8de575d6fee29
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+ and other
+  This file is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published
+  by the Free Software Foundation; either version 2, or (at your
+  option) any later version.
+   
+  This file 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 file; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+    
+ This code is hereby placed in the public domain.
+  
+ THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#Header:
+#/* rijndael-alg-fst.c --- Rijndael cipher implementation.
+# * Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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 file; if not, write to the Free Software
+File: ./lib/rijndael-alg-fst.h
+Hash: 162ce649f0d069335d8228a612fdf65ceae6f3475f5dac1558ec29010f225634
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+ and other
+  This file is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published
+  by the Free Software Foundation; either version 2, or (at your
+  option) any later version.
+   
+  This file 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 file; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+    
+ This code is hereby placed in the public domain.
+  
+ THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#Header:
+#/* rijndael-alg-fst.h --- Rijndael cipher implementation.
+# * Copyright (C) 2005 Free Software Foundation, Inc.
+# *
+File: ./lib/rijndael-api-fst.c
+Hash: b99f158275dd4fe795b389f5caccddb053dff98d2b957da0f54453adbfd5a538
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+ and other
+  This file is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published
+  by the Free Software Foundation; either version 2, or (at your
+  option) any later version.
+   
+  This file 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 file; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+    
+ This code is hereby placed in the public domain.
+  
+ THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#Header:
+#/* rijndael-api-fst.c --- Rijndael cipher implementation.
+# * Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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 file; if not, write to the Free Software
+File: ./lib/rijndael-api-fst.h
+Hash: 5e47a11e8fa358f2f9d5b74032b2f486490674675a23560778ff639f0ac38985
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+ and other
+  This file is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published
+  by the Free Software Foundation; either version 2, or (at your
+  option) any later version.
+  This file 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 file; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+  
+ This code is hereby placed in the public domain.
+ THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#Header:
+#/* rijndael-api-fst.h --- Rijndael cipher implementation.
+# * Copyright (C) 2005 Free Software Foundation, Inc.
+# *
+# * This file is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published
+# * by the Free Software Foundation; either version 2, or (at your
+# * option) any later version.
+# *
+# * This file 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 file; if not, write to the Free Software
+File: ./lib/rmdir.c
+Hash: 018a558c35eb9dac411a0a1df8bc31f403fdd1d5de43451c3a4dfc748b0a4ed6
+Copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* BSD compatible remove directory function for System V
+#
+#   Copyright (C) 1988, 1990, 1999, 2003, 2004, 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
+#   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: ./lib/round.c
+Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Round toward nearest, breaking ties away from zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/roundf.c
+Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Round toward nearest, breaking ties away from zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/roundl.c
+Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Round toward nearest, breaking ties away from zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/rpmatch.c
+Hash: 55373da72f4e3da7649f19e32ad56f0c83c97a9d3259a237b8997c00ddcf5b9a
+Copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Determine whether string value is affirmation or negative response
+#   according to current locale's data.
+#
+#   Copyright (C) 1996, 1998, 2000, 2002, 2003, 2006-2008 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: ./lib/safe-alloc.c
+Hash: 9844c4950cc5bf374ef430b7dc9b69be026b2120e88864e26aea2bbf2855ae62
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/*
+# * safe-alloc.c: safer memory allocation
+# *
+# * Copyright (C) 2009 Free Software Foundation, Inc.
+# *
+# * This library is free software; you can redistribute it and/or
+# * modify it under the terms of the GNU Lesser General Public
+# * License as published by the Free Software Foundation; either
+# * version 2.1 of the License, or (at your option) any later version.
+# *
+# * This library 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
+# * Lesser General Public License for more details.
+# *
+File: ./lib/safe-alloc.h
+Hash: 5211b4e3531c33d28506f04532eeffb65e8df0d999c5b9a00e3f36d3fe7bf46c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/*
+# * safe-alloc.h: safer memory allocation
+# *
+# * Copyright (C) 2009 Free Software Foundation, Inc.
+# *
+# * This library is free software; you can redistribute it and/or
+# * modify it under the terms of the GNU Lesser General Public
+# * License as published by the Free Software Foundation; either
+# * version 2.1 of the License, or (at your option) any later version.
+# *
+# * This library 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
+# * Lesser General Public License for more details.
+# *
+File: ./lib/safe-read.c
+Hash: d12efe172ef14861fdb86cf76cb61277327a60cabf2a7afdafc1ade15afb9187
+Copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to read and write that retries after interrupts.
+#
+#   Copyright (C) 1993, 1994, 1998, 2002, 2003, 2004, 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
+#   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: ./lib/safe-read.h
+Hash: 2667a28d26546c5be4bcaa1fca81b4e13cd518f9717d314db29d047fdd7494d6
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to read() that retries after interrupts.
+#   Copyright (C) 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
+#   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/safe-write.c
+Hash: 6aa76f15c5e0ee9a8e0b1be63deb69b31fe263a9d1c5c10ffb2e8fe6dcd7c0f1
+Copyright: 2002 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to write that retries after interrupts.
+#   Copyright (C) 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
+#   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/safe-write.h
+Hash: 8179ca35d82597a466d03026c42e05761523d0036556a873fe42692f500476ae
+Copyright: 2002 Free Software Foundation, Inc.
+License: 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:
+#/* An interface to write() that retries after interrupts.
+#   Copyright (C) 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
+#   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/same-inode.h
+Hash: 81b80979de8a7e53f45381e99597bc7390cfaa00e499dac502c31c58415b42a8
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Determine whether two stat buffers refer to the same file.
+#
+#   Copyright (C) 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 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: ./lib/same.c
+Hash: ce1a1ec04e3aec75a5006861db979396761bc69c62096f1996e7ba2f5f3bbba4
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Determine whether two file names refer to the same file.
+#
+#   Copyright (C) 1997, 1998, 1999, 2000, 2002, 2003, 2004, 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
+#   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: ./lib/same.h
+Hash: 01df5ca3af0102dba2561b287d19d5651e891876ac5c54f1dde91b7bd23bb64c
+Copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Determine whether two file names refer to the same file.
+#
+#   Copyright (C) 1997, 1998, 1999, 2000, 2003, 2004 Free Software
+#   Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/save-cwd.c
+Hash: 422df5e09ad67e75a7c147e25f3da9a175fa80d7259241a3da6155c5ce96f539
+Copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* save-cwd.c -- Save and restore current working directory.
+#
+#   Copyright (C) 1995, 1997, 1998, 2003, 2004, 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
+#   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: ./lib/save-cwd.h
+Hash: 4b0e13da5aef3208b1bce2ab1b10c453cbf1e370c969b41bac7be51e2b76e809
+Copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Save and restore current working directory.
+#
+#   Copyright (C) 1995, 1997, 1998, 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
+#   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: ./lib/savedir.c
+Hash: 928cfb9bf8e834b1b6ef7b1825e58d6b44fd5770a7cea787dd66589c84e8c274
+Copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* savedir.c -- save the list of files in a directory in a string
+#
+#   Copyright (C) 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#   2006, 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: ./lib/savedir.h
+Hash: cfa56cb818e618c3fe57c975e9f0c5ba8723bc62e0de5473481cd5587cbe8350
+Copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Save the list of files in a directory in a string.
+#
+#   Copyright (C) 1997, 1999, 2001, 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
+#   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: ./lib/savewd.c
+Hash: 587bc08918885aa18f980c1c6950d2dcd55e2ffa0c869d562185891b6960dc6f
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Save and restore the working directory, possibly using a child process.
+#
+#   Copyright (C) 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.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/savewd.h
+Hash: 6d491cbfc2163751c419f2376a46d56cb899e625395ca51efb08dfeb6ad2b7ea
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Save and restore the working directory, possibly using a subprocess.
+#
+#   Copyright (C) 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 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: ./lib/scandir.c
+Hash: 2bea6e6d81d5f7fd79619df895eaf13e5823217eeabbf1ef38c343dc53d17b06
+Copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1992-1998, 2000, 2002, 2003, 2009 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 it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/sched.in.h
+Hash: 5c835c4e5fd04776b804eab97562bd18f61757bfecab83a838e62f90997512b6
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Replacement <sched.h> for platforms that lack it.
+#   Copyright (C) 2008 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/se-context.in.h
+Hash: e71efe13fc9c187c71a5f39e76a5a4e4c03a3194a14acf7b4af3fb81c3d879a8
+Copyright:
+License:
+#Header:
+##ifndef SELINUX_CONTEXT_H
+## define SELINUX_CONTEXT_H
+#
+## include <errno.h>
+#
+#typedef int context_t;
+#static inline context_t context_new (char const *s _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return 0; }
+#static inline char *context_str (context_t con _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return (void *) 0; }
+#static inline void context_free (context_t c _UNUSED_PARAMETER_) {}
+#
+#static inline int context_user_set (context_t sc _UNUSED_PARAMETER_,
+#                                  char const *s _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return -1; }
+File: ./lib/se-selinux.in.h
+Hash: 70669262b44df770b656e06dd0607d4fa4e070616a4a93731d36d8254d0eb8bb
+Copyright:
+License:
+#Header:
+##ifndef SELINUX_SELINUX_H
+## define SELINUX_SELINUX_H
+#
+## include <sys/types.h>
+## include <errno.h>
+#
+#typedef unsigned short security_class_t;
+## define security_context_t char*
+## define is_selinux_enabled() 0
+#
+#static inline int getcon (security_context_t *con _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return -1; }
+#static inline void freecon (security_context_t con _UNUSED_PARAMETER_) {}
+File: ./lib/search.in.h
+Hash: 98707f0a63adefec5733713c576243f083b682775057a7d5971cef4277fc8960
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* A GNU-like <search.h>.
+#
+#   Copyright (C) 2007-2008 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
+File: ./lib/select.c
+Hash: db938a6d1b5d591ba63dd3673bb2ccd0ecd9f8b9fcaad86d3c607368122268a8
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Emulation for select(2)
+#   Contributed by Paolo Bonzini.
+#
+#   Copyright 2008-2009 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+File: ./lib/selinux-at.c
+Hash: e73ac0c418e767f09a8d77674df132f0b446c5448c43a1d9303e58907d17018f
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* openat-style fd-relative functions for SE Linux
+#   Copyright (C) 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.
+#
+#   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/selinux-at.h
+Hash: 2e95007054f57abccc9c2dbc0df4520778025ef925f3b74873d5d58af819e36e
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Prototypes for openat-style fd-relative SELinux functions
+#   Copyright (C) 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.
+#
+#   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/send.c
+Hash: 47748f45a6a25cadf5542f9543f49778f7ea6b2c87fef1bf9926c8c66e7f5661
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* send.c --- wrappers for Windows send function
+#
+#   Copyright (C) 2008 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
+File: ./lib/sendto.c
+Hash: 634c06211e79ad265f869003e97612a84a67d40fa6d275ace86b12592b0a8eab
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* sendto.c --- wrappers for Windows sendto function
+#
+#   Copyright (C) 2008 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
+File: ./lib/set-mode-acl.c
+Hash: e859e38ad22b32346c568c33be9a662b92a792f63402be0645020fe91e7a865e
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* set-mode-acl.c - set access control list equivalent to a mode
+#
+#   Copyright (C) 2002-2003, 2005-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
+File: ./lib/setenv.c
+Hash: 5927758c893aede52f8fdc5263d4117e4614fb619646a37d5464b249f19cc91e
+Copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1992,1995-1999,2000-2003,2005-2008 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
+#   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/setsockopt.c
+Hash: 1fe9bb029b10267e47bbc61360ce31f9915584f8824b3da8569b084bba160c32
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* setsockopt.c --- wrappers for Windows setsockopt function
+#
+#   Copyright (C) 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,
+#   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: ./lib/settime.c
+Hash: f3fef53696d8c8b81a746528ddebe430eabebc29f83bae24fefffef92380d23e
+Copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* settime -- set the system clock
+#
+#   Copyright (C) 2002, 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: ./lib/sh-quote.c
+Hash: 27a65b308d278b6fdef8dcaac9558d0d90b8ff6974551e8892d1767765097bc7
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Shell quoting.
+#   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/sh-quote.h
+Hash: e049a481e491c1fd1433d5f930becd727d362737d16f575f5108daf88ed3e08e
+Copyright: 2001-2002, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Shell quoting.
+#   Copyright (C) 2001-2002, 2004 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/sha1.c
+Hash: e6f4ad18bb6193ea3a3c57b7bdd4d4c371e65ba20e2af676b3fd8578c462c6e9
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* sha1.c - Functions to compute SHA1 message digest of files or
+#   memory blocks according to the NIST specification FIPS-180-1.
+#
+#   Copyright (C) 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software
+#   Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/sha1.h
+Hash: 59bead7118f2949f37fdfa01470646bd275f2507e9be8ab76882bbe653057d9b
+Copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Declarations of functions and data types used for SHA1 sum
+#   library functions.
+#   Copyright (C) 2000, 2001, 2003, 2005, 2006, 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 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/sha256.c
+Hash: 3425dcf95c1f50702ebec678cc893f4d4c851054bf580de3d9a3f56bd0e01978
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* sha256.c - Functions to compute SHA256 and SHA224 message digest of files or
+#   memory blocks according to the NIST specification FIPS-180-2.
+#
+#   Copyright (C) 2005, 2006, 2008 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: ./lib/sha256.h
+Hash: 66581e4bc70d286563b89d7bb632dc9f3591df5dc926494ef60ac5e1ffb478ab
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Declarations of functions and data types used for SHA256 and SHA224 sum
+#   library functions.
+#   Copyright (C) 2005, 2006, 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,
+#   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: ./lib/sha512.c
+Hash: 2d33540040b9cfd894cfda268216acf3ba9cf967d1e536a8661ae9bbf6b2e4ff
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* sha512.c - Functions to compute SHA512 and SHA384 message digest of files or
+#   memory blocks according to the NIST specification FIPS-180-2.
+#
+#   Copyright (C) 2005, 2006, 2008 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: ./lib/sha512.h
+Hash: ee0dec75a513f6772789a0b6bf0ee1ead955abeb34696a489d19ec6e13e3388b
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Declarations of functions and data types used for SHA512 and SHA384 sum
+#   library functions.
+#   Copyright (C) 2005, 2006, 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,
+#   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: ./lib/shutdown.c
+Hash: 51160b16d7393090800e4bf94a60a1df431f62ec86b1ae2f26a6c51152458de6
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* shutdown.c --- wrappers for Windows shutdown function
+#
+#   Copyright (C) 2008 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
+File: ./lib/sig-handler.h
+Hash: dc43801fc9a9f3dc8ba0d661a7db3e864cb14324b7c2cb2196f3b59a89fd6159
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convenience declarations when working with <signal.h>.
+#
+#   Copyright (C) 2008 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
+File: ./lib/sig2str.c
+Hash: ca70d2eda30326ad5a9d6cf9336be308827519fa3ec0a948ddb151f104506663
+Copyright: 2002, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* sig2str.c -- convert between signal names and numbers
+#
+#   Copyright (C) 2002, 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 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: ./lib/sig2str.h
+Hash: e5747ec456c7780cd6b05fbfd22631cbc4bd955a230a013649b51f33a60b8011
+Copyright: 2002, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* sig2str.h -- convert between signal names and numbers
+#
+#   Copyright (C) 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
+#   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: ./lib/sigaction.c
+Hash: 961a07c6f2a1fa494905a8c380725451d27e61e2cade6aff296fd560d9f41564
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* POSIX compatible signal blocking.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Eric Blake <ebb9@byu.net>, 2008.
+#
+#   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: ./lib/siglist.h
+Hash: 1f7435d5ada1229db0e79551b2d1ded46d3de7caa6030ade8ed1a9c8385b7475
+Copyright: 1996,97,98,99,2008 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Canonical list of all signal names.
+#   Copyright (C) 1996,97,98,99,2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C Library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+File: ./lib/signal.in.h
+Hash: a49f6db94dacf94abe74624ea1ddddc7559f95c8feb120e671e0b4ff215382ef
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* A GNU-like <signal.h>.
+#
+#   Copyright (C) 2006-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
+File: ./lib/signbitd.c
+Hash: 4fe9d03e71253b7cb6553e84b2c0c91449a1cac16afa810f0e5f1db489edd244
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* signbit() macro: Determine the sign bit of a floating-point number.
+#   Copyright (C) 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.
+#
+#   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/signbitf.c
+Hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* signbit() macro: Determine the sign bit of a floating-point number.
+#   Copyright (C) 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.
+#
+#   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/signbitl.c
+Hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* signbit() macro: Determine the sign bit of a floating-point number.
+#   Copyright (C) 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.
+#
+#   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/sigpipe-die.c
+Hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Report a SIGPIPE signal and exit.
+#   Copyright (C) 2008 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/sigpipe-die.h
+Hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Report a SIGPIPE signal and exit.
+#   Copyright (C) 2008 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/sigprocmask.c
+Hash: 64a5bd137e4ffceed28ce56b1c3ebeebbf5a2bceb1dbf8274afb4563db1a856e
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* POSIX compatible signal blocking.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./lib/sincosl.c
+Hash: 1772f687d81fd114abb5d80bbb46c95f407f818faa4b6c89cf9c0eb57f2e536d
+Copyright: 1999, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Quad-precision floating point trigonometric functions on <-pi/4,pi/4>.
+#   Copyright (C) 1999, 2006, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Jakub Jelinek <jj@ultra.linux.cz>
+#
+#   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: ./lib/sinl.c
+Hash: aec40ee7886ef37669c9218c5d8a5e07ad40fefa4fc7a1e4e48703d51124a9dc
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+License:
+#Header:
+#/* s_sinl.c -- long double version of s_sin.c.
+# * Conversion to long double by Jakub Jelinek, jj@ultra.linux.cz.
+# */
+#
+#/*
+# * ====================================================
+ Developed at SunPro, a Sun Microsystems, Inc. business.
+ Permission to use, copy, modify, and distribute this
+ software is freely granted, provided that this notice
+ is preserved.
+#* ====================================================
+# */
+File: ./lib/size_max.h
+Hash: 26c9e27b3895dc767fb1cd998cd3d2039f08bc4eb973ca8344a2957a21ea8d3f
+Copyright: 2005-2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* size_max.h -- declare SIZE_MAX through system headers
+#   Copyright (C) 2005-2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/sleep.c
+Hash: 648a1c7305e84d30515cb11664201e9544fe1f2d824adb21b4e66a75bbfaaf7f
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Pausing execution of the current thread.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./lib/snprintf.c
+Hash: da7f665f0930c194dc67de8e3f84305d1d9efb6941fb0c1f75bfb3017e6e2501
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson and Paul Eggert.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/socket.c
+Hash: 73aa233a19dcdef4826a6e9c76995947a86d2671e189f51b08cd39743b9395ab
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* socket.c --- wrappers for Windows socket function
+#
+#   Copyright (C) 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,
+#   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: ./lib/sockets.c
+Hash: 99bf26833d5e9d9cd2556408cf92c515c24d6f5473b27e278d51604655b38611
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* sockets.c --- wrappers for Windows socket functions
+#
+#   Copyright (C) 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,
+#   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: ./lib/sockets.h
+Hash: 2c890a5e463ceb8ea9e9bbdb6f2a4a07c745c89fe71888191634079bd96b28d3
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* sockets.h - wrappers for Windows socket functions
+#
+#   Copyright (C) 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,
+#   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: ./lib/spawn.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawn.in.h
+Hash: dd423bdec70d026b36d8aca617a940f03fe19b9a450e3981de91dfdad00e2a4a
+Copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Definitions for POSIX spawn interface.
+#   Copyright (C) 2000, 2003, 2004, 2008 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
+#   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: ./lib/spawn_faction_addclose.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawn_faction_adddup2.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawn_faction_addopen.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawn_faction_destroy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawn_faction_init.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawn_int.h
+Hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+Copyright: 2000, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000, 2008 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
+#   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/spawnattr_destroy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_getdefault.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_getflags.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_getpgroup.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_getschedparam.c
+Hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+Copyright: 2000, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000, 2008 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
+#   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/spawnattr_getschedpolicy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_getsigmask.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_init.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_setdefault.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_setflags.c
+Hash: 7f583d13179aba639b22ec305fd749afdeecb96823d2c32cb4dd9294a51bdbd2
+Copyright: 2000, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000, 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
+#   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/spawnattr_setpgroup.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_setschedparam.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_setschedpolicy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawnattr_setsigmask.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/spawni.c
+Hash: 62be6e45aaad94e9dbc02b27f7dba559de55fac508f2e3954479674ce637e015
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Guts of POSIX spawn interface.  Generic POSIX.1 version.
+#   Copyright (C) 2000-2006, 2008-2009 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
+#   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: ./lib/spawnp.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+Copyright: 2000 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 2000 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
+#   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/sprintf.c
+Hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 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/sqrtl.c
+Hash: 755a6706b4cfafc6b498d6efa76315b826063474b7f91834ef5aac159f116c5e
+Copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Emulation for sqrtl.
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003, 2007 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+File: ./lib/stat-macros.h
+Hash: 148738a233ce05f8eb8f7d34330ceb02c5bd65c8221d02bbab595257b813e2ed
+Copyright:
+License:
+#Header:
+#/* All the mode bits that can be affected by chmod.  */
+##define CHMOD_MODE_BITS \
+#  (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)
+File: ./lib/stat-time.h
+Hash: 9aba76bc91ed527925d4c43ee4224d8ef90fa0d21475d5e4fe2976cf797daa08
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* stat-related time functions.
+#
+#   Copyright (C) 2005, 2007 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
+File: ./lib/stdarg.in.h
+Hash: fed8bc6587d9b9b46807cec06b2104a0c7f4f4edd00f5c3104c86ab78d64722e
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Substitute for and wrapper around <stdarg.h>.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/stdbool.in.h
+Hash: e8683e07480c37941452e3970f57d5f5bbcd0d742248766ea32158872b843013
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/stddef.in.h
+Hash: f3ff9d2469e9e018bbfe1a8d85d2454f7a54673420acdb29aa429cd583e45834
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A substitute for POSIX 2008 <stddef.h>, for platforms that have issues.
+#
+#   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, 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: ./lib/stdint.in.h
+Hash: 31871000acd29901edf1cd726ea2f32b9837e497b9e19a49c00374e0291c1997
+Copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 2001-2002, 2004-2009 Free Software Foundation, Inc.
+#   Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood.
+#   This file is part of gnulib.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/stdio--.h
+Hash: 8c7711ff90032c75717f2f7363d9a7ee7e94afa86d29510878f66dba39bb3f5b
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Like stdio.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005, 2006, 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
+File: ./lib/stdio-impl.h
+Hash: 1ab5922a50832223e0ffc2c70fc544f9d91a363ecb50bcdb55e55c991d88b33d
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Implementation details of FILE streams.
+#   Copyright (C) 2007-2008 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/stdio-safer.h
+Hash: bcaf909a5c5f8071d1141fe63d90c50832df9f511b5934124b18613c2cc60631
+Copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke stdio functions, but avoid some glitches.
+#
+#   Copyright (C) 2001, 2003, 2006, 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
+File: ./lib/stdio-write.c
+Hash: ef387fa21fd98ef04fd7a0c63399aecb0f271036efc4d192baeca9c964fb1b05
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* POSIX compatible FILE stream write function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/stdio.in.h
+Hash: 90996147d8e36f5883486d804050c8256ebd75940339821fbe964fc12816a9db
+Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A GNU-like <stdio.h>.
+#
+#   Copyright (C) 2004, 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/stdlib--.h
+Hash: 6f719ffb3bd563d1191de42881829b2e53ac17d32dd1d6708c4c22b0c065181b
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Like stdlib.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005, 2006, 2007 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
+File: ./lib/stdlib-safer.h
+Hash: ad05b244170755ded620afdb4d6a499a61182625b45f4458df212dd48b9b05fc
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke stdlib.h functions, but avoid some glitches.
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/stdlib.in.h
+Hash: 0ffeef75662fb92247d373df32beb5d8dcc8d52845a1a0cf2e3afe0f75df2164
+Copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* A GNU-like <stdlib.h>.
+#
+#   Copyright (C) 1995, 2001-2004, 2006-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
+File: ./lib/stpcpy.c
+Hash: e277a69ab969893f97dbf9b683e7462bd56bb4a3d83e01b3637c705a0b240b0d
+Copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* 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 bug-glibc@prep.ai.mit.edu.
+#
+#   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 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: ./lib/stpncpy.c
+Hash: 63243814e0160f070d456614689aea5b26f421817aa249c25f3449b22bd82220
+Copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 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: ./lib/str-kmp.h
+Hash: 6ebb0ef34e3af533dd72b1cac88faebfab78edf50fcbe16d66a8f53ad4da159a
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Substring search in a NUL terminated string of 'char' elements,
+#   using the Knuth-Morris-Pratt algorithm.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/str-two-way.h
+Hash: 333e7d492bb7a06bd7eceb738c5bbfaa45fd376cd1fa873159ae6c102fb5abe8
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Byte-wise substring search, using the Two-Way algorithm.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Eric Blake <ebb9@byu.net>, 2008.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/strcasecmp.c
+Hash: 9fac5af7b69ba93dda82ad7e40d81dce148b1b3805ad1f85e96ed8f361e75307
+Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/strcasestr.c
+Hash: df44f98303720564f510cd6080f83b2479ba81a607e0ff35a70065d332775e9d
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Case-insensitive searching in a string.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/strchrnul.c
+Hash: 4f484d4cc0befecd8997334083c58252e9234ad7b53c9ed4e68dbb21366491ea
+Copyright: 2003, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Searching in a string.
+#   Copyright (C) 2003, 2007, 2008 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/strchrnul.valgrind
+Hash: 110d49dc4750f651d0f237887bbdd3ed01c2d8950db226835e552d195ad9dc03
+Copyright:
+License:
+#Header:
+## Suppress a valgrind message about use of uninitialized memory in strchrnul().
+## This use is OK because it provides only a speedup.
+#{
+#    strchrnul-value4
+#    Memcheck:Value4
+#    fun:strchrnul
+#}
+#{
+#    strchrnul-value8
+#    Memcheck:Value8
+#    fun:strchrnul
+#}
+File: ./lib/strcspn.c
+Hash: 9c6096a1c313c8363bc4fb7ea9c8670d50859635fa4fbf18354f17b98fcdf6e4
+Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
+License: 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:
+#/* 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 bug-glibc@gnu.org.
+#
+#   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 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: ./lib/strdup.c
+Hash: 12e93fe471e7edcd885e207e311df99c6d850b7b9ca5c3b28e39e316c66fb2ab
+Copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/streq.h
+Hash: 9830f7c0042519dd01e35295d2e694c760b032cd222a31f3855f44b1a526e12c
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Optimized string comparison.
+#   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/strerror.c
+Hash: f4503783120d3b66707b724877e32b0ea1eda13cbf9e79f4640b32e3f44c7019
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* strerror.c --- POSIX compatible system error routine
+#
+#   Copyright (C) 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.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/strftime.c
+Hash: 7600ea0821aa8b38178ea32004b358cc84e69df14ea395dd865c955b8677c320
+Copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
+#   Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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: ./lib/strftime.h
+Hash: 4c32312ac57884519ab011ab68c92dd237dd76c2f232cd5395e8d283f365bc1e
+Copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* declarations for strftime.c
+#
+#   Copyright (C) 2002, 2004, 2008 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
+File: ./lib/striconv.c
+Hash: 5e8b516e5b0f28f80803a45eb2c6be6a4c0a2282bedc384d0c3b6324c3d0df55
+Copyright: 2001-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Charset conversion.
+#   Copyright (C) 2001-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/striconv.h
+Hash: daea9a49adb2283a8f85bb18fda76f59028c8bfdd046db63226ca0c0e0350702
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Charset conversion.
+#   Copyright (C) 2001-2004, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/striconveh.c
+Hash: 34bb63b9a451ec7185541467e05029b4d5fbd1cbf5a03d3fe84ac381843e053c
+Copyright: 2001-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Character set conversion with error handling.
+#   Copyright (C) 2001-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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: ./lib/striconveh.h
+Hash: 86eb681bccb0a53f2a391f680da5d74679c2482f39258d92ef8d6b0ef17ab474
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Character set conversion with error handling.
+#   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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: ./lib/striconveha.c
+Hash: 5cb3167be3296d381de5cc20753a6e13eb849c736c76cdf79875fa9ffa1a41ea
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Character set conversion with error handling and autodetection.
+#   Copyright (C) 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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: ./lib/striconveha.h
+Hash: d78d74cdfaacc28ecd3e6b1d1c1934ef42f23ffe6e6a940c2fd8b9f3396d78b5
+Copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Character set conversion with error handling and autodetection.
+#   Copyright (C) 2002, 2005, 2007-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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: ./lib/string.in.h
+Hash: 1136d0b98b57be6dd7253ef5cacf9f4da5f028f2d885723c8bbc35a3ab13745b
+Copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A GNU-like <string.h>.
+#
+#   Copyright (C) 1995-1996, 2001-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, 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: ./lib/strings.in.h
+Hash: 10e5bc3121d2994aa8fc0890d99464664f2b9d6f3e67177e371d1f4c072bc250
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A substitute <strings.h>.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/stripslash.c
+Hash: ca9f072b31bf11e52cbb5c73957988d28de77f56c962b0785f07af77418be677
+Copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc.
+License: 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:
+#/* stripslash.c -- remove redundant trailing slashes from a file name
+#
+#   Copyright (C) 1990, 2001, 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
+#   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: ./lib/strncasecmp.c
+Hash: 815116d5f75c679aca0d1bb421a8370e66e40168c384ed9dd6a98d3f5ca83391
+Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* strncasecmp.c -- case insensitive string comparator
+#   Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/strndup.c
+Hash: 493b47a8d6f269acc1510b98b35176cc820945e10980a25eff018b436ae1bcfe
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A replacement function, for systems that lack strndup.
+#
+#   Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007
+#   Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/strnlen.c
+Hash: 90b853a0e4af9628fcd17de3f30a70c1a406d6517e1d18a5f5b9413c856b1c10
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Find the length of STRING, but scan at most MAXLEN characters.
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/strnlen1.c
+Hash: ca122eb96644afef5d06ddd05a5ee8d1672a9df41eb9dee6a04360b119d62dac
+Copyright: 2005-2006 Free Software Foundation, Inc.
+License: 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:
+#/* 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
+#   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/strnlen1.h
+Hash: 150c8f3b97a0d8163ec53ce9eeac9922489186f5ca66d9250750116cb1f8a5c1
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* 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
+#   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/strpbrk.c
+Hash: 96b98866fadc00e26886d758144724ccbbc594f237800fb4314473bede51c53e
+Copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1991, 1994, 2000, 2002-2003, 2006 Free Software
+#   Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/strptime.c
+Hash: e7a81072f584025045e8cd27a8aed09e13a467c6a3a157eee758bd6613856191
+Copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 2002, 2004, 2005, 2007 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/strsep.c
+Hash: af7bac86580b20527ae1d65b6b78a1b038b7b9e0b005a67835c2058a71215932
+Copyright: 2004, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 2004, 2007 Free Software Foundation, Inc.
+#
+#   Written by Yoann Vandoorselaere <yoann@prelude-ids.org>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/strsignal.c
+Hash: e182db866c03cb48b20804d461064af0a10923ccec042890b5604c9c43d228ca
+Copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/* Copyright (C) 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C Library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License as published by the Free Software Foundation; either
+#   version 2.1 of the License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+#   License along with the GNU C Library; if not, write to the Free
+File: ./lib/strstr.c
+Hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 1991,92,93,94,96,97,98,2000,2004,2007,2008 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/strtod.c
+Hash: 528883e0f68c192c7f4c418737f36efc6ede11ce51636f8145c70d1101163e8b
+Copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991, 1992, 1997, 1999, 2003, 2006, 2008 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/strtoimax.c
+Hash: 7973e7dce509583335e94002f1d80e0f651365102e54f37f6643260b5a0f3a11
+Copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Convert string representation of a number into an intmax_t value.
+#
+#   Copyright (C) 1999, 2001, 2002, 2003, 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 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: ./lib/strtok_r.c
+Hash: aef52797442d97f89d26281a0226055638efc2009e04f911fb4bbbccf7671efb
+Copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
+License: 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:
+#/* Reentrant string tokenizer.  Generic version.
+#   Copyright (C) 1991,1996-1999,2001,2004,2007,2009 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
+#   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: ./lib/strtol.c
+Hash: 9a28728b276103445a0aa97cad8332a2cc26aa2b9be2c964b2c166b56391b73c
+Copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Convert string representation of a number into an integer value.
+#
+#   Copyright (C) 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005,
+#   2006, 2007
+#   Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+File: ./lib/strtoll.c
+Hash: ffeacd90d3869005c1cbaa8aa6090606681dd0ce4407a93a241510abba0719ea
+Copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
+License: 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:
+#/* Function to parse a `long long int' from text.
+#   Copyright (C) 1995, 1996, 1997, 1999, 2001 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
+#   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: ./lib/strtoul.c
+Hash: be855c203200b5a984ae3290890f46d4580f377b4bdafd0266e7873dab9b1731
+Copyright: 1991, 1997 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1991, 1997 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
+#   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/strtoull.c
+Hash: a844c45a1416b2420bd76bef0e85cb2d0a7e363cf88325e65d285bbf5882e58e
+Copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+License: 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:
+#/* Function to parse an `unsigned long long int' from text.
+#   Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 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: ./lib/strtoumax.c
+Hash: 20d59ba9f3d7a1001d08e6aab61d928dbae2fd051e69eab2867765f8663460b6
+Copyright:
+License:
+#Header:
+##define UNSIGNED 1
+##include "strtoimax.c"
+File: ./lib/strverscmp.c
+Hash: dd6243d19084dfaafaac9441be9a71dde27f33c595c685beee735da6b4158cf4
+Copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Compare strings while treating digits characters numerically.
+#   Copyright (C) 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Jean-François Bignolles <bignolle@ecoledoc.ibp.fr>, 1997.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/symlinkat.c
+Hash: dcc854e76c58e26c2b9f652e67d1f4d656d1115d1dc966d5a8ac27025490d91a
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Create a symlink 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/sys_file.in.h
+Hash: 868915ed2b23fee8738485eaf605b0f29674ea76f2f27fc0a330c7e40476e7e1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide a more complete sys/file.h.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/sys_ioctl.in.h
+Hash: 5a85be194ab973fc6eee2464d2f6043be6ca5a0e0ca50c24c8e1947d3ba9c366
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Substitute for and wrapper around <sys/ioctl.h>.
+#   Copyright (C) 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/sys_select.in.h
+Hash: 6385d79cdb0b4995cd2158dcdc2df844a99ee46a25909c5c4f1227065077e6a8
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Substitute for <sys/select.h>.
+#   Copyright (C) 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/sys_socket.in.h
+Hash: 362d22c2394c4e40e8e2f5184c97bbd879f5b56d4ee18b4d91e7c6e29b7deaf9
+Copyright: 2005-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide a sys/socket header file for systems lacking it (read: MinGW)
+#   and for systems where it is incomplete.
+#   Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/sys_stat.in.h
+Hash: e70e9a10084c5f7be3fb6d2aa62228b6f5ded082be4afadd19c01d119c502415
+Copyright: 2005-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide a more complete sys/stat header file.
+#   Copyright (C) 2005-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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/sys_time.in.h
+Hash: 808d4417fc9f057d4ad55b6add3f133d03a5322fabe3dcfe925bd47d14616a66
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide a more complete sys/time.h.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/sys_times.in.h
+Hash: 3cf5a711d1c92858d4b654284c43c7ecc25d06763f8418c2e54c3309c914a541
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Provide a sys/times.h header file.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/sys_utsname.in.h
+Hash: fae5021bf23d69bd35dc0d59126fd5506a194d7b57a8c0ffca7d480f8843b12f
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Substitute for <sys/utsname.h>.
+#   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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/sys_wait.in.h
+Hash: 3c64ce849ea907e265c1bb91f56556fa9f828395cf62f5192851eda0f62cf63e
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A POSIX-like <sys/wait.h>.
+#   Copyright (C) 2001-2003, 2005-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/sysexits.in.h
+Hash: 2f0fc879d2f3a165ed05292bd2ce8f091f60eced3a2fa6f8fc1445ed4548a5d0
+Copyright: 2003, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* exit() exit codes for some BSD system programs.
+#   Copyright (C) 2003, 2006-2008 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/t-idcache
+Hash: af02ece347f0cc0361537b092cba7066186fc98ab1a92c6d10435a9be9ec9f84
+Copyright:
+License:
+#Header:
+##!/bin/sh
+## Compare the two halves (user and group) of idcache.c.
+## Once xformed, they'd better be the same:
+#
+#pwd=`pwd`
+#t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
+#trap 'status=$?; cd "$pwd" && chmod -R u+rwx $t0 && rm -rf $t0 && exit $status' 0
+#trap '(exit $?); exit $?' 1 2 13 15
+#
+#srcdir=../..
+#framework_failure=0
+#mkdir -p $tmp || framework_failure=1
+#cd $tmp || framework_failure=1
+#
+#if test $framework_failure = 1; then
+File: ./lib/tanl.c
+Hash: 1f3518e0705fc06460c8a4c98999f4c188b0dacc611e78239f11c5deaaf35b27
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+License:
+#Header:
+#/* s_tanl.c -- long double version of s_tan.c.
+# * Conversion to IEEE quad long double by Jakub Jelinek, jj@ultra.linux.cz.
+# */
+#
+#/* @(#)s_tan.c 5.1 93/09/24 */
+#/*
+# * ====================================================
+ Developed at SunPro, a Sun Microsystems, Inc. business.
+ Permission to use, copy, modify, and distribute this
+ software is freely granted, provided that this notice
+ is preserved.
+# * ====================================================
+# */
+File: ./lib/tempname.c
+Hash: f8c04e91069ab576b32bf499cda2face1c55ff82a288717173934b8e70a4dc9b
+Copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* tempname.c - generate the name of a temporary file.
+#
+#   Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+#   2000, 2001, 2002, 2003, 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: ./lib/tempname.h
+Hash: 3c1441c47f4337bfb8d432fa03ee9b1ebaaa25a5dd874e64f37eb260e8c441ad
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Create a temporary file or directory.
+#
+#   Copyright (C) 2006, 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
+File: ./lib/time.in.h
+Hash: 41f65ec87233a41b8ccfe9364732c124a99001f260b8ac3570402b0a1628a4e1
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A more-standard <time.h>.
+#
+#   Copyright (C) 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/time_r.c
+Hash: 5dd79182477034f96e494ee4d68c9e08f882485e73c1bd05f0a650f9a46629c2
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Reentrant time functions like localtime_r.
+#
+#   Copyright (C) 2003, 2006, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/timegm.c
+Hash: f8d8b41a303f3b09ee22b4a9a247f85ffa515b47569011d5abe2f205923fc4ed
+Copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Convert UTC calendar time to simple time.  Like mktime but assumes UTC.
+#
+#   Copyright (C) 1994, 1997, 2003, 2004, 2006, 2007 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
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+File: ./lib/times.c
+Hash: ae2efd1b1623d1978cb2d18227edd02db9d9a9f47dbecc71fbf6806f8da628d1
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Get process times
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/timespec.h
+Hash: 9d3c4eda40d629233b24827f15f5dd80c40d897e119a01126bf867193d6be14c
+Copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* timespec -- System time interface
+#
+#   Copyright (C) 2000, 2002, 2004, 2005, 2007 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
+File: ./lib/tmpdir.c
+Hash: 9de08a71227a2821978be3e6919f6232ccf2022430447f39b22e612021217871
+Copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1999, 2001-2002, 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
+#   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/tmpdir.h
+Hash: 4b2eb7839ae3ddbdafca11312d499ac3f469953e05e927e65a57b2d9308792ef
+Copyright: 2001-2002 Free Software Foundation, Inc.
+License: 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:
+#/* Determine a temporary directory.
+#   Copyright (C) 2001-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
+#   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/tmpfile-safer.c
+Hash: b6f4f570c8724d3c78e2c7ab73929f9b4a3b30aefc058105e71ec434b5d5fc89
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke tmpfile, but avoid some glitches.
+#   Copyright (C) 2006, 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/tmpfile.c
+Hash: 5626c82fc49099877c1350e01f8a80e576b6fdc73ea57162c6989f956945259f
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Create a temporary file.
+#   Copyright (C) 2007 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/trigl.c
+Hash: 8b60f78b69de56a777043569a8e3ccbef997faaac10c41e5bc0f4b450c5a66ae
+Copyright: 1999, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Quad-precision floating point argument reduction.
+#   Copyright (C) 1999, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Jakub Jelinek <jj@ultra.linux.cz>
+#
+#   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: ./lib/trigl.h
+Hash: 449a860f004a88ea94a76732170e38c1a861ddabf4f12c537138efbb777195c6
+Copyright: 2002, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Declarations for sinl, cosl, tanl internal functions
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+File: ./lib/trim.c
+Hash: 44cefabd5123525fff9af425e47c2ddb0a6a20909271f557f7954ed07cedca92
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Removes leading and/or trailing whitespaces
+#   Copyright (C) 2006-2008 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/trim.h
+Hash: 9bb7a015426b58554581d2f9b0de5a6befeeaa73d42329bcd2d57fe4dcd84b1b
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Removes leading and/or trailing whitespaces
+#   Copyright (C) 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 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/trunc.c
+Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards zero.
+#   Copyright (C) 2007 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/truncf.c
+Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards zero.
+#   Copyright (C) 2007 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/truncl.c
+Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Round towards zero.
+#   Copyright (C) 2007 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/tsearch.c
+Hash: 2db46af0a909abf4d92d20a20556b8de4d7d625028def290071fe4974ed0187b
+Copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
+#   Contributed by Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>, 1997.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 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: ./lib/u64.h
+Hash: 691a491094cad62e2b863a76aeeed5899b9d8b7ecc6c6aef6ea2cbc1f4fd6dff
+Copyright: 2006 Free Software Foundation, Inc.
+License: 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:
+#/* uint64_t-like operations that work even on hosts lacking uint64_t
+#
+#   Copyright (C) 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 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: ./lib/uinttostr.c
+Hash: 2dc91a8e7841d85e1d053f04554487d1eb07a9f84f68af10180ba7b0d865ac01
+Copyright:
+License:
+#Header:
+##define inttostr uinttostr
+##define inttype unsigned int
+##include "inttostr.c"
+File: ./lib/umaxtostr.c
+Hash: 690d780ea9b95f6c5cdc34874b540dd5b1bb28599537659f46ace170d23ed219
+Copyright:
+License:
+#Header:
+##define inttostr umaxtostr
+##define inttype uintmax_t
+##include "inttostr.c"
+File: ./lib/uname.c
+Hash: 68f248ca49d11bdb00b1adfa2bf6527ea340aed829064d91877566fc4841c919
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* uname replacement.
+#   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/unicase.h
+Hash: 5ee6233f3be7001239f84aacf30f5e5ca96631f010b6f91a16a9b6f877642fae
+Copyright: 2002, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Unicode character case mappings.
+#   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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unicase/cased.c
+Hash: c996cbcd82623c5036d89e080e6689b335915047febbe60fe2d10b98b4a99023
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether a Unicode character is cased.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+
+
+######################################################################
+## UPTOHERE
+######################################################################
+File: ./lib/unicase/cased.h
+Hash: dff874729fe88b9abf1df3a7e29d95060e758a13afe27f18862e9091171bac89
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Casing Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[15 << 4];
+#  }
+File: ./lib/unicase/casefold.h
+Hash: d0ff7d9648a8496f25c563ab8a2d7b0a1200cbcb64444b238f29606d4bfc6ecb
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/caseprop.h
+Hash: bf76e4707fab507bdb7069d1750d83c55e5e7e355a93af71fd735ad042068179
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case related properties of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/context.h
+Hash: 13a1c95eebeae5e2b3ff2ca41305b3524504304664cd71a17eaa832894493f23
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping contexts of UTF-8/UTF-16/UTF-32 substring.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/empty-prefix-context.c
+Hash: 493f93cb9eabb70c693a5d984111996d190a98c2c7fe60a7c67fd984414df699
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of empty prefix string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/empty-suffix-context.c
+Hash: b55f2b593f51969d89f98c6e7c460af0afa6d588e8123971775b1e2629a44b0a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of empty suffix string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/ignorable.c
+Hash: a8487e39b5d100c90eebc45fa11632191a89a473d5ec421ff55594e53de557bb
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether a Unicode character is case-ignorable.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/ignorable.h
+Hash: eebec1a20e857e920041811c16a084f7517860f172ebf6dbe93bc9e89b00de9c
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Casing Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+File: ./lib/unicase/invariant.h
+Hash: 2b5beb7dbf02de63e2b3d6debd2322c0d62a0c2d1f309f0cecfb6daa5de73437
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Internal functions for Unicode character case mappings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/locale-language.c
+Hash: 3add1adc16ce963dcff1fd7b7596b8aafaa5e33639dbaff0dcbc4074d86db3d1
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Language code of current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/locale-languages.gperf
+Hash: 95c56feb8187781fe9f326e97d88816e218edd31dfceee6446844c7d8009bfa8
+Copyright:
+License:
+#Header:
+#%language=ANSI-C
+#%define hash-function-name uc_locale_language_hash
+#%define lookup-function-name uc_locale_languages_lookup
+#%compare-lengths
+#%compare-strncmp
+#%readonly-tables
+#%pic
+#/* List of languages taken from gettext/gettext-tools/src/lang-table.c
+#   on 2009-02-07.  */
+#%%
+#"aa", /* Afar" */
+#"ab", /* Abkhazian" */
+#"ace", /* Achinese" */
+#"ae", /* Avestan" */
+#"af", /* Afrikaans" */
+File: ./lib/unicase/simple-mapping.h
+Hash: 895a0e771188c08f6fd448c3cee007eb3cd4ffefa11bb366422bb261dd5c851f
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Simple case mapping for Unicode characters.
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/special-casing-table.gperf
+Hash: a4b12e5d88d868cec05dd05e6bcf4f2484acfc55fde9c60a44d9f7bf345a9d93
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Special casing rules of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables.c for Unicode 5.1.0.  */
+#struct special_casing_rule { char code[3]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name code
+#%define hash-function-name gl_unicase_special_hash
+#%define lookup-function-name gl_unicase_special_lookup
+#%compare-lengths
+#%compare-strncmp
+#%readonly-tables
+#%omit-struct-type
+#%%
+#"\x00\x49\x00", 1,  SCC_MORE_ABOVE       , {  'l',  't' }, { 0x0049,      0,      0 }, { 0x0069, 0x0307,      0 }, { 0x0049,      0,      0 }, { 0x0069,      0,      0 }
+File: ./lib/unicase/special-casing.c
+Hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Special casing table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/special-casing.h
+Hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Special casing table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/tocasefold.c
+Hash: 703c9c241129843d8d359363451912cddac5124fd6767b3df0331f490d4cef0d
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefold mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/tocasefold.h
+Hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[26 << 7];
+#  }
+File: ./lib/unicase/tolower.c
+Hash: 6ea23704da935f20f2444eb5226c07f8a734da7cf55afdb1219395887e6848ca
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Lowercase mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/tolower.h
+Hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[26 << 7];
+#  }
+File: ./lib/unicase/totitle.c
+Hash: 7c2f4b5f520e8591e420340d3d582ec1ad48b0936da5b8893b4d7fb00243a9f8
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/totitle.h
+Hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[29 << 7];
+#  }
+File: ./lib/unicase/toupper.c
+Hash: b42a7680521ba55979491c693e3642382a98438c56de36812766067cc151d3b5
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Uppercase mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/toupper.h
+Hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[29 << 7];
+#  }
+File: ./lib/unicase/u-casecmp.h
+Hash: bb95e0aba8ef01b225a0c2888a95a322733d0b39d3206f21b44f00d2b11a430d
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case and normalization insensitive comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-casecoll.h
+Hash: d3d6b4ec932f80e78f2e81cc958dcc14ff902e2977a213c27ba521270864a873
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, case and normalization insensitive comparison of Unicode
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u-casefold.h
+Hash: fcee85a09cd481698f5296dae6dde1b8d84d33fb95ff41483cc4788c692812f2
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for Unicode strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-casemap.h
+Hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-casexfrm.h
+Hash: 1639cd4e229bbbf5df8d53b658e691f476f9d9485f16edcfe5d7cc148e86a497
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for case insensitive comparison of Unicode
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u-ct-casefold.h
+Hash: a2275dea893b28c3fe92ae867de9c70a7fdf39001053d9ef2f4091a7497e9c1b
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for Unicode substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-ct-totitle.h
+Hash: 2570f24e1a280b6b4cb7de56c85279674319e4cea7c2ad984241975245e76226
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-8/UTF-16/UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-is-cased.h
+Hash: b4e0b17776175ec6033c0aba5d535daa7c3667a42c53463114840fbf600d5cb9
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether case matters for a Unicode string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-is-invariant.h
+Hash: f6e201df57529cae6e7639242610ee3722e3447d1d3ecfd99c67f98811982a3a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether a Unicode string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-prefix-context.h
+Hash: 823e52633d441082aa1489c520794e4fb0ef899378e8e5f75838d66a448ae3a7
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of prefix UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-suffix-context.h
+Hash: 9c7366f076df0f676f00acef4437ffea7f561447d007d2f7d5476e9e0fd6f74b
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of suffix UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u-totitle.h
+Hash: 245ae2aa6d16c22e82aaabe269a3759b3a45a50bf72453eccfcbd3162c57222b
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-casecmp.c
+Hash: 3a18bce5adf8c96faba2f53500087a79f62fc9e8e3dfe15ec13f0cb1f547f218
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case and normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-casecoll.c
+Hash: cf6f8d7d407a05dee71fb2903a326d279bf99c7dcadbcce7dfe2753b99386a94
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, case and normalization insensitive comparison of UTF-16
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u16-casefold.c
+Hash: 75f35ff374fbb2c36d1d0e23f4a52d96dc924835dea6fbd11181b714a8b9a88c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-casemap.c
+Hash: 7ca080531110c4bbc03962b55be3cc21200cdb8dce98b6a8b207c1295bb556d7
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-casexfrm.c
+Hash: 2a3efd68520d13af88078b6294c4fb7eb225b0e8671c614ea31dd446d448278a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for case insensitive comparison of UTF-16
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u16-ct-casefold.c
+Hash: 24f57fcc73e888d74a192de0090f47f428b35a680d6ad7c69c164dab39ff4c47
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-ct-tolower.c
+Hash: d7dd5fefe8bd374e2f5f46c7f77a2521bd272c6078ae4cc013e3d1fc65106b30
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Lowercase mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-ct-totitle.c
+Hash: 0a0527c17c90268b46de1096fbac12b53e7b60ee1e5077f6e34f7fdb6e648aee
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-ct-toupper.c
+Hash: 465b7179f665acb6d3c0e552e8d0d765089dce1ade88007d34a0b367f683f47e
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Uppercase mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-is-cased.c
+Hash: 9ec0139d88d886ab48d1975d53ebd8a5a09332ce426b8febeb5dba0357f68f3a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether case matters for an UTF-16 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-is-casefolded.c
+Hash: 9d7f494e9dc39a744a34b4c147d142cbeebddff7b543829ad15cc13a9eb29cbf
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-16 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-is-invariant.c
+Hash: dd5c520c3534286f4aa5e4327f9d4c303736f424c95627795342c46aeb781cd8
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-16 string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-is-lowercase.c
+Hash: 204472e2bec896b7e33430f737c98353a125ff880b31094642769f4b2f7577ba
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-16 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-is-titlecase.c
+Hash: ee90d96cfa019ed4e11214211d2ea9730eb6f098dbff34c2db011a1757c91e87
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-16 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-is-uppercase.c
+Hash: 010d6156b827f55f04ceacc5bc59dcf08fab12f5db42c4636d41a15292ad1ce1
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-16 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-prefix-context.c
+Hash: da3309e1a77a472f5ade2ed85dc9271221109158157c6579b902e0756539b643
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of prefix UTF-16 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-suffix-context.c
+Hash: d51c3f25e16b9bbd18428d84681d7a0acfd756fcce1c341bd472f1079da44f22
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of suffix UTF-16 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-tolower.c
+Hash: 655b2ed28eeba9ad9c255747e307455643e2fc47b498a2e71e0178590b25d5b2
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Lowercase mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-totitle.c
+Hash: c4408b2dcc2c238f29f621912ecc12719d353ba1317d179d2224fe8ddb0322fe
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u16-toupper.c
+Hash: 220470c0e6a7cfd81d08f4c8f0b8fe5d574782bbd13f1c820af6ef70ed2b3385
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Uppercase mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-casecmp.c
+Hash: 1781408004da90c050ae9a5f6570946516817493ba3fe45afde124d51583089a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case and normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-casecoll.c
+Hash: 3300da7050c301689a45980d17099c391d7648b19c03c2d5f42557b804d061ec
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, case and normalization insensitive comparison of UTF-32
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u32-casefold.c
+Hash: 45bb91d48e51b6cec99641778244ab581c70aeacdb122f32a74b8f243d2fda3b
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-casemap.c
+Hash: 247aa4ba2a663446dce07f5c913f40b60673b7f7e3ca19f403bee9d3a78ea93e
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-casexfrm.c
+Hash: 4ebb9b8760ba8a740ddfab863217d0868628faab7f9e24f26788741b48ea77fa
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for case insensitive comparison of UTF-32
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u32-ct-casefold.c
+Hash: 39bd9add0aed1db997be47956d8e91683fc6fc2db50d12228ef6b49d4c7b9c54
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-ct-tolower.c
+Hash: 5e11cb2a0b6b64c1876630a435fb7c2f7d28d37bb656785b75d588cc9369ff27
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Lowercase mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-ct-totitle.c
+Hash: 5a1479bf7f4997033a317be5e2bece1df438b55cdbc1cb577fac817314f41fa4
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-ct-toupper.c
+Hash: e9e26cd78f76cc5a964f8528618e20cd2e3f6689754b5c753feab64e1b9b720d
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Uppercase mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-is-cased.c
+Hash: 37f54a0969d6155ec3c8bcd617764b5c3cc5188acd4f800693ce4cb905a50a26
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether case matters for an UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-is-casefolded.c
+Hash: 266206ce9a0daf342cd70f30bd761d5d4c4c3731299b5db880df0d77ac22effc
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-32 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-is-invariant.c
+Hash: 7c8f061345e51ebfdb5ce97958c50ba769e4082cb19dbc42e96981eb4db800b6
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-32 string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-is-lowercase.c
+Hash: 9dc638c9ad9f87b2be59801ccc280ad79b58577dad018f9749e0ca8438f7211e
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-32 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-is-titlecase.c
+Hash: d833857fc52a56d8c5c6b41b0170810ecf56c399611254909febef6150854139
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-32 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-is-uppercase.c
+Hash: e03ec24b3075004b438ab9007fb42afc786d694f1260409db1b8c963dc35be4e
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-32 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-prefix-context.c
+Hash: 2d3ebd1fe1ca9d551f7ea8c5ff3dd4eec61c67e8864a251143122304ac020169
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of prefix UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-suffix-context.c
+Hash: de92f410f7f6c2f4f59fc279e266069f68bebb3cf25d821bde419d5ff8649b49
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of suffix UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-tolower.c
+Hash: 04e0d3c9e752bb842c5255065caa6fed1aaa7124bbc9872b4bc596b29b646b1a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Lowercase mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-totitle.c
+Hash: ec057f66ee289c109f8b27dca03f86f335bdd05f950070280d61f2ba618646c3
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u32-toupper.c
+Hash: 606b4a302876209c7e238817387def24e5ab25c80234eb6fd6d0e4a996d4dc09
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Uppercase mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-casecmp.c
+Hash: b41ef1fbbe478f5e3b1eb110e5e6b250c5979421502f6ca1b7dd19de6fa798b1
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case and normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-casecoll.c
+Hash: 86360fb8c79bf57b016601bee20af58b883c31f6a04536ea4f395a228987d704
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, case and normalization insensitive comparison of UTF-8
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u8-casefold.c
+Hash: a60314a48ef1bae6d56c720648375fb4e57db1acb91ae7b0c208b93ce8535cbd
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-casemap.c
+Hash: 24edb83e00615db47ba7c0efec239390e1c2d9ed8f6b30e604adcd3a0c82d0f5
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-casexfrm.c
+Hash: 167f36a57e4c24ac18f4a6e9bc73d9257a39d3efa6b38bcbd186084501395295
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for case insensitive comparison of UTF-8
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unicase/u8-ct-casefold.c
+Hash: ffad7b59d6730a4f76e99dc964df770e6014da0ee66c45206264d9f709e621bd
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Casefolding mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-ct-tolower.c
+Hash: b16f9a890b5817213de428b7f08aac3ffe1702b0821d98a0f0a3b56463e1c091
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Lowercase mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-ct-totitle.c
+Hash: 7304bf1b4bac0c2ba21867f89287a0c478f7ac1b9d0ce1418009798468b69335
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-ct-toupper.c
+Hash: ba46d214f489da0c181c73148e83191840c448fd417a17161061a3c5be227066
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Uppercase mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-is-cased.c
+Hash: 2094cfba452dcdde8e0de5eb5b8a34860eccd1673f4f1ec34de86d8887f2deb2
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether case matters for an UTF-8 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-is-casefolded.c
+Hash: ad6836695e22fc1c621033a020438153a8389f1ea9c00c3aa7db503668e87b8c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-8 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-is-invariant.c
+Hash: 896e334b5f842024399c0bf0d0aede192f16c5503e6008659a286281e8d275d3
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-8 string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-is-lowercase.c
+Hash: 9ad379585ec68ebcaf3e6020e2874cb590ef8392bfabe67b0f415a36283d1582
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-8 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-is-titlecase.c
+Hash: 40cddd86874cd3df35e51cf677bd29c84f0bdcfda6279263a149d4889018590e
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-8 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-is-uppercase.c
+Hash: e6b62e7fa6784af5a99641078aa13cd2ed9636c64e9ca02ec2500c009aa90498
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-8 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-prefix-context.c
+Hash: 2faad600e89a2f4df323bb0bce43f95d9c50c70477c783b5069bdcdcef2c823f
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of prefix UTF-8 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-suffix-context.c
+Hash: 9b47dcd3d28b76b4c20ecb89edca813790c5587a53b66d811be0f119344dd512
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case-mapping context of suffix UTF-8 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-tolower.c
+Hash: 3596157072c41f644c9922e9b8b776dda9a83aaad3b5ac6228db0c697dba7b22
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Lowercase mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-totitle.c
+Hash: 6caca3f452e6e3d203e6b9753be9652b60beecad4fa92a0ece54e81814bea56c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Titlecase mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/u8-toupper.c
+Hash: a6fb8d6fa933fd65fffc9ca374211407209be087c7009bde3a72a43024734e9f
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Uppercase mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/ulc-casecmp.c
+Hash: a14530498e0386b3448529dafb33fdce903ec4592d2be37361260862b2fa0f16
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case and normalization insensitive comparison of strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/ulc-casecoll.c
+Hash: 6f77627a28abe40aea7d9b6d12d0402d8390fc1e9b01ef47f55c8b197544dc48
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, case and normalization insensitive comparison of strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/ulc-casexfrm.c
+Hash: 34c8a6903e645541b4faddf6fc29db8e42c13da1b6c136dd6f41caa01745f4e4
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for case insensitive comparison of strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicase/unicasemap.h
+Hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Case mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unicodeio.c
+Hash: 33aacdf0005527850dd4fb652e296df5c0c204a8054ea9ddcfa120866f3a0e9e
+Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Unicode character output to streams with locale dependent encoding.
+#
+#   Copyright (C) 2000-2003, 2006, 2008 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
+File: ./lib/unicodeio.h
+Hash: 1e47f450b9b67595834d03f31709e694aa7d4ad6febfdbb6ecbaa1bec1cee139
+Copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Unicode character output to streams with locale dependent encoding.
+#
+#   Copyright (C) 2000-2003, 2005, 2008 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
+File: ./lib/uniconv.h
+Hash: 5e6e0f51341a6e53f0b352b8bb7db9465bb35a0e3cd37942b46076d0a7af3702
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversions between Unicode and legacy encodings.
+#   Copyright (C) 2002, 2005, 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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u-conv-from-enc.h
+Hash: 188629e474bbbcd1229c8c6833219797032c420574e752902bca4747712a6d66
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-16/UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u-conv-to-enc.h
+Hash: e0aa45049139d0368fd9cc0402cf2f6ac92e52d781ad1466a494513b14fb40b3
+Copyright: 2002, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-16/UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2009 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u-strconv-from-enc.h
+Hash: 7be24e48ba83701cdbc39b85497b3fdb44b90463a283f46fb720f91ce2d7ae33
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-8/UTF-16/UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u-strconv-to-enc.h
+Hash: 7a46757983eda3f42167efe493ff5b1224b5fa378ccbb3ef3a54a34774fff733
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-16/UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u16-conv-from-enc.c
+Hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u16-conv-to-enc.c
+Hash: 63cf6c42e78a055e4bc0152c66c81d9e677aca47430eeff2566e821608a1f937
+Copyright: 2002, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u16-strconv-from-enc.c
+Hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u16-strconv-from-locale.c
+Hash: abbeae189b434069f8b5082a0b74cc1c0ef22496521de651ee804512ebbcf297
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-16 from the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u16-strconv-to-enc.c
+Hash: 00764e134b95f7908e7ddd1a025d875ec6785ff8b6b69d9e92d37be3f23fa300
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u16-strconv-to-locale.c
+Hash: f67645d89afa61a452bfd22d22f76fb39ef24abdd3e44667aade0ac4d78c1fac
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-16 to the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u32-conv-from-enc.c
+Hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u32-conv-to-enc.c
+Hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u32-strconv-from-enc.c
+Hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u32-strconv-from-locale.c
+Hash: b5f98b5645d8b9d620808c54cbe34c5977a84043ce50fc58401924535f12208f
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-32 from the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u32-strconv-to-enc.c
+Hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u32-strconv-to-locale.c
+Hash: e1b205c9ed76dd104a13b1f6427ff0fedfe1ac06bc458fcd942d94557d74e437
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-32 to the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u8-conv-from-enc.c
+Hash: f48ae3336f9571f13c2904bc2878141e7a9d272c1baf5d3a4688fd1f226f3546
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 2002, 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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u8-conv-to-enc.c
+Hash: c0e5b93ef7fa66fca4a5b9fbd7dfcabd13c1d87f9713fbaac56bcc56fa4137eb
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 2002, 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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u8-strconv-from-enc.c
+Hash: c9992a9820bc23e9834057a26dff394918e76ca830c2f5ac97e0d67c102baa7c
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u8-strconv-from-locale.c
+Hash: 6da43447486f93c497947a213640c53bf620094b211a782c60138d9057455ecb
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion to UTF-8 from the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u8-strconv-to-enc.c
+Hash: 0942490a0de4f7b06edd517c57084e60348a1d79142fec2f05c531689a4cb814
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniconv/u8-strconv-to-locale.c
+Hash: e38b1c908eef1d22cb3bee0f7157cbc3b3a409ac8fda47c5f4f9c630687e934c
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion from UTF-8 to the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unictype.h
+Hash: b8e67dc9e906270547a47f99abb0a4b7b1f7b1acf607726786df995910314d43
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Unicode character classification and properties.
+#   Copyright (C) 2002, 2005-2009 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unictype/3level.h
+Hash: ca73868d0849016e4c33c48ca11bccc77fda03863928d329ea03f644c3e4e020
+Copyright: 2000-2001 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 2000-2001 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Bruno Haible <haible@clisp.cons.org>, 2000.
+#
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@gnu.org.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+File: ./lib/unictype/3levelbit.h
+Hash: f1ad93bae7eab43736b46a51a2dc7303c2c4d8ad4563a2cd7e0740587a86880a
+Copyright: 2000-2002 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Copyright (C) 2000-2002 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Bruno Haible <haible@clisp.cons.org>, 2000.
+#
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   See glibc/locale/programs/ld-ctype.c.
+#   Bugs can be reported to bug-glibc@gnu.org.
+#
+#   This program is free software; you can redistribute it and/or modify it
+#   under the terms of the GNU General Public License as published by the
+#   Free Software Foundation; either version 2, or (at your option) any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+File: ./lib/unictype/Makefile
+Hash: bdab4fa6ea70dfa476e8e0bfb1a837bc7e67c3fb607376e6171cc27d23e66848
+Copyright:
+License:
+#Header:
+## Makefile for generating the table files from unicode.org data.
+#
+#ARCHIVE_DIR = /gfs/ibook/Volumes/ExtData/www-archive/software/i18n/unicode/ftp.unicode.org/ArchiveVersions
+#VERSION = 5.0.0
+#UCD_DIR = $(ARCHIVE_DIR)/$(VERSION)/ucd
+#
+#EXTRA_DIST = gen-ctype.c 3levelbit.h 3level.h
+#
+#all: force
+#      gcc -g -Wall gen-ctype.c -o gen-ctype
+#      ./gen-ctype $(UCD_DIR)/UnicodeData.txt \
+#                  $(UCD_DIR)/PropList.txt \
+#                  $(UCD_DIR)/DerivedCoreProperties.txt \
+#                  $(UCD_DIR)/Scripts.txt \
+#                  $(UCD_DIR)/Blocks.txt \
+File: ./lib/unictype/bidi_byname.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/bidi_name.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/bidi_of.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/bidi_of.h
+Hash: c2182d910737b90cff77f4bab4cc2b1567a8713202c2b24e55951bab986d6627
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Bidi categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define bidi_category_header_0 16
+##define bidi_category_header_1 17
+##define bidi_category_header_2 7
+##define bidi_category_header_3 511
+##define bidi_category_header_4 127
+#static const
+#struct
+#  {
+#    int level1[17];
+#    short level2[4 << 9];
+#    unsigned short level3[101 * 40 + 1];
+#  }
+File: ./lib/unictype/bidi_test.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/bitmap.h
+Hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Three-level bitmap lookup.
+#   Copyright (C) 2000-2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2000-2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/block_test.c
+Hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Blocks of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/blocks.c
+Hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Blocks of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/blocks.h
+Hash: b6a9e5481a1b0ef31c2bcdeecce12f84a6b3107f42cda43d7b5490e51c7e6b88
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Unicode blocks.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#static const uc_block_t blocks[] =
+#{
+#  { 0x0000, 0x007F, "Basic Latin" },
+#  { 0x0080, 0x00FF, "Latin-1 Supplement" },
+#  { 0x0100, 0x017F, "Latin Extended-A" },
+#  { 0x0180, 0x024F, "Latin Extended-B" },
+#  { 0x0250, 0x02AF, "IPA Extensions" },
+#  { 0x02B0, 0x02FF, "Spacing Modifier Letters" },
+#  { 0x0300, 0x036F, "Combining Diacritical Marks" },
+#  { 0x0370, 0x03FF, "Greek and Coptic" },
+#  { 0x0400, 0x04FF, "Cyrillic" },
+#  { 0x0500, 0x052F, "Cyrillic Supplement" },
+File: ./lib/unictype/categ_C.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_C.h
+Hash: 8e35c171e0730e196c1752e71128804f55f2ae84579e656cc0a6aa47a1eb35ba
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[52 << 4];
+#  }
+File: ./lib/unictype/categ_Cc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Cc.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/categ_Cf.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Cf.h
+Hash: 47db4afe1e094f7e2c2ef9d8189af3a3412ffc4705e0de359c9f1b921fd15e66
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+File: ./lib/unictype/categ_Cn.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Cn.h
+Hash: b39549af020761e1993a548f9b823c05ff2a6e49e6a537ce7fa343aeaa53b145
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[6 << 7];
+#    /*unsigned*/ int level3[51 << 4];
+#  }
+File: ./lib/unictype/categ_Co.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Co.h
+Hash: 99e430ef6329b9f7d5ebc51a76e1e2ca53c0507494d6c10546b784e6049bc663
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+File: ./lib/unictype/categ_Cs.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Cs.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/categ_L.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_L.h
+Hash: 8fc9e0984df0753aa0b9fad85007840415de5c70af85be4dfbe95bf520fb1385
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[42 << 4];
+#  }
+File: ./lib/unictype/categ_Ll.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Ll.h
+Hash: 785b1fa8fec42960be4917a6e8f82b3c4c7525cadc22dd518aac0cb7bfcd958f
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[13 << 4];
+#  }
+File: ./lib/unictype/categ_Lm.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Lm.h
+Hash: a37e7a248becadc97caf50c64c3a3e054194e5a71c4eb62054f56f24f2c97729
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[16 << 4];
+#  }
+File: ./lib/unictype/categ_Lo.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Lo.h
+Hash: 65c339f1a109086f8d25277fa55fd83bf5aa46d2fc13004aecbc8ca503750a54
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[39 << 4];
+#  }
+File: ./lib/unictype/categ_Lt.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Lt.h
+Hash: f78dca06ee53b82be63262113da2e6f5ddd027a997d069657b643daff281d7c6
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/categ_Lu.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Lu.h
+Hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[12 << 4];
+#  }
+File: ./lib/unictype/categ_M.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_M.h
+Hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+File: ./lib/unictype/categ_Mc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Mc.h
+Hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[12 << 4];
+#  }
+File: ./lib/unictype/categ_Me.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Me.h
+Hash: 19978c351a45dad43fc65cd804226182244c2b634a8a7e6541489ac1f174e000
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+File: ./lib/unictype/categ_Mn.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Mn.h
+Hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+File: ./lib/unictype/categ_N.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_N.h
+Hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+File: ./lib/unictype/categ_Nd.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Nd.h
+Hash: 645d0029c292be21c462e6bd7af2d005278ff9bc83122e0eeaacaadf94cd21d3
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[17 << 4];
+#  }
+File: ./lib/unictype/categ_Nl.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Nl.h
+Hash: e884eada39c812b459e7b7e481b4419599b18f1af710bd8482a696c5cada155a
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+File: ./lib/unictype/categ_No.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_No.h
+Hash: 0deece216789474ac445dbdb7296d6d5e8e7e5a8f95dfaf2e67a4c5711e18b57
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[18 << 4];
+#  }
+File: ./lib/unictype/categ_P.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_P.h
+Hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+File: ./lib/unictype/categ_Pc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Pc.h
+Hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+File: ./lib/unictype/categ_Pd.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Pd.h
+Hash: f547ebd71e710e45743883d9de8b47192f46dfc611373c5c89daf8bdaf5aca6e
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+File: ./lib/unictype/categ_Pe.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Pe.h
+Hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+File: ./lib/unictype/categ_Pf.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Pf.h
+Hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+File: ./lib/unictype/categ_Pi.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Pi.h
+Hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+File: ./lib/unictype/categ_Po.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Po.h
+Hash: 26e8efe9bcc1419927bbca15527c8d81a1b903390185ff5e0b585341b94ad994
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+File: ./lib/unictype/categ_Ps.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Ps.h
+Hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+File: ./lib/unictype/categ_S.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_S.h
+Hash: 81291c4df9432e81c35739340c26ef260186afb2e55916cadd9c6a52dc28dae6
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[36 << 4];
+#  }
+File: ./lib/unictype/categ_Sc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Sc.h
+Hash: a172e78fd27a83c4692b30614cc4ebd009a1b0684b24bb6be9aeb769febacdd8
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+File: ./lib/unictype/categ_Sk.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Sk.h
+Hash: c15094a471ca185c4c200e38783cf9e759fa3e0e8fd07b81e3058a1a7ffd5f44
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+File: ./lib/unictype/categ_Sm.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Sm.h
+Hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[12 << 4];
+#  }
+File: ./lib/unictype/categ_So.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_So.h
+Hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+File: ./lib/unictype/categ_Z.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Z.h
+Hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/categ_Zl.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Zl.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/categ_Zp.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Zp.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/categ_Zs.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_Zs.h
+Hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/categ_and.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_and_not.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_byname.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_name.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_none.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_of.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_of.h
+Hash: 2a28fb8f13c04a8d3e8f05dba59e8336dbb1c9fcd244a69729bda0d6cab7903c
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define category_header_0 16
+##define category_header_1 17
+##define category_header_2 7
+##define category_header_3 511
+##define category_header_4 127
+#static const
+#struct
+#  {
+#    int level1[17];
+#    short level2[5 << 9];
+#    unsigned short level3[148 * 40 + 1];
+#  }
+File: ./lib/unictype/categ_or.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/categ_test.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/combining.c
+Hash: 90adbd1167196894d026717b09dc16ead930ab4e0e79fc939f9b943b5444cb36
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Combining classes of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/combining.h
+Hash: 1344ff3ca3a44994d02dfae3bf4d2e1ef6b65e951856e19ba186eff2a5f3ddfe
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Combining class of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define combclass_header_0 16
+##define combclass_header_1 2
+##define combclass_header_2 7
+##define combclass_header_3 511
+##define combclass_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    unsigned char level3[43 << 7];
+#  }
+File: ./lib/unictype/ctype_alnum.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_alnum.h
+Hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[44 << 4];
+#  }
+File: ./lib/unictype/ctype_alpha.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_alpha.h
+Hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[44 << 4];
+#  }
+File: ./lib/unictype/ctype_blank.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_blank.h
+Hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/ctype_cntrl.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_cntrl.h
+Hash: c07f81242830a91177e15d05045170319602acc2f3494d6e1d6abc1ddd693c0d
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/ctype_digit.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_digit.h
+Hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/ctype_graph.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_graph.h
+Hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[52 << 4];
+#  }
+File: ./lib/unictype/ctype_lower.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_lower.h
+Hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+File: ./lib/unictype/ctype_print.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_print.h
+Hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[52 << 4];
+#  }
+File: ./lib/unictype/ctype_punct.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_punct.h
+Hash: cb1c5c1ff9e38b590896695c0436f5a583961a5aecf9ca57e76b27ba0a4e33c8
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[45 << 4];
+#  }
+File: ./lib/unictype/ctype_space.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_space.h
+Hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/ctype_upper.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_upper.h
+Hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+File: ./lib/unictype/ctype_xdigit.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/ctype_xdigit.h
+Hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/decdigit.c
+Hash: dd98fdcdaa9cd24e7260ed5252c6393ca1fc1c32b1afef1b4a9b98e57eadc26d
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Values of decimal digit Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/decdigit.h
+Hash: 729a7ffd2cedc46ac857f670fadbd787a8bd1dae5b9433ebebda7916d18af8ce
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decimal digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define decdigit_header_0 16
+##define decdigit_header_1 2
+##define decdigit_header_2 7
+##define decdigit_header_3 511
+##define decdigit_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    unsigned char level3[12 << 6];
+#  }
+File: ./lib/unictype/digit.c
+Hash: 96f1f23423e02f86953ba94177173864040511deeb2b553746c503eedc69f695
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Values of digit Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/digit.h
+Hash: e354516c3c1294749f97668b7aecc4aba4cd72013024992226add61ca235a879
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define digit_header_0 16
+##define digit_header_1 2
+##define digit_header_2 7
+##define digit_header_3 511
+##define digit_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    unsigned char level3[20 << 6];
+#  }
+File: ./lib/unictype/identsyntaxmap.h
+Hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Three-level bitmap lookup.
+#   Copyright (C) 2000-2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2000-2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/mirror.c
+Hash: c8eb63b007266041de16a9e45bf7b8766d2016e3dd82e9b801920e7e8ee0b265
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Mirrored Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/mirror.h
+Hash: 4e47d47442a6953840583406acab5bcd285bb8c2d7356180dc28bb277e1e7953
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Mirrored Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define mirror_header_0 16
+##define mirror_header_1 2
+##define mirror_header_2 7
+##define mirror_header_3 511
+##define mirror_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[22 << 7];
+#  }
+File: ./lib/unictype/numeric.c
+Hash: 14a734bfffede7c850c2263c2844a2f42a847a8fdb26c6f4940a825a35a672e2
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Values of numeric Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/numeric.h
+Hash: ba1e5ba6fcb88dbb798cd02e5cc119132bc31e49b5a24d8e19ae906ada5711ea
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Numeric values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#static const uc_fraction_t u_numeric_values[108] =
+#{
+#  { 0, 0 },
+#  { 0, 1 },
+#  { 1, 1 },
+#  { 2, 1 },
+#  { 3, 1 },
+#  { 4, 1 },
+#  { 5, 1 },
+#  { 6, 1 },
+#  { 7, 1 },
+#  { 8, 1 },
+File: ./lib/unictype/pr_alphabetic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_alphabetic.h
+Hash: 99efc65e4f46e3ad0efe4f73de0fc1fd74196d0de0892e8640d57da681726ea2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[44 << 4];
+#  }
+File: ./lib/unictype/pr_ascii_hex_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_ascii_hex_digit.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_arabic_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_arabic_digit.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_arabic_right_to_left.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_arabic_right_to_left.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_block_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_block_separator.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_boundary_neutral.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_boundary_neutral.h
+Hash: cfee85fd908c11272a95f63abb54df22efd9342b5462d93c6b38df59fbd1ab71
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_common_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_common_separator.h
+Hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_control.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_embedding_or_override.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_embedding_or_override.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_eur_num_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_eur_num_separator.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_eur_num_terminator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_eur_num_terminator.h
+Hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_european_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_european_digit.h
+Hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_hebrew_right_to_left.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_hebrew_right_to_left.h
+Hash: 66483e8eda823c6234a852450a0e3d7d1b26de2c6f4e7ed117dfd7a5f60b4eb8
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_left_to_right.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_left_to_right.h
+Hash: cca189bf24e298f3c3f5f843ff18dfce8c007eed8233e52d0e6dd7f92c32a2bf
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[38 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_non_spacing_mark.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_non_spacing_mark.h
+Hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_other_neutral.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_other_neutral.h
+Hash: 1e8e84691fd416f70f94e14f52604d742feb401a9e83a8f82c5c2610488e4849
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[31 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_pdf.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_pdf.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_segment_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_segment_separator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_bidi_whitespace.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_bidi_whitespace.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_byname.c
+Hash: d40e7939956111bd30348da1dac41960fd3fdc6cf6f680cb8573e79ccbedc970
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_byname.gperf
+Hash: b16f7907c490b5f7fb2747f5b6b19bd7f6792f0f901474152f7c7fc7b95b151c
+Copyright:
+License:
+#Header:
+#struct named_property { const char *name; uc_property_t property; };
+#%struct-type
+#%language=ANSI-C
+#%define hash-function-name properties_hash
+#%define lookup-function-name uc_property_lookup
+#%7bit
+#%readonly-tables
+#%global-table
+#%define word-array-name properties
+#%%
+#white_space, { &uc_is_property_white_space }
+#alphabetic, { &uc_is_property_alphabetic }
+#other_alphabetic, { &uc_is_property_other_alphabetic }
+#not_a_character, { &uc_is_property_not_a_character }
+#default_ignorable_code_point, { &uc_is_property_default_ignorable_code_point }
+File: ./lib/unictype/pr_combining.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_combining.h
+Hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+File: ./lib/unictype/pr_composite.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_composite.h
+Hash: c768605f7580ce16b1f809ff6581158ff3026e0f7e626da4b880421c26f3f758
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[23 << 4];
+#  }
+File: ./lib/unictype/pr_currency_symbol.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+
+######################################################################
+## UPTOHERE
+######################################################################
+File: ./lib/unictype/pr_currency_symbol.h
+Hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+File: ./lib/unictype/pr_dash.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_dash.h
+Hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+File: ./lib/unictype/pr_decimal_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_decimal_digit.h
+Hash: d43559860ba0321bc4126988b80b371e40fefd13543804b8cf1e2f323c2e6757
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[17 << 4];
+#  }
+File: ./lib/unictype/pr_default_ignorable_code_point.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_default_ignorable_code_point.h
+Hash: 10c6b0ae007cf9d8f016b4a35adc99a18c9253e20cb8212c2920cf601eee37fc
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[10 << 4];
+#  }
+File: ./lib/unictype/pr_deprecated.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_deprecated.h
+Hash: eaf7422b8873ab174df241ef321d8b1048a085432d4f6eef3b7e0549335dd9a8
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+File: ./lib/unictype/pr_diacritic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_diacritic.h
+Hash: c22e31f490d3c3010b02a8bd72e1f9d47cdcb168d70d30b805d732b343b511aa
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[21 << 4];
+#  }
+File: ./lib/unictype/pr_extender.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_extender.h
+Hash: 7454c1a8c7e88851161788171e398142fc47d8bd1c23e62960fa7d9c0c991b33
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[10 << 4];
+#  }
+File: ./lib/unictype/pr_format_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_format_control.h
+Hash: f060d73220f70a9073c426b53a1c1b77d83d62d53b2c20c8ed16a37dbec4466e
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_grapheme_base.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_grapheme_base.h
+Hash: 61aa89df11fbca4b079e004f95edb176863f5f5bda22579d93489404b0f9a3bb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[51 << 4];
+#  }
+File: ./lib/unictype/pr_grapheme_extend.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_grapheme_extend.h
+Hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+File: ./lib/unictype/pr_grapheme_link.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_grapheme_link.h
+Hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+File: ./lib/unictype/pr_hex_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_hex_digit.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/pr_hyphen.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_hyphen.h
+Hash: 1cfda6a60e4fbb2baa92f4c06e315f40f4b685e0d1330afe5788de693a79afdb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+File: ./lib/unictype/pr_id_continue.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_id_continue.h
+Hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[45 << 4];
+#  }
+File: ./lib/unictype/pr_id_start.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_id_start.h
+Hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[42 << 4];
+#  }
+File: ./lib/unictype/pr_ideographic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_ideographic.h
+Hash: 91d9bdf96ea6ddc4acbc5e4dba0610a5f9dd7cf5121431e1d34dafbe7e715f36
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+File: ./lib/unictype/pr_ids_binary_operator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_ids_binary_operator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_ids_trinary_operator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_ids_trinary_operator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_ignorable_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_ignorable_control.h
+Hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+File: ./lib/unictype/pr_iso_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_iso_control.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_join_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_join_control.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_left_of_pair.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_left_of_pair.h
+Hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+File: ./lib/unictype/pr_line_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_line_separator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_logical_order_exception.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_logical_order_exception.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_lowercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_lowercase.h
+Hash: c49d818a753284b69b8292112ec7829b4973d7c33cabb0b264bc3eb7193f2e2a
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[14 << 4];
+#  }
+File: ./lib/unictype/pr_math.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_math.h
+Hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[13 << 4];
+#  }
+File: ./lib/unictype/pr_non_break.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_non_break.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_not_a_character.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_not_a_character.h
+Hash: 69c1881b0d0172f2bd222a8d49636e2525f8c53af810fa281b7bf91d2cfaef79
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/pr_numeric.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_numeric.h
+Hash: e82cebb512f6ebca3baf39cf0cfb1d65899d1000520acb30b4c4c52fef800dba
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[32 << 4];
+#  }
+File: ./lib/unictype/pr_other_alphabetic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_alphabetic.h
+Hash: 6eed9d08b80ef5850bc90bf4ec966d5e32a1f13697b484b978c1984ba200e200
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[19 << 4];
+#  }
+File: ./lib/unictype/pr_other_default_ignorable_code_point.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_default_ignorable_code_point.h
+Hash: 670e3738c51a7b91634167670f9f9f7d24237d3bc2d1def297357bed948de48e
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+File: ./lib/unictype/pr_other_grapheme_extend.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_grapheme_extend.h
+Hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+File: ./lib/unictype/pr_other_id_continue.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_id_continue.h
+Hash: 68dddcca5a9cf7a98b19f1dbcf36daedc23cbb189126ba3d560fc72cadddf7e1
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+File: ./lib/unictype/pr_other_id_start.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_id_start.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/pr_other_lowercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_lowercase.h
+Hash: d5edc016b278de0f7e45c4b97282e69eeaa7e2dcf8ccdf80305e0631a2265331
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+File: ./lib/unictype/pr_other_math.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_math.h
+Hash: 29e60ffb17e0d28d6faf0dabcb729b97f9ea2640083c733e9d5bb80550af024d
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[10 << 4];
+#  }
+File: ./lib/unictype/pr_other_uppercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_other_uppercase.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/pr_paired_punctuation.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_paired_punctuation.h
+Hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+File: ./lib/unictype/pr_paragraph_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_paragraph_separator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_pattern_syntax.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_pattern_syntax.h
+Hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+File: ./lib/unictype/pr_pattern_white_space.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_pattern_white_space.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/pr_private_use.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_private_use.h
+Hash: b579ae087c5f5d39920557ccb10ed9e3e85c9a37d1579f40c7e51b7442503680
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+File: ./lib/unictype/pr_punctuation.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_punctuation.h
+Hash: 879fa687217ae7978e17cdb24937d63ed1b30c34acca5d08c249fb2aa2bec067
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+File: ./lib/unictype/pr_quotation_mark.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_quotation_mark.h
+Hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+File: ./lib/unictype/pr_radical.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_radical.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/pr_sentence_terminal.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_sentence_terminal.h
+Hash: ba2398b9115f8b18f76d9aacaa96041ae918a63b2834f16d66e586276b3b6afd
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[17 << 4];
+#  }
+File: ./lib/unictype/pr_soft_dotted.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_soft_dotted.h
+Hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+File: ./lib/unictype/pr_space.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_space.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_terminal_punctuation.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_terminal_punctuation.h
+Hash: 8a1e71d67eab269ce9dc3e2893389f951c1c2a7c64c1f722df6206f210ee662c
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[22 << 4];
+#  }
+File: ./lib/unictype/pr_test.c
+Hash: 1f771b18097da3eb006ae20cb5d9a4088eae2d181a611500ba400e2d8ec2df5d
+Copyright: 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_titlecase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_titlecase.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+File: ./lib/unictype/pr_unassigned_code_value.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_unassigned_code_value.h
+Hash: d60cbdaeaf6f4a9135cbd2ec2066e26df90bf74818e2fb55771b0ea03d148c4a
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[51 << 4];
+#  }
+File: ./lib/unictype/pr_unified_ideograph.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_unified_ideograph.h
+Hash: 4429500f5e5676e777499ce11cef619f91b5e880a9dabd1669bca41d0718d5f8
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_uppercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_uppercase.h
+Hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[13 << 4];
+#  }
+File: ./lib/unictype/pr_variation_selector.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_variation_selector.h
+Hash: abe47e0d33a6fde0c278a443c6255038d6cea6574c38f56dd5d7c1a4fd4a91ec
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+File: ./lib/unictype/pr_white_space.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_white_space.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+File: ./lib/unictype/pr_xid_continue.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_xid_continue.h
+Hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[45 << 4];
+#  }
+File: ./lib/unictype/pr_xid_start.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_xid_start.h
+Hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[42 << 4];
+#  }
+File: ./lib/unictype/pr_zero_width.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/pr_zero_width.h
+Hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+File: ./lib/unictype/scripts.c
+Hash: 3fcb47fc8c55790740bf21cdfc85cacb89c92805b7a0692b5d331d04839c7431
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Scripts of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/scripts.h
+Hash: 909da48adc878aafd8b39b3ea48765c54e60373f9511c2132c27bb2108fccafd
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Unicode scripts.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#static const uc_interval_t script_common_intervals[] =
+#{
+#  { 0x0000, 1, 0 }, { 0x0040, 0, 1 },
+#  { 0x005B, 1, 0 }, { 0x0060, 0, 1 },
+#  { 0x007B, 1, 0 }, { 0x00A9, 0, 1 },
+#  { 0x00AB, 1, 0 }, { 0x00B9, 0, 1 },
+#  { 0x00BB, 1, 0 }, { 0x00BF, 0, 1 },
+#  { 0x00D7, 1, 1 },
+#  { 0x00F7, 1, 1 },
+#  { 0x02B9, 1, 0 }, { 0x02DF, 0, 1 },
+#  { 0x02E5, 1, 0 }, { 0x02FF, 0, 1 },
+#  { 0x0374, 1, 1 },
+File: ./lib/unictype/scripts_byname.gperf
+Hash: 2957f52be908b9f9a16d6385681ed2513485321c9f2d54c8d365790acb1236e3
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Unicode scripts.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#struct named_script { const char *name; unsigned int index; };
+#%struct-type
+#%language=ANSI-C
+#%define hash-function-name scripts_hash
+#%define lookup-function-name uc_script_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name script_names
+#%%
+#Common, 0
+#Latin, 1
+#Greek, 2
+File: ./lib/unictype/sy_c_ident.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/sy_c_ident.h
+Hash: 9a50ec74eda18bc573df963aa5bae900789cff2ac4b9193674828efc5b802f69
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define identsyntax_header_0 12
+##define identsyntax_header_1 14
+##define identsyntax_header_2 7
+##define identsyntax_header_3 31
+##define identsyntax_header_4 127
+#static const
+#struct
+#  {
+#    int level1[14];
+#    short level2[9 << 5];
+#    unsigned short level3[39 * 16];
+#  }
+File: ./lib/unictype/sy_c_whitespace.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/sy_c_whitespace.h
+Hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unictype/sy_java_ident.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/sy_java_ident.h
+Hash: 0f004bb9bffa1f06d3a475612c9cd4f5f5df347a81109f243602e9360583f592
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define identsyntax_header_0 12
+##define identsyntax_header_1 225
+##define identsyntax_header_2 7
+##define identsyntax_header_3 31
+##define identsyntax_header_4 127
+#static const
+#struct
+#  {
+#    int level1[225];
+#    short level2[16 << 5];
+#    unsigned short level3[113 * 16];
+#  }
+File: ./lib/unictype/sy_java_whitespace.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unictype/sy_java_whitespace.h
+Hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+File: ./lib/unilbrk.h
+Hash: 2f408b704e7b02de9b9a8224c0bf0b93bedcb50b13ea7f824895f85f9c28eaee
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of Unicode strings.
+#   Copyright (C) 2001-2003, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/lbrkprop1.h
+Hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Line breaking properties of Unicode characters.  */
+#/* Generated automatically by gen-lbrk for Unicode 5.1.0.  */
+#
+#/* Copyright (C) 2000-2002, 2004, 2008 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: ./lib/unilbrk/lbrkprop2.h
+Hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Line breaking properties of Unicode characters.  */
+#/* Generated automatically by gen-lbrk for Unicode 5.1.0.  */
+#
+#/* Copyright (C) 2000-2002, 2004, 2008 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: ./lib/unilbrk/lbrktables.c
+Hash: 570dd537a8aad86cc9f03b3a187de16b187fa22f7de51a4c78b10bd8513b5140
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking auxiliary tables.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/lbrktables.h
+Hash: cc2a66b6d3c60a6a4bc00cc2cacead4543035a5c9a1c2c1dcb6310525ad50d3f
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking auxiliary tables.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/u16-possible-linebreaks.c
+Hash: dcb291f946f60f8ce400b0cf6612abce1f55d7525d62c20de92e371964fa2a25
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of UTF-16 strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/u16-width-linebreaks.c
+Hash: 858930664890823e81d8b0e0713d7edc3770a87b4a54c5ea4bffc97ae40cf765
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of UTF-16 strings.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/u32-possible-linebreaks.c
+Hash: e5d81325f7140b2d7980081c9c1b1bfe027d481b42d41b84fa859e689614604b
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of UTF-32 strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/u32-width-linebreaks.c
+Hash: cb3f972142bc182e67f148e4aee254b9d86e402a8c980d6aced66aa70785fdea
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of UTF-32 strings.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/u8-possible-linebreaks.c
+Hash: e914e04b1abf7f5737295a9365605c4b321978c304d4f779fcbbb02c5ff1558d
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of UTF-8 strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/u8-width-linebreaks.c
+Hash: 8250277a0f84de0b4416a1e30345251e466e2245ba64e63269d38d0ec4abdf7c
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of UTF-8 strings.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/ulc-common.c
+Hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking auxiliary functions.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/ulc-common.h
+Hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking auxiliary functions.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/ulc-possible-linebreaks.c
+Hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unilbrk/ulc-width-linebreaks.c
+Hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Line breaking of strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniname.h
+Hash: 271fe75b63886d9af9730fc72bcecc8bcf121a97946be427032f4ed46d2d2711
+Copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Association between Unicode characters and their names.
+#   Copyright (C) 2000-2002, 2005, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniname/gen-uninames.lisp
+Hash: d28d41fa6a3eef2669af73aaeb8ce7e2479501eff9b820f3649344dceec287b2
+Copyright:
+License:
+#Header:
+##!/usr/local/bin/clisp -C
+#
+#;;; Creation of gnulib's uninames.h from the UnicodeData.txt table.
+#;;; Bruno Haible 2000-12-28
+#
+#(defparameter add-comments nil)
+#
+#(defstruct unicode-char
+#  (code nil :type integer)
+#  (name nil :type string)
+#  word-indices
+#  word-indices-index
+#)
+#
+#(defstruct word-list
+File: ./lib/uniname/uniname.c
+Hash: 96556ea7962ce3b99d5e5559021018733e37096b261e513193d63a30e5ee4b2d
+Copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Association between Unicode characters and their names.
+#   Copyright (C) 2000-2002, 2005-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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniname/uninames.h
+Hash: 5cc016a12ea5182eb761959d10e5191aca3a76fa8980e231f2449ac38c1ea1dc
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/*
+# * uninames.h
+# *
+# * Unicode character name table.
+# * Generated automatically by the gen-uninames utility.
+# */
+#
+#static const char unicode_name_words[39544] = {
+#  'A',
+#  'B',
+#  'C',
+#  'D',
+#  'E',
+#  'F',
+File: ./lib/uninorm.h
+Hash: 811b4d2f8b8f36161342c743db5c5509ac8b0043c13551f7a52704c707f135c4
+Copyright: 2001-2002, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization forms (composition and decomposition) of Unicode strings.
+#   Copyright (C) 2001-2002, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/canonical-decomposition.c
+Hash: 87f0bcf9df0580072c9e56c9b085df3d8e09770d61475e329c904bc2b049e5cb
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Canonical decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/compat-decomposition.c
+Hash: be35616c47cb657687ee31b508418eb405d8e7175ea0c7ebda9c83d292ee0f76
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compatibility decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/composition-table.gperf
+Hash: b4aa8605984c2a64f166ac2137a7436cbcf969c067088baf3efc3099cd610685
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Canonical composition of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables for Unicode 5.1.0.  */
+#
+#/* 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.
+File: ./lib/uninorm/composition.c
+Hash: b056563f0bb123c409b7ebc8c15d83ff328c9f985c828e088794b6779686593e
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Canonical composition of Unicode characters.
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/decompose-internal.c
+Hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/decompose-internal.h
+Hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/decomposing-form.c
+Hash: 34162fc9b81dddd60e3d1768a87407a9c58c7a4246f8131990655af950eb8fa6
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposing variant of a normalization form.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/decomposition-table.c
+Hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/decomposition-table.h
+Hash: 7e5319f3d15b429b3ca981cb77d13a14e63eb6d91c87b6896bcb4b261f212864
+Copyright: 2001-2003, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposition of Unicode characters.
+#   Copyright (C) 2001-2003, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/decomposition-table1.h
+Hash: 295f82a865c8d38feab20d2d0ef7c344f2af45d2a8a6e47aaaebfccfbb53cc24
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decomposition of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables.c for Unicode 5.1.0.  */
+#
+#extern const unsigned char gl_uninorm_decomp_chars_table[];
+#
+##define decomp_header_0 10
+##define decomp_header_1 191
+##define decomp_header_2 5
+##define decomp_header_3 31
+##define decomp_header_4 31
+#
+#typedef struct
+#  {
+#    int level1[191];
+File: ./lib/uninorm/decomposition-table2.h
+Hash: b855a154049268ffe6cdfea458537883ba134e854cf00d17be5ab3b2b3559f4d
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decomposition of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables.c for Unicode 5.1.0.  */
+#
+#const unsigned char gl_uninorm_decomp_chars_table[] =
+#{
+#  0x08, 0x00, 0x20, 0xC0, 0x00, 0x20, 0x00, 0x03, 0x08, 0x20, 0x00, 0x61,
+#  0xC0, 0x00, 0x20, 0x00, 0x03, 0x04, 0x20, 0x00, 0x32, 0x20, 0x00, 0x33,
+#  0xC0, 0x00, 0x20, 0x00, 0x03, 0x01, 0x40, 0x03, 0xBC, 0xC0, 0x00, 0x20,
+#  0x00, 0x03, 0x27, 0x20, 0x00, 0x31, 0x20, 0x00, 0x6F, 0xBC, 0x00, 0x31,
+#  0x80, 0x20, 0x44, 0x00, 0x00, 0x34, 0xBC, 0x00, 0x31, 0x80, 0x20, 0x44,
+#  0x00, 0x00, 0x32, 0xBC, 0x00, 0x33, 0x80, 0x20, 0x44, 0x00, 0x00, 0x34,
+#  0x80, 0x00, 0x41, 0x00, 0x03, 0x00, 0x80, 0x00, 0x41, 0x00, 0x03, 0x01,
+#  0x80, 0x00, 0x41, 0x00, 0x03, 0x02, 0x80, 0x00, 0x41, 0x00, 0x03, 0x03,
+#  0x80, 0x00, 0x41, 0x00, 0x03, 0x08, 0x80, 0x00, 0x41, 0x00, 0x03, 0x0A,
+File: ./lib/uninorm/decomposition.c
+Hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/nfc.c
+Hash: afe74037d702264dada2f09f62b6bcd009116cbade5b92da86a092ec363709fa
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Unicode Normalization Form C.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/nfd.c
+Hash: 2c52442b51c53cae04d69af55fc465368ef6cdea78236bbd9e4ead35024be8aa
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Unicode Normalization Form D.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/nfkc.c
+Hash: 7e203b8f3ad1ca16886b641a503c7ef40c63839f2c5013b377ee16191eda890c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Unicode Normalization Form KC.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/nfkd.c
+Hash: 96fca2de089de494f5189cc1b6baba83a22050a2f73680251f883dbf4f29c4c6
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Unicode Normalization Form KD.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/normalize-internal.h
+Hash: dc3a239e87668655e6ffadf04e4e625525bb77f3159f49970bfe1fdd1fb742ec
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u-normalize-internal.h
+Hash: 8948c5a1ae3c902f7399c23c670da87e46b5538a4e44cea25fe6092fc69e57f3
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposition and composition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u-normcmp.h
+Hash: a38204b457c2da606da593fbe185d2697622fc39dfa9938580cfc4d21f8fd9d3
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization insensitive comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u-normcoll.h
+Hash: d15873e9d0f8361722b856cc6b5a4b141d8c153651a1cb1694c28c0be3fdf15e
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, normalization insensitive comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u-normxfrm.h
+Hash: 2995d01c87bd38694e454d2aa7acd9440bb01ef2fe3775c2ddddfd9a2055d354
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u16-normalize.c
+Hash: c4417f93ba857c0341ad56a963370ce1ac8690dc8d56ea8704d42bc0f4cd57d4
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u16-normcmp.c
+Hash: 70b5b38d00121704a5bdc8dec6c3510938a1ee773296c68bdf4770a9d3ad3ba2
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u16-normcoll.c
+Hash: b2a6a3dde9a5d277817a7bdf3a9da9cba9c5af84d43f02b8de59972c0efc6e06
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u16-normxfrm.c
+Hash: 6a535a6e2b2866d4d2f674604fdec7c48cd37a7d26d1b28aa56b1b55cff64d0c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u32-normalize.c
+Hash: 21948dd01001327d66a37ac6a8120566d704ef23efaf3a32134244e0e8b297db
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u32-normcmp.c
+Hash: 3aee963a47e892f820670cbdde9841ad7809e3cb739fe6fe4a4eb82b337fe7aa
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u32-normcoll.c
+Hash: e05b8dc2bc7995766bf46052c4718b74c0ffcae0cac15dd8135777dd379c34f4
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u32-normxfrm.c
+Hash: 6d8ff48fb188d7d15ae549430423f962ca47de75f2e3fa27d0c65099e653e5d8
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u8-normalize.c
+Hash: b46220839acddb8068a99f781da004eeb988271397e318e6077f00e1b4d9eb99
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u8-normcmp.c
+Hash: 88af27918ea6a884ebb5ddc98c75a2f01462cc627d489ca3a0387b2337cfff01
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u8-normcoll.c
+Hash: 781e09bd1453b3872c591e97c19b1855dc70cee271fded19eef00469baede34f
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent, normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/u8-normxfrm.c
+Hash: d59367c5c15d6f235b1e68265d3e3a57fef210ab8796ed36a04f40d08f302e3f
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Locale dependent transformation for comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uninorm/uninorm-filter.c
+Hash: fde778aae106254be586328ae3ecb4ee2843b387fb9bd68bd6e8ebf8b7dfe8f3
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Stream-based normalization of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistd--.h
+Hash: adf5345fbcb95c5bb36d54daf54a986985f38945478711e734fb90742f8a5262
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Like unistd.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/unistd-safer.h
+Hash: f1b41b4d684751d4d0fd03bb4855a4ab9c168f72e25dbcab58fa5e7cf7edebf9
+Copyright: 2001, 2003, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Invoke unistd-like functions, but avoid some glitches.
+#
+#   Copyright (C) 2001, 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
+#   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: ./lib/unistd.in.h
+Hash: a6926ba851d67cbfe9bc3f8f5c0a100992084e9d90ff1e51b25bd373b976d588
+Copyright: 2003-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Substitute for and wrapper around <unistd.h>.
+#   Copyright (C) 2003-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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./lib/unistdio.h
+Hash: 670451fad5381e7d81619f0268d7dcac2693a959612603a4fd77a67f102b98eb
+Copyright: 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Elementary Unicode string functions.
+#   Copyright (C) 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-asnprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-asprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-printf-args.c
+Hash: a27d294cbfad2286e039e9816ee9acb269f976fcc6f6c6f13a22d74056689600
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-printf-args.h
+Hash: a6fe38b9879275d7c142bc95e0b7e4caed91ccce4714c11749fdd64ecf990bf5
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-printf-parse.h
+Hash: 429fb79a4fedd4e52cd53cd4e50638cd94893eecb1b7a62844d082be64efe0dd
+Copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Parse printf format string.
+#   Copyright (C) 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-snprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-sprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-vasprintf.h
+Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-vsnprintf.h
+Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u-vsprintf.h
+Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-vasnprintf.c
+Hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-u16-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-vasnprintf.c
+Hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u16-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-vasnprintf.c
+Hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-u32-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-vasnprintf.c
+Hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u32-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-vasnprintf.c
+Hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to UTF-8 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-u8-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-vasnprintf.c
+Hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to UTF-8 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/u8-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-asprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-fprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 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/unistdio/ulc-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-vasnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-vfprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 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/unistdio/ulc-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistdio/ulc-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistr.h
+Hash: 13f5e38dabdfbceb3b445638bc8e99064f239e14e73d4e488187a92b7181157a
+Copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Elementary Unicode string functions.
+#   Copyright (C) 2001-2002, 2005-2009 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/unistr/u-cmp2.h
+Hash: 353c54ecf4321b660412e19cf505114ea8af7b940afc9fb4f817f32c73fe68dc
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare pieces of UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-cpy-alloc.h
+Hash: 33a2cf4d1751fb8b89c16c2e464679a25254a1da5aa823af5026981e3f9f04aa
+Copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-cpy.h
+Hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-endswith.h
+Hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-move.h
+Hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-set.h
+Hash: ad540bb3c29abee866d49045d7549895c69e88f9c7e421fc288f06e683371efe
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Fill UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-startswith.h
+Hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-stpcpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-stpncpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strcat.h
+Hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strcoll.h
+Hash: edd8e7309806a8c6748205b082becf74015ca7a86a99f4abfe90fd29cafc9bfe
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-8/UTF-16/UTF-32 strings using the collation rules of the current
+#   locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+File: ./lib/unistr/u-strcpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strcspn.h
+Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strdup.h
+Hash: 29b7da996418f450dc43ca85a629a13e9f41b4e0759a3d26dee1f0f570cd1fdb
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strlen.h
+Hash: 5ab8a4c4f7df43b1ab702777309a99e463464ecbb02813a12c642b680564a3eb
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine length of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strncat.h
+Hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strncpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strnlen.h
+Hash: c2287c09b8102ca5941250c212c3065bc5f0310d5047a6d4c540c3d8bd55c71f
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine bounded length of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strpbrk.h
+Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strspn.h
+Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strstr.h
+Hash: c6fe6020affec0baee70c698a6c983e4924b5b578266c453a7aaf55cc23e2a1c
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u-strtok.h
+Hash: 124e2d5c65832f8f2b09cb250453ac36538f42bc04e58097b83683954a9fd220
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Tokenize UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-check.c
+Hash: c5ae8c4ac9aa94462744b11f56b7d108a26665c45bfb27222547583236670660
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Check UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-chr.c
+Hash: e3329f60b17e2dfcf738c0ab4d315772c23c15c736a185ef7c9dc9896095d74b
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-cmp.c
+Hash: a178e2ef622d6775701cd298960a8dccafa331ca0d80c79fcaa4de012bd5b28f
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare pieces of UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-cmp2.c
+Hash: 2cb5dfa391e0c72cda11f0fb2350422ebde0432a2abf811e5941c06223b8cb67
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare pieces of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-cpy-alloc.c
+Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-cpy.c
+Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-endswith.c
+Hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-16 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-mblen.c
+Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-mbsnlen.c
+Hash: 1cdbe9c2450930156e5c3b60065663d3280f3a42a62725b5208c39ced2b34318
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Count characters in UTF-16 string.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-mbtouc-aux.c
+Hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion UTF-16 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-mbtouc-unsafe-aux.c
+Hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion UTF-16 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-mbtouc-unsafe.c
+Hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-mbtouc.c
+Hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-mbtoucr.c
+Hash: 2b36b04649b3581ad0cc9161ab1e4715a48625e133a0ec6f539ed6e91dfcf628
+Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-16 string, returning an error code.
+#   Copyright (C) 1999-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-move.c
+Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-next.c
+Hash: bac4e802fa60437f5741d1488d912d2d731d12795334311793de72c042b1614f
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Iterate over next character in UTF-16 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-prev.c
+Hash: 966105ec4cf71caa305c1b9bebab2829b77a48e5003424e4c013eeea374f9328
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Iterate over previous character in UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-set.c
+Hash: c5bb09f11189403180a6576abf7d68fb059968f7f39dc4847bc991ac3223f6aa
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Fill UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-startswith.c
+Hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-16 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-stpcpy.c
+Hash: 6a2cb6d1b10aa92814ff9ed6e973f7c9a0fa2bc7f1465286ac1e39590cb45b73
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-stpncpy.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strcat.c
+Hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strchr.c
+Hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strcmp.c
+Hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strcoll.c
+Hash: f617d544f7c4374c658b004a34b75f439c8492b5d53e032c89fef04f11982f8a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-16 strings using the collation rules of the current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strcpy.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strcspn.c
+Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strdup.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strlen.c
+Hash: a9ceaf1d9ede8791c7f986d76c2bba8ed75106e4a6bf10665a66b95683bac6f8
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine length of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strmblen.c
+Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strmbtouc.c
+Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strncat.c
+Hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strncmp.c
+Hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strncpy.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strnlen.c
+Hash: 4eb212ed57eb468178f80781c20209a087129a621a86543b3c0ec39b4ad5d8bd
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine bounded length of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strpbrk.c
+Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strrchr.c
+Hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strspn.c
+Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strstr.c
+Hash: 63d133e15b867e7895edd2352c173567fe0d265932e367156cf3be247cb76d49
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-strtok.c
+Hash: b3612c8df3c80589505dff2b00de24316e2ec6ff9c42ea3e5d1b3d0520ca0b2b
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Tokenize UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-to-u32.c
+Hash: c888c31db109f599e0d02beb4ef0ce5f61c56ddaa3ece94bc5b9cc4b2516c852
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Convert UTF-16 string to UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-to-u8.c
+Hash: 59a93e5bcafc66d68def3b14157e23f301775715a31659046cb4e692b8800674
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Convert UTF-16 string to UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-uctomb-aux.c
+Hash: 02b5c6e86d0a8def7f78e1a70e0f104a3e283bb1d7a2de6223763bcde8845be7
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion UCS-4 to UTF-16.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u16-uctomb.c
+Hash: 88d0197e480ceaa71d8fc9a34aaa68463f25d20524f758f55c023108338967d8
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Store a character in UTF-16 string.
+#   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-check.c
+Hash: 685489582302507fc4d2a831d903c752d9a900d2380f8bc33e8babeaf6a7637d
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Check UTF-32 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-chr.c
+Hash: 3d390e18ce2a42908d41cd6f2b9a9386775538654e35534760251a9e5528b952
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-cmp.c
+Hash: 7c6276b59ecfdc1dd63882769b6b4ccf919c844520679d75c03d00ef01610243
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare pieces of UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-cmp2.c
+Hash: 57babbf34fd1be9100c5c49c352d468779d176c16711bf88df426bd0b0ecdeb5
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare pieces of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-cpy-alloc.c
+Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-cpy.c
+Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-endswith.c
+Hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-mblen.c
+Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-mbsnlen.c
+Hash: e2d35901a65cc0a9ef634e286369d131cd95c820698d2cff405423031ee4b9ec
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Count characters in UTF-32 string.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-mbtouc-unsafe.c
+Hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-mbtouc.c
+Hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-mbtoucr.c
+Hash: 5f2b794282efb3b432d0c8a917dc1f4f498a1c2f89392970a62db00da6c71abb
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-32 string, returning an error code.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-move.c
+Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-next.c
+Hash: 7ba432d038ecd2515356b8e70fa519d4cdac9e76b0d6e93a8a537ef4fda17448
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Iterate over next character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-prev.c
+Hash: 1508e6ba9768221299556836be8fbc1d5791cc3115cf08850ac9bec8623c918c
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Iterate over previous character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-set.c
+Hash: 3dd041a6e485dbcd0ea0984b44bab7767b28a4665038ddf05b9955a2d6e6a596
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Fill UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-startswith.c
+Hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-stpcpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-stpncpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strcat.c
+Hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strchr.c
+Hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strcmp.c
+Hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strcoll.c
+Hash: 6420d21bdaae7143502fa4278291a88e2834749b42928b0df438fbb4fc3b95a1
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-32 strings using the collation rules of the current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strcpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strcspn.c
+Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strdup.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strlen.c
+Hash: 050991d876a33888be18fc49d7ec4d1146ff674decd9c3b4a3f1a1f9c168e632
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine length of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strmblen.c
+Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strmbtouc.c
+Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strncat.c
+Hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strncmp.c
+Hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strncpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strnlen.c
+Hash: e1a20f548b672e6d0aa8b7954bc31b9c2157c4204b1e7346a250ab8840e7e356
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine bounded length of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strpbrk.c
+Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strrchr.c
+Hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strspn.c
+Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strstr.c
+Hash: 96be8a0f8ea189120bfe1f5c10629c0b840b2f2e9f64c54df9fce677f701d887
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-strtok.c
+Hash: dedd8fbb7d1265bba868dfd5099d076b6587298e050805ec6eaced0ab5faf332
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Tokenize UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-to-u16.c
+Hash: c34e87d4172d3339a781e39d59f8fb9132c09ef980f44c2b1574bfafa685cd66
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Convert UTF-32 string to UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-to-u8.c
+Hash: d5933d39852f021cbafa03fcd622fe179fbfa3d2b7160e25a2a0f9cf649b331a
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Convert UTF-32 string to UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u32-uctomb.c
+Hash: 34f3faef9d257a051c8d8272922f3e20f5fa880baea40b25ba02a9256e3b74df
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Store a character in UTF-32 string.
+#   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-check.c
+Hash: eac2b052e4d9e60b9eb93ae9ec997c386e730de4bf3194fca888eba17a103f37
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Check UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-chr.c
+Hash: 42ec57a2ff9ac547a74c24b611b35ff9d2604edd08dc27f2eec1d887c295d1bd
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in piece of UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-cmp.c
+Hash: fac6baf649d3fd3670f2fd9aa97dbd2dfa67d7311eba66c76fb96874a6a6f2b9
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare pieces of UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-cmp2.c
+Hash: a93c38c1183febaf9ba16e653abf0df27e59ddad5f92762b2ba9e3f6deda64aa
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare pieces of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-cpy-alloc.c
+Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-cpy.c
+Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-endswith.c
+Hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-mblen.c
+Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-mbsnlen.c
+Hash: d777639cdf076ed27839f1eeaabd23eef4465185239d987ba767f2a866c300bc
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Count characters in UTF-8 string.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-mbtouc-aux.c
+Hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion UTF-8 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-mbtouc-unsafe-aux.c
+Hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion UTF-8 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-mbtouc-unsafe.c
+Hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-mbtouc.c
+Hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-mbtoucr.c
+Hash: 7eb628bfecb6088142dbddc04daeb302c95a2a16ab2f4ce7fe96ac6515d1f822
+Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-8 string, returning an error code.
+#   Copyright (C) 1999-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-move.c
+Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy piece of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-next.c
+Hash: 00d3e25ac3c18c5d77c1d250c8220544e99fc346a8015da6b43e3ffe5014baef
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Iterate over next character in UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-prev.c
+Hash: 3d57d758b00dd01225b001edc0a71b3e6a7dc55957f00b1a5bbc950ae037f281
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Iterate over previous character in UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-set.c
+Hash: bcb3f22a0098c66883640efdd098aed40903b82c9a5d62b7d1936a805148d2a1
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Fill UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-startswith.c
+Hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-stpcpy.c
+Hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-stpncpy.c
+Hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strcat.c
+Hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strchr.c
+Hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strcmp.c
+Hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strcoll.c
+Hash: 9c5e8a7ef380723d07e0ad180fe59421bf9bf28e1a4d289d05263339cb4025d2
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-8 strings using the collation rules of the current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strcpy.c
+Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strcspn.c
+Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strdup.c
+Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strlen.c
+Hash: 3f5efa4cf915f83bfdc9adfac2a13ca7d3c75c63c4fc993377e9dee1b36e9f13
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine length of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strmblen.c
+Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strmbtouc.c
+Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strncat.c
+Hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Concatenate UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strncmp.c
+Hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Compare UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strncpy.c
+Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strnlen.c
+Hash: e591a71a08b4377ef29017795f592adf1ebf56caa73d172428942ed3d8735e53
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine bounded length of UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strpbrk.c
+Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strrchr.c
+Hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search character in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strspn.c
+Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Search for some characters in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strstr.c
+Hash: 62e3171131f084bb524e8e4b7b677e51dc0a4ddd7920c791e861fc6209824057
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Substring test for UTF-8 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-strtok.c
+Hash: 70422453328ab4382d464bc5e573a7921b44d303c4da2e58aa0cd67c8285ba1d
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Tokenize UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-to-u16.c
+Hash: 7743fd5caa826417f0cc0e0da91677000cd23088c2b345a21a27aa43b0b595f1
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Convert UTF-8 string to UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-to-u32.c
+Hash: 7308a76a0f28176be9098511a4dc13f5625aa399c70a8bf9993f78ddf7b319ef
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Convert UTF-8 string to UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-uctomb-aux.c
+Hash: 44e95c47ddf3343b1c02157c12c9a0a950852563cd543850488cb21944559e11
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Conversion UCS-4 to UTF-8.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unistr/u8-uctomb.c
+Hash: 60d6859b731140e5420ea2e3093e3ac272522cc9685459a9eddbdf4909d79f40
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Store a character in UTF-8 string.
+#   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unitypes.h
+Hash: 0eaaeed4ca0138967cd6fe4e6956edef837fa8461248425e893e1fc2fa0cbfee
+Copyright: 2002, 2005-2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Elementary types for the GNU UniString library.
+#   Copyright (C) 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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniwbrk.h
+Hash: 43906fff693dfdb439dee0927665138c03553941b19dec5efbca942a96aaa603
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word breaks in Unicode strings.
+#   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/u-wordbreaks.h
+Hash: fc09df77911b0e107a808ffff910b9e323519e9c45a98f3c013cf11a38865d20
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word breaks in UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/u16-wordbreaks.c
+Hash: b5dea0d0ecc05dcf54c0de70762cc9cde64ffa38e40aa9ddad0b8a84d01d2c5e
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word breaks in UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/u32-wordbreaks.c
+Hash: 4e66094a2b8797f527af80fd87fed6a222d621c8b8acffe7f7bdd9684fd5ac24
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word breaks in UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/u8-wordbreaks.c
+Hash: 00a1587322d98dd8948a091a85b45d8ebc70469f9e8c58552e3ea591b1908786
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word breaks in UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/ulc-wordbreaks.c
+Hash: 1f3d4b29e74270464b552516539bd93bb486915d5e06e59452e3f58b1732d324
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word breaks in strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/wbrkprop.h
+Hash: d8007020c5f8a08911ff92b7ff5bfd74f9448c47e568b430f2f1ab7999fc0d87
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Line breaking properties of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables for Unicode 5.1.0.  */
+#
+#/* Copyright (C) 2000-2002, 2004, 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: ./lib/uniwbrk/wbrktable.c
+Hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word break auxiliary table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/wbrktable.h
+Hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word break auxiliary table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwbrk/wordbreak-property.c
+Hash: 4265f2bbb6cd20db8b5b6034d1d7da59b5a2b943cc9543c158091658bb61a36a
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Word break property.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth.h
+Hash: e4c6ff2cb013a8b2de23e758533e34077d64fd62e6c4098af88169ecd9ca1425
+Copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Display width functions.
+#   Copyright (C) 2001-2002, 2005, 2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./lib/uniwidth/cjk.h
+Hash: 6d886d39c5a9bed7c747138b4025cd035c6b59163b1632e3eff5be730f9db943
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test for CJK encoding.
+#   Copyright (C) 2001-2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth/u16-strwidth.c
+Hash: 25a3cc5a8562b7025075a92b2acd9499fb20191bfea045cdfbf6ab778fcd2130
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine display width of UTF-16 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth/u16-width.c
+Hash: 6447db6c2460f0cc11bea62a47e273a6cc33ca44ecdca0e7c640756cad86fc70
+Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine display width of UTF-16 string.
+#   Copyright (C) 2001-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth/u32-strwidth.c
+Hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine display width of UTF-32 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth/u32-width.c
+Hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine display width of UTF-32 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth/u8-strwidth.c
+Hash: 5e92bd8858f143e5c3888e1890f467f6b2a077b1c6e5622e888cdba7922207fb
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine display width of UTF-8 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth/u8-width.c
+Hash: 5992f0453d5de4d8a6ba85cd63b8090006ba2c0b148afd9e07ab6d5dc36dea0c
+Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine display width of UTF-8 string.
+#   Copyright (C) 2001-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/uniwidth/width.c
+Hash: 8f8187cd1a09e3412e237881244e68c314bcfb39c5c851ec7f251e17742ab6ab
+Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine display width of Unicode character.
+#   Copyright (C) 2001-2002, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./lib/unlinkdir.c
+Hash: c9c22134c02523e933f8d5d7ca013d594047f1ee23b58a5ae39377525f9f046e
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* unlinkdir.c - determine whether we can unlink directories
+#
+#   Copyright (C) 2005-2006, 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
+File: ./lib/unlinkdir.h
+Hash: 02cd119ca3d63148dd23165be0b728a05b4dc02618dbb0d81782d83029dcf4ae
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* unlinkdir.h - determine (and maybe change) whether we can unlink directories
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/unlocked-io.h
+Hash: a68721dbc7b80415c8f613c429da32c306e587ca487707e3cc920e7e34ac13a8
+Copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+License: 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:
+#/* Prefer faster, non-thread-safe stdio functions if available.
+#
+#   Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/unsetenv.c
+Hash: 0b078599d4ea56fe10c153183b0254ed4945619c4c08c9ce35d5b32019d920de
+Copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1992,1995-1999,2000-2002,2005-2008 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
+#   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/userspec.c
+Hash: 87e09ee21b48597c439740bea48e07ce2dfe3daee61e331c0fea028a4572f53e
+Copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software Foundation, Inc.
+License: 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:
+#/* userspec.c -- Parse a user and group string.
+#   Copyright (C) 1989-1992, 1997-1998, 2000, 2002-2007 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
+File: ./lib/userspec.h
+Hash: 8fc9e48846b3c4b567f7da8a4b872193d48989f6861b60277e4077a61585ad55
+Copyright:
+License:
+#Header:
+##ifndef USERSPEC_H
+## define USERSPEC_H 1
+#
+## include <sys/types.h>
+#
+#const char *
+#parse_user_spec (const char *spec_arg, uid_t *uid, gid_t *gid,
+#               char **username_arg, char **groupname_arg);
+#
+##endif
+File: ./lib/utime.c
+Hash: 0200b3aa44e66773c0cde9fec4a180d0eb7111465207468fc42520867fb69e64
+Copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Copyright (C) 1998, 2001, 2002, 2003, 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
+#   Free Software Foundation; either version 3 of the License, or 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/utimecmp.c
+Hash: 513c0e1f4b1f45d732838695ab385c411afac14ce1c8841ad8bcc3855d16900c
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* utimecmp.c -- compare file time stamps
+#
+#   Copyright (C) 2004, 2005, 2006, 2007 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
+File: ./lib/utimecmp.h
+Hash: 4f328c1b87b0637f3cbb0c01968bbc5ffc5350b420f90f7f51de75d6872837ae
+Copyright: 2004 Free Software Foundation, Inc.
+License: 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:
+#/* utimecmp.h -- compare file time stamps
+#
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./lib/utimens.c
+Hash: dd356a50d7062392a2b51927c4e390f09e3cb059bf0c2702ace1865130b3f136
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Set file access and modification times.
+#
+#   Copyright (C) 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 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: ./lib/utimens.h
+Hash: d065c418d4fc1dad24e122f61cd9c4d59db9b05a6dba7ec8c17a8fd0fd9d9472
+Copyright:
+License:
+#Header:
+##include <time.h>
+#int gl_futimens (int, char const *, struct timespec const [2]);
+#int utimens (char const *, struct timespec const [2]);
+File: ./lib/vasnprintf.c
+Hash: f826f12032ff66714226a5c720dd2dbd1d645ba0536b39dfbea651b792404c5d
+Copyright: 1999, 2002-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* vsprintf with automatic memory allocation.
+#   Copyright (C) 1999, 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/vasnprintf.h
+Hash: 2bf66b7f11449085cc6395a5d6d60496f6f13b08aa0187a5f52e9252e6cab2fa
+Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* vsprintf with automatic memory allocation.
+#   Copyright (C) 2002-2004, 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/vasprintf.c
+Hash: 48c7f19d29a46ec6dbaf09a38b3ecbde38b8191f9bca32208ece53a6b2de08ee
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation,
+File: ./lib/vdprintf.c
+Hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a file descriptor.
+#   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/verify.h
+Hash: a231e15e8b20379f38be81f4674fec177045e91abec1cc68481b6eb081c51312
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Compile-time assert-like macros.
+#
+#   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
+#   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: ./lib/verror.c
+Hash: 2d2abd16891d68fb47a4f777060632ab389041f3cecbb9b5cce131f889f0fa8a
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* va_list error handler for noninteractive utilities
+#   Copyright (C) 2006-2007 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/verror.h
+Hash: bfd2d5bbe94db1c367a3e3e4348fa2597a1c980ef1f74c10b7082ae569d56fb4
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Declaration for va_list error-reporting function
+#   Copyright (C) 2006-2007 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/version-etc-fsf.c
+Hash: 2200910e2dfcad20e1ed7fa171431d1ee58058ddcf354bc54b58c6f812ece50f
+Copyright: 1999-2006 Free Software Foundation, Inc.
+License: 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:
+#/* Variable with FSF copyright information, for version-etc.
+#   Copyright (C) 1999-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 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/version-etc.c
+Hash: 54f16006d89e39c40e5de0ff2f87f3f8a0498e25d2032fb2ef3b3e5c8a7f8bae
+Copyright: 1999-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Print --version and bug-reporting information in a consistent format.
+#   Copyright (C) 1999-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/version-etc.h
+Hash: 8fe8c52a2462c979791b9718376564da4abfb5e764de7bca57ec4ff85a97dfc3
+Copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Print --version and bug-reporting information in a consistent format.
+#   Copyright (C) 1999, 2003, 2005, 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/vfprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 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/vprintf.c
+Hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to a stream.
+#   Copyright (C) 2007 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/vsnprintf.c
+Hash: 2be1271317efe1b22a2d9f18376d0a225658aa69ce7d86064c5a767779711336
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson and Yoann Vandoorselaere <yoann@prelude-ids.org>.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+File: ./lib/vsprintf.c
+Hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 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/w32sock.h
+Hash: 1fd87a23e6def0b721fd23be4572dc15592716c646eff400eb8fa64fffda4962
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* w32sock.h --- internal auxilliary functions for Windows socket functions
+#
+#   Copyright (C) 2008 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
+File: ./lib/w32spawn.h
+Hash: 010dd0544b69c6f163c5243a3b721ac0e3d23cc3e1b9ce1a8a30fce6789b7e6a
+Copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Auxiliary functions for the creation of subprocesses.  Native Woe32 API.
+#   Copyright (C) 2001, 2003, 2004-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/wait-process.c
+Hash: 580ab33dd9e9ad4be37f0440dce7774cf758ac9eef6725756be9a2d08481b529
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Waiting for a subprocess to finish.
+#   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/wait-process.h
+Hash: 9c746de4916059b6ca40492142d370bc7006d4b8f032ad0111f6db7b0f653306
+Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Waiting for a subprocess to finish.
+#   Copyright (C) 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   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: ./lib/wchar.in.h
+Hash: e2b50e5f1a1293246463b729146da631d3afced4d48e395e00d38ccef20ea230
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A substitute for ISO C99 <wchar.h>, for platforms that have issues.
+#
+#   Copyright (C) 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 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/wcrtomb.c
+Hash: 10ecd599d0542d9a8001cca8225ee9c13514679962f22a531c75270aede87343
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convert wide character to multibyte character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/wcsnrtombs.c
+Hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convert wide string to string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/wcsrtombs-state.c
+Hash: 04a4e1633ad0400f2161a87e7cf9a6aed6f826572214e001af1c7dddc850d7aa
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Convert wide string to string.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/wcsrtombs.c
+Hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convert wide string to string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/wctob.c
+Hash: c1b08427605521353fd457e9a00f2c3c9b08f1b424e5a75a9186d803debec1b5
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Convert wide character to unibyte character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/wctype.in.h
+Hash: af0dc33178ed26851e8f3cb509f0acd760c6d25a876e8dc19ddb362d74ea46cf
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* A substitute for ISO C99 <wctype.h>, for platforms that lack it.
+#
+#   Copyright (C) 2006-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, 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: ./lib/wcwidth.c
+Hash: 0aa6edaa085279cd62d2af3087586c8d95c4a611a683295b382144145735fede
+Copyright: 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Determine the number of screen columns needed for a character.
+#   Copyright (C) 2006, 2007 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/write-any-file.c
+Hash: 91ab05c6935f8e51a763879fb79b2f3e9a68d664409800351c677574461519ce
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Determine whether we can write any file.
+#
+#   Copyright (C) 2007 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
+File: ./lib/write-any-file.h
+Hash: 3baee9b8366345680cfc53a87f5dee015146c4255cee16b96803bb3f26cc9d2c
+Copyright:
+License:
+#Header:
+##include <stdbool.h>
+#bool can_write_any_file (void);
+File: ./lib/write.c
+Hash: 862d3fd531460e25f2438bd1a28cf38b2f681566dc0e6eb1870e0c903173909c
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* POSIX compatible write() function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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: ./lib/xalloc-die.c
+Hash: 29f127d04d8c8d1e5999b7a07f26a3c5a00f5162135417f5956adf7ef53b7578
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Report a memory allocation failure and exit.
+#
+#   Copyright (C) 1997, 1998, 1999, 2000, 2002, 2003, 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 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: ./lib/xalloc.h
+Hash: 671d0dba30c52a75befe251993cc88c9cd3c9d5c047bf49267ccf26b133b4fa2
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* xalloc.h -- malloc with out-of-memory checking
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+#   1999, 2000, 2003, 2004, 2006, 2007, 2008 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: ./lib/xasprintf.c
+Hash: 8f74172c8681a5c0982e04312d1ce3104bab1aef39016d11869f0176d5fd27ed
+Copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* vasprintf and asprintf with out-of-memory checking.
+#   Copyright (C) 1999, 2002-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 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/xconcat-filename.c
+Hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Construct a full filename from a directory and a relative filename.
+#   Copyright (C) 2001-2004, 2006-2008 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 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/xgetcwd.c
+Hash: 07b391c85dc4337c756a55eec0eda78ec9cd0e0975b181a48c5029c172a023af
+Copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* xgetcwd.c -- return current directory with unlimited length
+#
+#   Copyright (C) 2001, 2003, 2004, 2006, 2007 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
+File: ./lib/xgetcwd.h
+Hash: 291895105e1bb54b496008ad5954bc8163c0ac56b8287f27e49adbe54e9ed0cf
+Copyright: 1995, 2001, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* prototype for xgetcwd
+#   Copyright (C) 1995, 2001, 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
+#   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/xgetdomainname.c
+Hash: 088792dafaec8531ae554297ad6ae5d481593dfab6921835648a8bce17c0c116
+Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* xgetdomainname.c -- Return the NIS domain name, without size limitations.
+#   Copyright (C) 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 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
+File: ./lib/xgetdomainname.h
+Hash: b26e437c9a8e6901a5034314c104978730a0753855f02e620edac0428c35b0a0
+Copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
+License: 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:
+#/* xgetdomainname.h -- Return the NIS domain name, without size limitations.
+#   Copyright (C) 1992, 1996, 2000, 2001, 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
+#   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/xgethostname.c
+Hash: 2c4e8d5075dbcfa989f2855a9f231d4c98065036c64acf489b1449f4a3af9c39
+Copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* xgethostname.c -- return current hostname with unlimited length
+#
+#   Copyright (C) 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 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: ./lib/xgethostname.h
+Hash: e9a81c8fca91ef7a8fd72e8246a5fe6367dba77986f6935a318fe7d551ab1e7a
+Copyright:
+License:
+#Header:
+#char *xgethostname (void);
+File: ./lib/xmalloc.c
+Hash: 25035c1bcf6b0d4ab5f9894ec09f8312b715a2e72e95d7f56b4b9ce41f53aade
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* xmalloc.c -- malloc with out of memory checking
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+#   1999, 2000, 2002, 2003, 2004, 2005, 2006, 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,
+#   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: ./lib/xmalloca.c
+Hash: e84a48177ef61605b6eed93be0310de6dac9146bbaf454bd7fb6caa1beb416f5
+Copyright: 2003, 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Safe automatic memory allocation with out of memory checking.
+#   Copyright (C) 2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/xmalloca.h
+Hash: b8589d4f03fc2e4441ee611dd5596e4a3ac0657bd6974d6b21e95d435aef8f6f
+Copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Safe automatic memory allocation with out of memory checking.
+#   Copyright (C) 2003, 2005, 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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: ./lib/xmemcoll.c
+Hash: f6215d92c92b8dd0afcb4da7a17068eb6b7d997bd3b8f7a3cf6e3e0ae25ed83c
+Copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Locale-specific memory comparison.
+#
+#   Copyright (C) 2002, 2003, 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 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: ./lib/xmemcoll.h
+Hash: 06a32178ba593d8d983c9d741edf99f4a67fa37ba8e8b45cfe60e796fe6e9fcc
+Copyright:
+License:
+#Header:
+##include <stddef.h>
+#int xmemcoll (char *, size_t, char *, size_t);
+File: ./lib/xmemdup0.c
+Hash: 244bfde7ef2ec650951db25d48ca2a94b61b77db3692c001b316f58057af7d14
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* xmemdup0.c -- copy a block of arbitrary bytes, plus a trailing NUL
+#
+#   Copyright (C) 2008 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
+File: ./lib/xmemdup0.h
+Hash: 0d3d9d1a970022933ab73db3375f0cc46e5fbf23a16ad79242cbd6461110201d
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* xmemdup0.h -- copy a block of arbitrary bytes, plus a trailing NUL
+#
+#   Copyright (C) 2008 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
+File: ./lib/xnanosleep.c
+Hash: 587481ebf1cf8ff5a01e7ce8889b66fa2be4a4c631fd020f2df12deb6322f814
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* xnanosleep.c -- a more convenient interface to nanosleep
+#
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 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: ./lib/xnanosleep.h
+Hash: dec8f8b2087a79c9bb77d7f89d934625f2b83dd66bbfda194299b351baa1a38c
+Copyright:
+License:
+#Header:
+#int xnanosleep (double);
+File: ./lib/xprintf.c
+Hash: 53c512f199ddd3f96147026f3ec162d4a4795ba009341a77dc173cdb6652a06b
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* printf wrappers that fail immediately for non-file-related errors
+#   Copyright (C) 2007 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/xprintf.h
+Hash: 6d16969445a022a51044c272fb9aeefd3fa1bce9b54006cd10226a704b05f6fb
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* printf wrappers that fail immediately for non-file-related errors
+#   Copyright (C) 2007-2008 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/xreadlink.c
+Hash: 3cb513689749db6e11f0f29fbee0e970aa1b69b3b1c1ab4b7ebf35f70eb59525
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
+License: 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:
+#/* xreadlink.c -- readlink wrapper to return the link name in malloc'd storage
+#
+#   Copyright (C) 2001, 2003-2007 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
+File: ./lib/xreadlink.h
+Hash: 0137f3b154dfc2a56910915e2522eb83920cfa9dc1684b241d60fae327d93f9e
+Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Reading symbolic links without size limitation.
+#
+#   Copyright (C) 2001, 2003, 2004, 2007 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
+File: ./lib/xsetenv.c
+Hash: b18f92f3404ce0f52b6536522986febc64c972fbea548ba151a12abd0550c875
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Setting environment variables, with out-of-memory checking.
+#   Copyright (C) 2001-2002, 2005-2007 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/xsetenv.h
+Hash: 02f0e5d1c1bee87cfcc15ef5d22da97530a2213cce025f98bbd07440a9346aad
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Setting environment variables, with out-of-memory checking.
+#   Copyright (C) 2001-2002, 2007 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/xsize.h
+Hash: af3fdcacfe8f3dbae26f9d806b0a9b2274f86ea7daed7117f09e29858b85d38f
+Copyright: 2003, 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* xsize.h -- Checked size_t computations.
+#
+#   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./lib/xstriconv.c
+Hash: 42d740ec07e24b23ef7e205783f456e0ab80a5a2d716e4d045408b73365440a5
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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: ./lib/xstriconv.h
+Hash: 07f01b89d3917786fdb52af236bc0007f98425b6167f083f2440d19e17dd3c5f
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2001-2004, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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: ./lib/xstriconveh.c
+Hash: e35dae25c1d50a7d5d5b3df39059abf308145f43ae4e85ba73931745e7017995
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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: ./lib/xstriconveh.h
+Hash: f64f01e0d0569fa1f4c52371b10abc77b255d1a578f06d141d682561ee8c28bf
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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: ./lib/xstrndup.c
+Hash: 0fb519e75e481ad8278a17ca05d2a40e377c265586ca996d18c4a56ddd4c2697
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Duplicate a bounded initial segment of a string, with out-of-memory
+#   checking.
+#   Copyright (C) 2003, 2006, 2007 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
+File: ./lib/xstrndup.h
+Hash: 41aeea4d051e789e9ee829206990c84da4e6ab74f5a5ebbf1e7444ecdb2e7093
+Copyright: 2003 Free Software Foundation, Inc.
+License: 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:
+#/* Duplicate a bounded initial segment of a string, with out-of-memory
+#   checking.
+#   Copyright (C) 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
+#   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: ./lib/xstrtod.c
+Hash: 7433646b920b02364625fd3d4b09fb30c050b37a3c73ee2c644d63ee95bca8c6
+Copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* error-checking interface to strtod-like functions
+#
+#   Copyright (C) 1996, 1999, 2000, 2003, 2004, 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
+#   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: ./lib/xstrtod.h
+Hash: ace9d21f9ff0ac53904c27c990f62e2b8819a7776acbd67c3f05c6893dcaef4a
+Copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* Error-checking interface to strtod-like functions.
+#
+#   Copyright (C) 1996, 1998, 2003, 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 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: ./lib/xstrtoimax.c
+Hash: b2ce36a250657c54d51627b616310f70c9870fd5fc7941bf18d3924067f28563
+Copyright:
+License:
+#Header:
+##define __strtol strtoimax
+##define __strtol_t intmax_t
+##define __xstrtol xstrtoimax
+##define STRTOL_T_MINIMUM INTMAX_MIN
+##define STRTOL_T_MAXIMUM INTMAX_MAX
+##include "xstrtol.c"
+File: ./lib/xstrtol-error.c
+Hash: 831f1f9013ce8fe06ea3685fd92d37cebc8125b91e0c87a93758fd5f4b17c47b
+Copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* A more useful interface to strtol.
+#
+#   Copyright (C) 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
+#   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: ./lib/xstrtol.c
+Hash: 1de66c39110e53ed0f5d4cc2737b14547ef7657e0c6ff41b7d14bf71b617b792
+Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* A more useful interface to strtol.
+#
+#   Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#   2006, 2007 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: ./lib/xstrtol.h
+Hash: 03fe7afdcf7063d6f46436f0ca5dc6cd12a9f6bac186bc36f3af26dd745995d6
+Copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* A more useful interface to strtol.
+#
+#   Copyright (C) 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007,
+#   2008 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: ./lib/xstrtold.c
+Hash: 1a077cc54d4bfd4cee5ff0022623e5f8553d4eae977ca2f0bed5d0de5c51119b
+Copyright:
+License:
+#Header:
+##define LONG 1
+##include "xstrtod.c"
+File: ./lib/xstrtoul.c
+Hash: bebc6e6916fdada92bda5d5fd7a22c71074205ca0b8476130d540d9139a83d3a
+Copyright:
+License:
+#Header:
+##define __strtol strtoul
+##define __strtol_t unsigned long int
+##define __xstrtol xstrtoul
+##define STRTOL_T_MINIMUM 0
+##define STRTOL_T_MAXIMUM ULONG_MAX
+##include "xstrtol.c"
+File: ./lib/xstrtoumax.c
+Hash: 70b5ba83b8bfc540ad4dfead90cff12b8240919d0e368c0ded31a409271b5de6
+Copyright:
+License:
+#Header:
+##define __strtol strtoumax
+##define __strtol_t uintmax_t
+##define __xstrtol xstrtoumax
+##define STRTOL_T_MINIMUM 0
+##define STRTOL_T_MAXIMUM UINTMAX_MAX
+##include "xstrtol.c"
+File: ./lib/xtime.h
+Hash: 93ba493c1b4263ae9363cbeabfe1a8abe0959b8380c740b34e3c4b3909c9f26d
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: 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:
+#/* xtime -- extended-resolution integer time stamps
+#
+#   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
+#   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: ./lib/xvasprintf.c
+Hash: 52187c5a41b1f31643add5fb4e3f204c74131d3030ce4b7668476584bc3075cf
+Copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* vasprintf and asprintf with out-of-memory checking.
+#   Copyright (C) 1999, 2002-2004, 2006-2008 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/xvasprintf.h
+Hash: 43236f9f154af870f714a7b11b1f4955a7e1e7a2e9f322608e5780e185014f63
+Copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* vasprintf and asprintf with out-of-memory checking.
+#   Copyright (C) 2002-2004, 2006-2008 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/yesno.c
+Hash: 89bdc0ba46060accf0008dc08a620a5629f006515f4bf5cc12a17775d448bfa3
+Copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc.
+License: 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:
+#/* yesno.c -- read a yes/no response from stdin
+#
+#   Copyright (C) 1990, 1998, 2001, 2003-2008 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
+File: ./lib/yesno.h
+Hash: f6ea7fda3622e6ce79f8737d3a6c12e11e9b077489cdbfe3a89e2105aa54493b
+Copyright: 2004 Free Software Foundation, Inc.
+License: 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:
+#/* declare yesno
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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/>.  */
+######################################################################
+## UPTOHERE
+######################################################################
+File: ./m4/00gnulib.m4
+Hash: 199b5fcd827c6451f70d8e1d1a64e314dbae7654c56b74f6588a5bdc54544e70
+Copyright: 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:
+## 00gnulib.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.
+#
+#dnl This file must be named something that sorts before all other
+#dnl gnulib-provided .m4 files.  It is needed until such time as we can
+#dnl assume Autoconf 2.64, with its improved AC_DEFUN_ONCE semantics.
+#
+## AC_DEFUN_ONCE([NAME], VALUE)
+## ----------------------------
+## Define NAME to expand to VALUE on the first use (whether by direct
+## expansion, or by AC_REQUIRE), and to nothing on all subsequent uses.
+## Avoid bugs in AC_REQUIRE in Autoconf 2.63 and earlier.  This
+File: ./m4/README
+Hash: ba4cd61e99798f7ea35082c20cc09f366c65ec5fccfd0fed9f9d155cf7e29bc5
+Copyright:
+License:
+#Header:
+#Many of the files in this directory are shared between the coreutils,
+#diffutils, tar and gettext packages -- and others, so if you
+#change them, try to ensure that you don't break those packages.
+#That's hard without a systematic approach, but here is a set of conventions
+#that makes it easy.
+#
+#- The lib/ sources are split into modules.  Usually the module of a
+#  lib/foo.h and lib/foo.c is called "foo" - not unexpected, hey! -, but
+#  in more ambiguous cases you can look up the module a file belongs to
+#  by doing "grep lib/foo.c modules/*".
+#
+#- For every module there is an autoconf macro file, usually called
+#  m4/foo.m4 according to the module name.  When you modify lib/foo.h or
+#  lib/foo.c, remember to modify m4/foo.m4 as well!
+#  What if you don't find m4/foo.m4? This probably means that the module
+File: ./m4/absolute-header.m4
+Hash: cd06c8f2c0e593aea317496f932d01531368be33ed202d8f67fa9d07f592d4e4
+Copyright: 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:
+## absolute-header.m4 serial 11
+#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 Derek Price.
+#
+## gl_ABSOLUTE_HEADER(HEADER1 HEADER2 ...)
+## ---------------------------------------
+## Find the absolute name of a header file, assuming the header exists.
+## If the header were sys/inttypes.h, this macro would define
+## ABSOLUTE_SYS_INTTYPES_H to the `""' quoted absolute name of sys/inttypes.h
+## in config.h
+## (e.g. `#define ABSOLUTE_SYS_INTTYPES_H "///usr/include/sys/inttypes.h"').
+File: ./m4/accept4.m4
+Hash: b3e97bc4b7996b0d54a8110f94d6eeb97c61532d392ee4edc10ac18bb4ecbea4
+Copyright: 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:
+## accept4.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_ACCEPT4],
+#[
+#  AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS])
+#
+#  dnl Persuade glibc <sys/socket.h> to declare accept4().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([accept4])
+#  if test $ac_cv_func_accept4 != yes; then
+File: ./m4/acl.m4
+Hash: 2062b336b8b9acae4a5a7acd0bc88988e5d79d2868fcd2e28ef211ee2fa0844d
+Copyright: 2002, 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:
+## acl.m4 - check for access control list (ACL) primitives
+## serial 9
+#
+## Copyright (C) 2002, 2004-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 and Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_ACL],
+#[
+#  AC_ARG_ENABLE([acl],
+#    AS_HELP_STRING([--disable-acl], [do not support ACLs]),
+#    , [enable_acl=auto])
+File: ./m4/afs.m4
+Hash: 568ef913f651e507daaa7d5e2f78566ce66e4d1c1b275c229fbfe1810ea7e0b2
+Copyright: 1999-2001, 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:
+## serial 10
+#
+## Copyright (C) 1999-2001, 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.
+#
+#AC_DEFUN([gl_AFS],
+#  [
+#    AC_ARG_WITH([afs],
+#              AS_HELP_STRING([--with-afs],
+#                             [support for the Andrew File System [[default=no]]]),
+#    test "$withval" = no || with_afs=yes, with_afs=no)
+#    if test "$with_afs" = yes; then
+#      AC_DEFINE([AFS], [1], [Define if you have the Andrew File System.])
+File: ./m4/alloca.m4
+Hash: 1c05b753d58a7541c6aabb8d0ae65e359233c6e0f6c660cee8edffbb50d0dba1
+Copyright: 2002-2004, 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:
+## alloca.m4 serial 9
+#dnl Copyright (C) 2002-2004, 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_ALLOCA],
+#[
+#  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
+#  AC_REQUIRE([AC_PROG_CPP])
+#  AC_REQUIRE([AC_PROG_EGREP])
+#
+#  AC_REQUIRE([AC_FUNC_ALLOCA])
+#  if test $ac_cv_func_alloca_works = no; then
+#    gl_PREREQ_ALLOCA
+File: ./m4/alphasort.m4
+Hash: ca5d108291340e87953a7da10112597eb36fe789578740fa3ce5266b621c777d
+Copyright: 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:
+## alphasort.m4 serial 1
+#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_ALPHASORT],
+#[
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#
+#  dnl Persuade glibc and Solaris <dirent.h> to declare alphasort().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS([alphasort])
+#  if test $ac_cv_func_alphasort = no; then
+File: ./m4/arcfour.m4
+Hash: a5713df7392190ea048a75a71afb1588cabaa6e3d6c1417961eb77168f44eca1
+Copyright: 2005, 2006 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:
+## arcfour.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_ARCFOUR],
+#[
+#  AC_LIBOBJ([arcfour])
+#])
+File: ./m4/arctwo.m4
+Hash: 36abc4a75d5117bfc913d1a8bf2c5e8e8a8bc6d7286f1303ce8880ee46be3431
+Copyright: 2005, 2006 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:
+## arctwo.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_ARCTWO],
+#[
+#  AC_LIBOBJ([arctwo])
+#  # Prerequisites of lib/arctwo.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+File: ./m4/argmatch.m4
+Hash: 4854bb865e261cec0fbb829700d2a7cd23fbebf0289ebf4a02f105691ccaedd9
+Copyright: 2005, 2006 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:
+##serial 3
+#dnl Copyright (C) 2005, 2006 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_ARGMATCH],
+#[
+#  AC_LIBOBJ([argmatch])
+#])
+File: ./m4/argp.m4
+Hash: 21e67baca54a3803f21fb63836804e99e202c709dcbc16d3ad6a7b7e272a3381
+Copyright: 2003-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:
+## argp.m4 serial 10
+#dnl Copyright (C) 2003-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_ARGP],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl argp-parse.c depends on GNU getopt internals, therefore use GNU getopt
+#  dnl always.
+#  gl_REPLACE_GETOPT
+#  dnl Note: gl_REPLACE_GETOPT does AC_LIBOBJ([getopt]), AC_LIBOBJ([getopt1]).
+File: ./m4/argz.m4
+Hash: 07bb623d7aa89977ca15b1d78a201ca4b7b4762561dac92466c89d0a65c17336
+Copyright: 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:
+## Portability macros for glibc argz.                    -*- Autoconf -*-
+##
+##   Copyright (C) 2004-2009 Free Software Foundation, Inc.
+##   Written by Gary V. Vaughan <gary@gnu.org>
+##
+## 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 7 argz.m4
+#
+#AC_DEFUN([gl_FUNC_ARGZ],
+#[gl_PREREQ_ARGZ
+#
+#AC_REQUIRE([AC_C_RESTRICT])
+File: ./m4/arpa_inet_h.m4
+Hash: 50b6027adea6ea1c675d502272095e88d7dc11f7e5ceca51ec845c4aa15295a5
+Copyright: 2006, 2008 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:
+## arpa_inet_h.m4 serial 5
+#dnl Copyright (C) 2006, 2008 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 and Bruno Haible
+#
+#AC_DEFUN([gl_HEADER_ARPA_INET],
+#[
+#  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_ARPA_INET_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([arpa/inet.h])
+File: ./m4/assert.m4
+Hash: 9939631ab7942c8ec4fe23d07695acdee8af208c98c7c15871b671dee73aaf8e
+Copyright: 1998, 1999, 2001, 2004, 2008 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:
+##serial 7
+#
+## Copyright (C) 1998, 1999, 2001, 2004, 2008 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.
+#
+#dnl based on code from Eleftherios Gkioulekas
+#dnl Autoconf 2.60 provides AC_HEADER_ASSERT for the same purpose, but
+#dnl it has broken semantics for --enable-assert until 2.64.
+#AC_DEFUN([gl_ASSERT],
+#[
+#  AC_MSG_CHECKING([whether to enable assertions])
+#  AC_ARG_ENABLE([assert],
+#    [AS_HELP_STRING([--disable-assert], [turn off assertions])],
+File: ./m4/atexit.m4
+Hash: 8085939167e8cb64ea4d9d89a945f2cde32d6b68df8fc6153ed1d7b8d1512597
+Copyright: 2002, 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:
+## atexit.m4 serial 3
+#dnl Copyright (C) 2002, 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_ATEXIT],
+#[
+#  AC_REPLACE_FUNCS([atexit])
+#  if test $ac_cv_func_atexit = no; then
+#    gl_PREREQ_ATEXIT
+#  fi
+#])
+#
+## Prerequisites of lib/atexit.c.
+File: ./m4/atoll.m4
+Hash: ba4f896e8c9fb0a4bd310145ca06ec6cf35be47f96e9e6af01ba1eb817fa40b4
+Copyright: 2008 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:
+## atoll.m4 serial 1
+#dnl Copyright (C) 2008 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_ATOLL],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  dnl We don't need (and can't compile) the replacement strtoll
+#  dnl unless the type 'long long int' exists.
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+#  if test "$ac_cv_type_long_long_int" = yes; then
+#    AC_CHECK_FUNCS([atoll])
+#    if test $ac_cv_func_atoll = no; then
+File: ./m4/autobuild.m4
+Hash: f5a4a593a144c5649aecf131a8cd7921e8f6c6f5e7dbfba1343aaae61734bd59
+Copyright: 2004, 2006, 2007, 2008 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:
+## autobuild.m4 serial 7
+#dnl Copyright (C) 2004, 2006, 2007, 2008 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 Simon Josefsson
+#
+## Usage: AB_INIT([MODE]).
+#AC_DEFUN([AB_INIT],
+#[
+#  AC_REQUIRE([AC_CANONICAL_BUILD])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#
+#  if test -z "$AB_PACKAGE"; then
+File: ./m4/backupfile.m4
+Hash: 08bbe11639a7958632ef367b118a0616b7375a316d87e5ef868c26ebe410ea2f
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+## backupfile.m4 serial 12
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_BACKUPFILE],
+#[
+#  AC_LIBOBJ([backupfile])
+#
+#  dnl Prerequisites of lib/backupfile.c.
+#  AC_REQUIRE([gl_CHECK_TYPE_STRUCT_DIRENT_D_INO])
+#  AC_REQUIRE([gl_AC_DOS])
+#  AC_REQUIRE([AC_SYS_LONG_FILE_NAMES])
+#  AC_CHECK_FUNCS_ONCE([pathconf])
+File: ./m4/base64.m4
+Hash: f0a6ca66fe9b14a51cd93f1f25116d916ffe72477c4f6cc44ab0f660d9041459
+Copyright: 2004, 2006 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:
+## base64.m4 serial 3
+#dnl Copyright (C) 2004, 2006 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_BASE64],
+#[
+#  gl_PREREQ_BASE64
+#])
+#
+## Prerequisites of lib/base64.c.
+#AC_DEFUN([gl_PREREQ_BASE64], [
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_C_RESTRICT])
+File: ./m4/bison-i18n.m4
+Hash: 965fc67b33c005ee86dca5eecdd0a9497bbe1bd8b6720bc3909c72fea2e4ae5d
+Copyright: 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:
+## bison-i18n.m4 serial 3
+#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 From Bruno Haible.
+#
+#dnl Support for internationalization of bison-generated parsers.
+#
+#dnl BISON_I18N
+#dnl should be used in configure.ac, after AM_GNU_GETTEXT. If USE_NLS is yes, it
+#dnl sets BISON_LOCALEDIR to indicate where to find the bison-runtime.mo files
+#dnl and defines YYENABLE_NLS if there are bison-runtime.mo files at all.
+#AC_DEFUN([BISON_I18N],
+File: ./m4/bison.m4
+Hash: 894a0216128f06bd77d174d18135624574366e95de47fbc8921d6d504eec8072
+Copyright: 2002, 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:
+## serial 5
+#
+## Copyright (C) 2002, 2005, 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([gl_BISON],
+#[
+#  # getdate.y works with bison only.
+#  : ${YACC='bison -y'}
+#dnl
+#dnl Declaring YACC & YFLAGS precious will not be necessary after GNULIB
+#dnl requires an Autoconf greater than 2.59c, but it will probably still be
+#dnl useful to override the description of YACC in the --help output, re
+File: ./m4/btowc.m4
+Hash: a5eb4065f63412f6a83feb9e1f65a2a1f8e26da7c83823787165acbaf0137222
+Copyright: 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:
+## btowc.m4 serial 4
+#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_FUNC_BTOWC],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_CHECK_FUNCS_ONCE([btowc])
+#  if test $ac_cv_func_btowc = no; then
+#    HAVE_BTOWC=0
+#  else
+File: ./m4/byteswap.m4
+Hash: c5aa765b7c6ccc3353870fb151665077a7e38babbeecd726d47c374b6030c142
+Copyright: 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:
+## byteswap.m4 serial 3
+#dnl Copyright (C) 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.
+#
+#dnl Written by Oskar Liljeblad.
+#
+#AC_DEFUN([gl_BYTESWAP],
+#[
+#  dnl Prerequisites of lib/byteswap.in.h.
+#  AC_CHECK_HEADERS([byteswap.h], [
+#    BYTESWAP_H=''
+#  ], [
+#    BYTESWAP_H='byteswap.h'
+File: ./m4/c-stack.m4
+Hash: 5f84f6648d7bba8f1b4a27bd6990d3121ad247cf746dd1e1800dbfea6f2a189b
+Copyright: 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 9
+#
+#AC_DEFUN([AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC],
+#  [# for STACK_DIRECTION
+#   AC_REQUIRE([AC_FUNC_ALLOCA])
+#   AC_REQUIRE([AC_CANONICAL_HOST])
+File: ./m4/c-strtod.m4
+Hash: f63125eb425fbf1a0f952fabacdb1cc92e8b73b7b535d827cf0238214ec38f7e
+Copyright: 2004, 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:
+## c-strtod.m4 serial 11
+#
+## Copyright (C) 2004, 2005, 2006, 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.
+#
+#AC_DEFUN([gl_C99_STRTOLD],
+#[
+#  AC_CACHE_CHECK([whether strtold conforms to C99],
+#    [gl_cv_func_c99_strtold],
+#    [AC_LINK_IFELSE(
+#       [AC_LANG_PROGRAM(
+File: ./m4/calloc.m4
+Hash: 3df4bb22fb92d400e022a50e89cbafc7864c637c4a8bdb540128cdd270263b53
+Copyright: 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:
+## calloc.m4 serial 9
+#
+## Copyright (C) 2004-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 Jim Meyering.
+#
+## Determine whether calloc (N, S) returns non-NULL when N*S is zero,
+## and returns NULL when N*S overflows.
+## If so, define HAVE_CALLOC.  Otherwise, define calloc to rpl_calloc
+## and arrange to use a calloc wrapper function that does work in that case.
+#
+## _AC_FUNC_CALLOC_IF([IF-WORKS], [IF-NOT])
+File: ./m4/canon-host.m4
+Hash: 6e792084f158286ac4f73322ef6232e1d46915a0c9c1d49175ff0f95524d60ff
+Copyright: 2002, 2003, 2004, 2005, 2006, 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:
+## canon-host.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 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.
+#
+#AC_DEFUN([gl_CANON_HOST],
+#[
+#  AC_LIBOBJ([canon-host])
+#  gl_PREREQ_CANON_HOST
+#])
+#
+#AC_DEFUN([gl_PREREQ_CANON_HOST], [
+#  :
+#])
+File: ./m4/canonicalize-lgpl.m4
+Hash: 52633d2d1b4de8d850f6a261c9674850ad6b49a6a1cd0bac28a179df50fef773
+Copyright: 2003, 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:
+## canonicalize-lgpl.m4 serial 5
+#dnl Copyright (C) 2003, 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_CANONICALIZE_LGPL],
+#[
+#  dnl Do this replacement check manually because the file name is shorter
+#  dnl than the function name.
+#  AC_CHECK_DECLS_ONCE([canonicalize_file_name])
+#  AC_CHECK_FUNCS_ONCE([canonicalize_file_name])
+#  if test $ac_cv_func_canonicalize_file_name = no; then
+#    AC_LIBOBJ([canonicalize-lgpl])
+#    AC_DEFINE([realpath], [rpl_realpath],
+File: ./m4/canonicalize.m4
+Hash: bfb8373080498188c794855955e00f51ab9ba1a0f71f87a369fb782b100ecdac
+Copyright: 2003, 2004, 2005, 2006, 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:
+##serial 12
+#
+## Copyright (C) 2003, 2004, 2005, 2006, 2007 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 Jim Meyering.
+#
+#AC_DEFUN([AC_FUNC_CANONICALIZE_FILE_NAME],
+#  [
+#    AC_LIBOBJ([canonicalize])
+#
+#    AC_CHECK_HEADERS_ONCE([sys/param.h])
+#    AC_CHECK_DECLS_ONCE([canonicalize_file_name])
+File: ./m4/ceil.m4
+Hash: 99018f7541cafb7232e12934ab1020dd0c0071912a56b3a0e268f7c97f009c36
+Copyright: 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:
+## ceil.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_FUNC_CEIL],
+#[
+#  dnl Test whether ceil() can be used without libm.
+#  gl_FUNC_CEIL_LIBS
+#  if test "$CEIL_LIBM" = "?"; then
+#    CEIL_LIBM=
+#  fi
+#  AC_SUBST([CEIL_LIBM])
+#])
+File: ./m4/ceilf.m4
+Hash: 8a43f29a1a6f510ada6a916c12bc8dce19af13bec5252876c9ea5c451fd175db
+Copyright: 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:
+## ceilf.m4 serial 4
+#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_CEILF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare ceilf().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether ceilf() is declared.
+#  AC_CHECK_DECLS([ceilf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_ceilf" = yes; then
+#    dnl Test whether ceilf() can be used without libm.
+File: ./m4/ceill.m4
+Hash: e7b2a8c6575e96a75b4e0b39c67c8045b023dc4e774d6db56460903035d99847
+Copyright: 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:
+## ceill.m4 serial 4
+#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_CEILL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare ceill().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether ceill() is declared.
+#  AC_CHECK_DECLS([ceill], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_ceill" = yes; then
+#    dnl Test whether ceill() can be used without libm.
+File: ./m4/chdir-long.m4
+Hash: a4f29bf720ac294a5e9815f9bf97d5b315066371d5ba0c1f73ea8480b87e1d35
+Copyright: 2004, 2005, 2006, 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:
+##serial 10
+#
+## Use Gnulib's robust chdir function.
+## It can handle arbitrarily long directory names, which means
+## that when it is given the name of an existing directory, it
+## never fails with ENAMETOOLONG.
+## Arrange to compile chdir-long.c only on systems that define PATH_MAX.
+#
+#dnl Copyright (C) 2004, 2005, 2006, 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.
+#
+## Written by Jim Meyering.
+File: ./m4/chdir-safer.m4
+Hash: d4d11a65f4290f666741af1268b3191fe98f808dc2542a5178b54ed4e55ed126
+Copyright: 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:
+##serial 4
+#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.
+#
+#AC_DEFUN([gl_CHDIR_SAFER],
+#[
+#  AC_LIBOBJ([chdir-safer])
+#  AC_CHECK_FUNCS_ONCE([readlink])
+#])
+File: ./m4/check-math-lib.m4
+Hash: 375574fd5cbe36e53461e37f4abbae1347d1b94d1bb7fb713784f988d6509c82
+Copyright: 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 2
+#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/check-version.m4
+Hash: db75405103fdbe9b17d63917d875dc924fd24638440bf489dd2e258d75c154d8
+Copyright: 2005, 2006 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:
+##serial 2
+#dnl Copyright (C) 2005, 2006 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_CHECK_VERSION],
+#[
+#  AC_LIBOBJ([check-version])
+#])
+File: ./m4/chown.m4
+Hash: 9b3def56d60d2eebd5ca9f5e8163027800bf2fc01df3d092143caa00f80ffa01
+Copyright: 1997-2001, 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:
+## serial 19
+## Determine whether we need the chown wrapper.
+#
+#dnl Copyright (C) 1997-2001, 2003-2005, 2007, 2009
+#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.
+#
+## chown should accept arguments of -1 for uid and gid, and it should
+## dereference symlinks.  If it doesn't, arrange to use the replacement
+## function.
+#
+## From Jim Meyering.
+File: ./m4/clock_time.m4
+Hash: 19824aa72500f6ce1cd7dad2280d6742b8b97adf59dec61783b165208a384aa8
+Copyright: 2002-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:
+## clock_time.m4 serial 9
+#dnl Copyright (C) 2002-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.
+#
+## Check for clock_gettime and clock_settime, and set LIB_CLOCK_GETTIME.
+## For a program named, say foo, you should add a line like the following
+## in the corresponding Makefile.am file:
+## foo_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)
+#
+#AC_DEFUN([gl_CLOCK_TIME],
+#[
+#  dnl Persuade glibc and Solaris <time.h> to declare these functions.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+File: ./m4/cloexec.m4
+Hash: 4d4b571bd482f975c487221e5a04b89a98bb9ecde57248f8b8e6cc066718ae68
+Copyright: 2004, 2005, 2006 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:
+##serial 6
+#dnl Copyright (C) 2004, 2005, 2006 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_CLOEXEC],
+#[
+#  AC_LIBOBJ([cloexec])
+#])
+File: ./m4/close-stream.m4
+Hash: 3091fb73ef0ac31a2cc908760c33c471d4e7a5c1283c03f5a69d5a82301043fe
+Copyright: 2006-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:
+##serial 3
+#dnl Copyright (C) 2006-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.
+#
+#AC_DEFUN([gl_CLOSE_STREAM],
+#[
+#  AC_LIBOBJ([close-stream])
+#
+#  dnl Prerequisites of lib/close-stream.c.
+#  :
+#])
+File: ./m4/close.m4
+Hash: 7e1b55433c7364fb5ea4be276aa2f2761dd7b50c399d474f11ed787201ad29d2
+Copyright: 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:
+## close.m4 serial 5
+#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_FUNC_CLOSE],
+#[
+#  m4_ifdef([gl_PREREQ_SYS_H_WINSOCK2], [
+#    gl_PREREQ_SYS_H_WINSOCK2
+#    if test $UNISTD_H_HAVE_WINSOCK2_H = 1; then
+#      dnl Even if the 'socket' module is not used here, another part of the
+#      dnl application may use it and pass file descriptors that refer to
+#      dnl sockets to the close() function. So enable the support for sockets.
+#      gl_REPLACE_CLOSE
+File: ./m4/closein.m4
+Hash: f58bf58484cebc1a8bc332904efa060564ca19565dde390c83faa28be18d672f
+Copyright: 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:
+## closein.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_CLOSEIN],
+#[
+#  AC_LIBOBJ([closein])
+#
+#  dnl Prerequisites of lib/closein.c.
+#  :
+#])
+File: ./m4/closeout.m4
+Hash: b472fe6270917cb33de443e6130c9722c4f316f255f00a8a00f3ae37fab0b26a
+Copyright: 2002, 2003, 2005, 2006 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:
+## closeout.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_CLOSEOUT],
+#[
+#  AC_LIBOBJ([closeout])
+#
+#  dnl Prerequisites of lib/closeout.c.
+#  :
+#])
+File: ./m4/codeset.m4
+Hash: 798184a7fbbc98c7faaca47a01a72ef637da6852ab2ea8d9ed4b19ad8f83be66
+Copyright: 2000-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:
+## codeset.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 2000-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 From Bruno Haible.
+#
+#AC_DEFUN([AM_LANGINFO_CODESET],
+#[
+#  AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
+#    [AC_TRY_LINK([#include <langinfo.h>],
+#      [char* cs = nl_langinfo(CODESET); return !cs;],
+#      [am_cv_langinfo_codeset=yes],
+#      [am_cv_langinfo_codeset=no])
+File: ./m4/cond.m4
+Hash: fc7299e2068e6ff7fb2c149ae8bf9720b040cf1ee5a6862dc34a9fc507a01556
+Copyright: 2008 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:
+## cond.m4 serial 1
+#dnl Copyright (C) 2008 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_COND],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+File: ./m4/config-h.m4
+Hash: c6cf92e91910d0bd085cf645a73b6ae7cd932ae193edb3c41c9e285aeb84122a
+Copyright: 2006 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:
+## Say that -DHAVE_CONFIG_H is not needed.
+#
+#dnl Copyright (C) 2006 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.
+#
+## This package's source files all include config.h unconditionally,
+## so there's no need to pass -DHAVE_CONFIG_H to the compiler.
+#AC_DEFUN([gl_CONFIG_H],
+#  [AC_CONFIG_COMMANDS_PRE([test "X$DEFS" = X-DHAVE_CONFIG_H && DEFS=])])
+File: ./m4/copy-file.m4
+Hash: 23a58772c01c55b3d027ceae709201c9fafb97744dbe367577674e28588d64d5
+Copyright: 2003, 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:
+## copy-file.m4 serial 3
+#dnl Copyright (C) 2003, 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_COPY_FILE],
+#[
+#  AC_CHECK_HEADERS_ONCE([unistd.h utime.h])
+#  AC_CHECK_FUNCS([chown utime utimes])
+#])
+File: ./m4/count-one-bits.m4
+Hash: 7cb9f7f46b3c69bd552292ce5a9d8ad5372dc27602d1adfffd765688bb918c6e
+Copyright: 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:
+## count-one-bits.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_COUNT_ONE_BITS],
+#[
+#  dnl We don't need (and can't compile) count_one_bits_ll
+#  dnl unless the type 'unsigned long long int' exists.
+#  AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
+#])
+File: ./m4/crc.m4
+Hash: ac3b61507ffd5e75e6cb43ecc272a4c802c6b05131d7f8855c2a7509fc610386
+Copyright: 2005, 2006 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:
+## crc.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_CRC],
+#[
+#  AC_LIBOBJ([crc])
+#])
+File: ./m4/csharp.m4
+Hash: 3e03d469ea0a067f286a667d6fc8fb7c8e373ec8c6aa13b6b7d73d5ecdd411bf
+Copyright: 2004-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:
+## csharp.m4 serial 3
+#dnl Copyright (C) 2004-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.
+#
+## Sets CSHARP_CHOICE to the preferred C# implementation:
+## 'pnet' or 'mono' or 'any' or 'no'.
+#AC_DEFUN([gt_CSHARP_CHOICE],
+#[
+#  AC_MSG_CHECKING([for preferred C[#] implementation])
+#  AC_ARG_ENABLE([csharp],
+#    [  --enable-csharp[[=IMPL]]  choose preferred C[#] implementation (pnet or mono)],
+#    [CSHARP_CHOICE="$enableval"],
+#    CSHARP_CHOICE=any)
+File: ./m4/csharpcomp.m4
+Hash: bed35278c23c7f90f65c2e1a03b0b535b14f290ba7007cc11f8c3c0a97b06d1e
+Copyright: 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:
+## csharpcomp.m4 serial 8
+#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.
+#
+## Prerequisites of csharpcomp.sh.
+## Checks for a C# compiler.
+## Sets at most one of HAVE_CSCC, HAVE_MCS, HAVE_CSC.
+## Sets HAVE_CSHARPCOMP to nonempty if csharpcomp.sh will work.
+## Also sets CSHARPCOMPFLAGS.
+#AC_DEFUN([gt_CSHARPCOMP],
+#[
+#  AC_REQUIRE([gt_CSHARP_CHOICE])
+#  AC_MSG_CHECKING([for C[#] compiler])
+File: ./m4/csharpexec.m4
+Hash: e1de084636e1f5efc990513007c3cfa05561055efcecf49e159166249f61ea8a
+Copyright: 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:
+## csharpexec.m4 serial 4
+#dnl Copyright (C) 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.
+#
+## Prerequisites of csharpexec.sh.
+## Checks for a C# execution engine.
+## gt_CSHARPEXEC or gt_CSHARPEXEC(testexecutable, its-directory)
+## Sets at most one of HAVE_ILRUN, HAVE_MONO, HAVE_CLIX.
+## Sets HAVE_CSHARPEXEC to nonempty if csharpexec.sh will work.
+#AC_DEFUN([gt_CSHARPEXEC],
+#[
+#  AC_REQUIRE([gt_CSHARP_CHOICE])
+#  AC_MSG_CHECKING([for C[#] program execution engine])
+File: ./m4/cycle-check.m4
+Hash: 08b0141983dcbe0af6eb3adced2241ebe8b6ab88474fe14396559bf2c280ee1e
+Copyright: 2005, 2006, 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:
+##serial 5
+#dnl Copyright (C) 2005, 2006, 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.
+#
+#AC_DEFUN([gl_CYCLE_CHECK],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_LIBOBJ([cycle-check])
+#])
+File: ./m4/d-ino.m4
+Hash: ebc82fd998746123b58231e2d774d7709bbfc7594df11bbc8552c63a28b75c48
+Copyright: 1997, 1999-2001, 2003-2004, 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:
+## serial 11
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl Check whether struct dirent has a member named d_ino.
+#dnl
+#
+## Copyright (C) 1997, 1999-2001, 2003-2004, 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.
+#
+#AC_DEFUN([gl_CHECK_TYPE_STRUCT_DIRENT_D_INO],
+File: ./m4/d-type.m4
+Hash: aaf8c30e46246b12f62710018b00b56cd4ae3ed0f1a0133325d2d727a75db56b
+Copyright: 1997, 1999-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:
+## serial 11
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl Check whether struct dirent has a member named d_type.
+#dnl
+#
+## Copyright (C) 1997, 1999-2004, 2006, 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([gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE],
+#  [AC_CACHE_CHECK([for d_type member in directory struct],
+File: ./m4/des.m4
+Hash: b9009b10ac57e2829610ad77f600ca717a7ddd2622a071ca3393ffee39f474c1
+Copyright: 2005, 2006 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:
+## des.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_DES],
+#[
+#  AC_LIBOBJ([des])
+#])
+File: ./m4/dirent-safer.m4
+Hash: 0df2785f4f2c25e6850aeb7ae112f5292cb556f96c2d79c933b062ec5a840276
+Copyright: 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:
+##serial 1
+#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_DIRENT_SAFER],
+#[
+#  AC_CHECK_FUNCS_ONCE([fdopendir])
+#  AC_LIBOBJ([opendir-safer])
+#])
+File: ./m4/dirent_h.m4
+Hash: 1e19ccad9ce6a2f856861bf7c23b8cd3e5a42edb574fdb4878ccb77562e5eee0
+Copyright: 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:
+## dirent_h.m4 serial 4
+#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.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_DIRENT_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_DIRENT_H_DEFAULTS])
+#
+#  gl_CHECK_NEXT_HEADERS([dirent.h])
+File: ./m4/dirfd.m4
+Hash: f1a40a07c8854f4be0b3f0f4deae0b1f72de8eb88ed8b30c7a938ad9c4ef1635
+Copyright: 2001-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:
+## serial 17   -*- Autoconf -*-
+#
+#dnl Find out how to get the file descriptor associated with an open DIR*.
+#
+## Copyright (C) 2001-2006, 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.
+#
+#dnl From Jim Meyering
+#
+#AC_DEFUN([gl_FUNC_DIRFD],
+#[
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#  gl_REPLACE_DIRENT_H
+File: ./m4/dirname.m4
+Hash: 5e5b390ea6a0270ff48f6e0b985c95d3d178a29ab54c859758c87bd19b543cee
+Copyright: 2002-2006 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:
+##serial 7   -*- autoconf -*-
+#dnl Copyright (C) 2002-2006 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_DIRNAME],
+#[
+#  AC_LIBOBJ([basename])
+#  AC_LIBOBJ([dirname])
+#  AC_LIBOBJ([stripslash])
+#
+#  dnl Prerequisites of lib/dirname.h.
+#  AC_REQUIRE([gl_AC_DOS])
+#  AC_REQUIRE([gl_DOUBLE_SLASH_ROOT])
+File: ./m4/dos.m4
+Hash: 0686518ef84a5fed6f1bb276c02d11c84efe40f4450b8b956b4b0f0f4af1f739
+Copyright: 2000, 2001, 2004, 2005, 2006 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:
+##serial 11   -*- autoconf -*-
+#
+## Define some macros required for proper operation of code in lib/*.c
+## on MSDOS/Windows systems.
+#
+## Copyright (C) 2000, 2001, 2004, 2005, 2006 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.
+#
+## From Jim Meyering.
+#
+#AC_DEFUN([gl_AC_DOS],
+#  [
+#    AC_CACHE_CHECK([whether system is Windows or MSDOS], [ac_cv_win_or_dos],
+File: ./m4/double-slash-root.m4
+Hash: 00cf683e37d5296236bb31b34728935f45e051dd74abf695fda2272406f6231f
+Copyright: 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:
+## double-slash-root.m4 serial 4   -*- Autoconf -*-
+#dnl Copyright (C) 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.
+#
+#AC_DEFUN([gl_DOUBLE_SLASH_ROOT],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CACHE_CHECK([whether // is distinct from /], [gl_cv_double_slash_root],
+#    [ if test x"$cross_compiling" = xyes ; then
+#      # When cross-compiling, there is no way to tell whether // is special
+#      # short of a list of hosts.  However, the only known hosts to date
+#      # that have a distinct // are Apollo DomainOS (too old to port to),
+#      # Cygwin, and z/OS.  If anyone knows of another system for which // has
+File: ./m4/dprintf-posix.m4
+Hash: 4d518e6a74aa81ddadb7111ad05a9447d5c22202ff954d6dca5964ec1e755cf3
+Copyright: 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:
+## dprintf-posix.m4 serial 2
+#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_DPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/dprintf.m4
+Hash: 193180d094ccea061d44e273da365b72498002d167766c58b7ebe3d9ae421b03
+Copyright: 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:
+## dprintf.m4 serial 1
+#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_DPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([dprintf])
+#  if test $ac_cv_func_dprintf = no; then
+#    HAVE_DPRINTF=0
+#    gl_REPLACE_DPRINTF
+#  fi
+#])
+File: ./m4/dup2.m4
+Hash: 7c4b1a9d5d67bca60012e759553f97b72a0ec7f8106e3881845c6545005cb452
+Copyright: 2002, 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:
+##serial 8
+#dnl Copyright (C) 2002, 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_FUNC_DUP2],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CHECK_FUNCS_ONCE([dup2])
+#  if test $ac_cv_func_dup2 = no; then
+#    HAVE_DUP2=0
+#    AC_LIBOBJ([dup2])
+#  else
+File: ./m4/dup3.m4
+Hash: 4ce79f58847153c5a32e74acc00c061c31a87fef94e418168dddb0c0641f1710
+Copyright: 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:
+## dup3.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_DUP3],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare dup3().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([dup3])
+#  if test $ac_cv_func_dup3 != yes; then
+File: ./m4/eaccess.m4
+Hash: 2eca1bd5e8430964e61caf77d01a5abf3514931453355b3a99a513ba4203cce0
+Copyright: 2003, 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:
+## eaccess.m4 serial 2
+#dnl Copyright (C) 2003, 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_EACCESS],
+#[
+#  AC_CHECK_FUNC([eaccess], ,
+#    [AC_DEFINE([eaccess], [access],
+#       [Define as 'access' if you don't have the eaccess() function.])])
+#])
+File: ./m4/eealloc.m4
+Hash: b48072eda4c415f4c70dabf3f484840e7dcb508b206b48b83d93b9646361d27e
+Copyright: 2003, 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:
+## eealloc.m4 serial 2
+#dnl Copyright (C) 2003, 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_EEALLOC],
+#[
+#  AC_REQUIRE([gl_EEMALLOC])
+#  AC_REQUIRE([gl_EEREALLOC])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+#
+#AC_DEFUN([gl_EEMALLOC],
+#[
+File: ./m4/environ.m4
+Hash: 4283b25a258a4358150e4422f3c22bc4a5a95fd3b05c3864c656997f245d571f
+Copyright: 2001-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:
+## environ.m4 serial 2
+#dnl Copyright (C) 2001-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.
+#
+#AC_DEFUN([gl_ENVIRON],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  dnl Persuade glibc <unistd.h> to declare environ.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  gt_CHECK_VAR_DECL([#include <unistd.h>], environ)
+#  if test $gt_cv_var_environ_declaration != yes; then
+#    HAVE_DECL_ENVIRON=0
+#  fi
+File: ./m4/errno_h.m4
+Hash: 4fe293d8c7486c74c2a6ec7b383c10f11e80af0ac1c6c28451e798a62117bd96
+Copyright: 2004, 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:
+## errno_h.m4 serial 6
+#dnl Copyright (C) 2004, 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.
+#
+#AC_DEFUN_ONCE([gl_HEADER_ERRNO_H],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([for complete errno.h], [gl_cv_header_errno_h_complete], [
+#    AC_EGREP_CPP([booboo],[
+##include <errno.h>
+##if !defined ENOMSG
+#booboo
+##endif
+File: ./m4/error.m4
+Hash: d8d8360113fea1e0eab7095a3331097070f8c4adf2dd86b5fd11dc22f73ceebf
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 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:
+##serial 11
+#
+## Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004 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([gl_ERROR],
+#[
+#  AC_FUNC_ERROR_AT_LINE
+#  dnl Note: AC_FUNC_ERROR_AT_LINE does AC_LIBSOURCES([error.h, error.c]).
+#  gl_PREREQ_ERROR
+#])
+File: ./m4/euidaccess.m4
+Hash: b2aa7901f1599ebf72d901afba98b9e218c1855b4396cb39194784aeb9051200
+Copyright: 2002-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:
+## euidaccess.m4 serial 11
+#dnl Copyright (C) 2002-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_NONREENTRANT_EUIDACCESS],
+#[
+#  AC_REQUIRE([gl_FUNC_EUIDACCESS])
+#  AC_DEFINE([PREFER_NONREENTRANT_EUIDACCESS], [1],
+#    [Define this if you prefer euidaccess to return the correct result
+#     even if this would make it nonreentrant.  Define this only if your
+#     entire application is safe even if the uid or gid might temporarily
+#     change.  If your application uses signal handlers or threads it
+#     is probably not safe.])
+File: ./m4/exclude.m4
+Hash: f157d5680a79611b130e7e6082cdfd076c29a03eaa43c6edc97cc8e5fe25a1bf
+Copyright: 2002, 2003, 2005, 2006 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:
+## exclude.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_EXCLUDE],
+#[
+#  AC_LIBOBJ([exclude])
+#])
+File: ./m4/execute.m4
+Hash: d91a2923d49049f4b4d8e89e4c75b86ff3a90420e1e36337461f09aef719825f
+Copyright: 2003, 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:
+## execute.m4 serial 4
+#dnl Copyright (C) 2003, 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_EXECUTE],
+#[
+#  dnl Prerequisites of lib/execute.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_TYPE_MODE_T])
+#])
+File: ./m4/exitfail.m4
+Hash: c0bca886587d8ac9978c63a4cd4016879923984497dee2730b5c8cf3e14162f1
+Copyright: 2002, 2003, 2005, 2006 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:
+## exitfail.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_EXITFAIL],
+#[
+#  AC_LIBOBJ([exitfail])
+#
+#  dnl No prerequisites of lib/exitfail.c.
+#  :
+#])
+File: ./m4/exponentd.m4
+Hash: 5058bb832cabaa10e4a9c9d86746cf504a7f65f202f513d0672d569ca22365ff
+Copyright: 2007-2008 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:
+## exponentd.m4 serial 1
+#dnl Copyright (C) 2007-2008 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_DOUBLE_EXPONENT_LOCATION],
+#[
+#  AC_CACHE_CHECK([where to find the exponent in a 'double'],
+#    [gl_cv_cc_double_expbit0],
+#    [
+#      AC_TRY_RUN([
+##include <float.h>
+##include <stddef.h>
+##include <stdio.h>
+##include <string.h>
+File: ./m4/exponentf.m4
+Hash: 9959e539475d1417ce2a219cbace11d88034d81641007a866c4219aa5341a302
+Copyright: 2007-2008 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:
+## exponentf.m4 serial 1
+#dnl Copyright (C) 2007-2008 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_FLOAT_EXPONENT_LOCATION],
+#[
+#  AC_CACHE_CHECK([where to find the exponent in a 'float'],
+#    [gl_cv_cc_float_expbit0],
+#    [
+#      AC_TRY_RUN([
+##include <float.h>
+##include <stddef.h>
+##include <stdio.h>
+##include <string.h>
+File: ./m4/exponentl.m4
+Hash: 794a89c1dcefd7d2a44a7627ed950cc1de34a3439fb6104e42b476ef7ee745e7
+Copyright: 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:
+## exponentl.m4 serial 2
+#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_LONG_DOUBLE_EXPONENT_LOCATION],
+#[
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_CACHE_CHECK([where to find the exponent in a 'long double'],
+#    [gl_cv_cc_long_double_expbit0],
+#    [
+#      AC_TRY_RUN([
+##include <float.h>
+##include <stddef.h>
+##include <stdio.h>
+File: ./m4/extensions.m4
+Hash: bdff048b894f22bac6a6632e68de81828283256a335be4b9e464e943190c0801
+Copyright: 2003, 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:
+## serial 8  -*- Autoconf -*-
+## Enable extensions on systems that normally disable them.
+#
+## Copyright (C) 2003, 2006-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.
+#
+## This definition of AC_USE_SYSTEM_EXTENSIONS is stolen from CVS
+## Autoconf.  Perhaps we can remove this once we can assume Autoconf
+## 2.62 or later everywhere, but since CVS Autoconf mutates rapidly
+## enough in this area it's likely we'll need to redefine
+## AC_USE_SYSTEM_EXTENSIONS for quite some time.
+#
+## AC_USE_SYSTEM_EXTENSIONS
+File: ./m4/faccessat.m4
+Hash: 9f08b4c94c4a06294b64072a9e6b684b627b44440875f145615f66814fc0b702
+Copyright: 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:
+## serial 3
+## See if we need to provide faccessat replacement.
+#
+#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.
+#
+## Written by Eric Blake.
+#
+#AC_DEFUN([gl_FUNC_FACCESSAT],
+#[
+#  AC_REQUIRE([gl_FUNC_OPENAT])
+#  AC_REQUIRE([gl_FUNC_EUIDACCESS])
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+File: ./m4/fatal-signal.m4
+Hash: 2a78cb0997683eca979321f1f2eb2973b442ce77f106bcefa8859968fbf58f04
+Copyright: 2003-2004, 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:
+## fatal-signal.m4 serial 7
+#dnl Copyright (C) 2003-2004, 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.
+#
+#AC_DEFUN([gl_FATAL_SIGNAL],
+#[
+#  AC_REQUIRE([gt_TYPE_SIG_ATOMIC_T])
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+#  gl_PREREQ_SIG_HANDLER_H
+#])
+File: ./m4/fbufmode.m4
+Hash: 47eae3094e71bbbbbdf5e844b7e46629cccefb272730dd90e15929281f04fa48
+Copyright: 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:
+## fbufmode.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_FBUFMODE],
+#[
+#  dnl Prerequisites of lib/fbufmode.c.
+#  AC_CHECK_FUNCS_ONCE([__flbf])
+#])
+File: ./m4/fchdir.m4
+Hash: 18dfd391edf590486365f2410fe2d2fb805d743a68136299ddc47fe80711db98
+Copyright: 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:
+## fchdir.m4 serial 9
+#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_FCHDIR],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([fchdir])
+#  if test $ac_cv_func_fchdir = no; then
+#    REPLACE_FCHDIR=1
+#    AC_LIBOBJ([fchdir])
+File: ./m4/fclose.m4
+Hash: cb8402f12d3a7e62c3e5617f98e19cc1c0ddef4904bf4d04467c445f5853ed0c
+Copyright: 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:
+## fclose.m4 serial 2
+#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_FUNC_FCLOSE],
+#[
+#])
+#
+#AC_DEFUN([gl_REPLACE_FCLOSE],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  REPLACE_FCLOSE=1
+#  AC_LIBOBJ([fclose])
+File: ./m4/fcntl-safer.m4
+Hash: 125531e3fb7fa9ce62b6f25142454078fdc1653288e56dd770c0917c3e88f4e3
+Copyright: 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:
+##serial 7
+#dnl Copyright (C) 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_FCNTL_SAFER],
+#[
+#  AC_LIBOBJ([open-safer])
+#  AC_LIBOBJ([creat-safer])
+#  # Prerequisites of lib/open-safer.c.
+#  AC_REQUIRE([gl_PROMOTED_TYPE_MODE_T])
+#])
+#
+#AC_DEFUN([gl_OPENAT_SAFER],
+File: ./m4/fcntl_h.m4
+Hash: 876ecbcebae308d5b51d7fefbbb44a0cc20781eae03ab416895c50118ad8d06c
+Copyright: 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:
+## serial 3
+## Configure fcntl.h.
+#dnl Copyright (C) 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 Written by Paul Eggert.
+#
+#AC_DEFUN([gl_FCNTL_H],
+#[
+#  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])
+#  dnl Persuade glibc <fcntl.h> to define O_NOATIME and O_NOFOLLOW.
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#  AC_CACHE_CHECK([for working fcntl.h], [gl_cv_header_working_fcntl_h],
+File: ./m4/fdopendir.m4
+Hash: 5d0d75f6c33c69ddb9b253fdf2cbcb08752a3bca92d5a9e44cac0d0935f05e1d
+Copyright: 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:
+## serial 1
+## See if we need to provide fdopendir.
+#
+#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.
+#
+## Written by Eric Blake.
+#
+#AC_DEFUN([gl_FUNC_FDOPENDIR],
+#[
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_FUNCS_ONCE([fdopendir])
+#  if test $ac_cv_func_fdopendir = no; then
+File: ./m4/fflush.m4
+Hash: a42927338afd7b316951faf1c953daafbea033ab310824f84ecbb58383228f48
+Copyright: 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:
+## fflush.m4 serial 7
+#
+## Copyright (C) 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.
+#
+#dnl From Eric Blake
+#
+#dnl Find out how to obey POSIX semantics of fflush(stdin) discarding
+#dnl unread input on seekable streams, rather than C99 undefined semantics.
+#
+#AC_DEFUN([gl_FUNC_FFLUSH],
+#[
+#  AC_CACHE_CHECK([whether fflush works on input streams],
+File: ./m4/file-type.m4
+Hash: 312a84168ac2f1b1c14220aeb335cf1268efe38307848c9a882c099a057ed59e
+Copyright: 2002, 2005, 2006 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:
+## file-type.m4 serial 6
+#dnl Copyright (C) 2002, 2005, 2006 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_FILE_TYPE],
+#[
+#  AC_LIBOBJ([file-type])
+#])
+File: ./m4/fileblocks.m4
+Hash: afc5994b8cd6b810f81c0bb605c9768ba3c724ebf1ac33b1940081b564db76fd
+Copyright: 2002, 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:
+## fileblocks.m4 serial 5
+#dnl Copyright (C) 2002, 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.
+#
+#AC_DEFUN([gl_FILEBLOCKS],
+#[
+#  AC_STRUCT_ST_BLOCKS
+#  dnl Note: AC_STRUCT_ST_BLOCKS does AC_LIBOBJ([fileblocks]).
+#  if test $ac_cv_member_struct_stat_st_blocks = no; then
+#    gl_PREREQ_FILEBLOCKS
+#  fi
+#])
+File: ./m4/filemode.m4
+Hash: 8dd4d3ccf500ebd64522a379c41fec1ed74e007244f7cd946dc9a8c6b0a95e4e
+Copyright: 2002, 2005, 2006 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:
+## filemode.m4 serial 7
+#dnl Copyright (C) 2002, 2005, 2006 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_FILEMODE],
+#[
+#  AC_REQUIRE([AC_STRUCT_ST_DM_MODE])
+#  AC_LIBOBJ([filemode])
+#  AC_CHECK_DECLS_ONCE([strmode])
+#])
+File: ./m4/filenamecat.m4
+Hash: ac5ada6787a8617ef2ca718ff8043193dda141d1d57be957af8840cd2ec371dd
+Copyright: 2002-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:
+## filenamecat.m4 serial 9
+#dnl Copyright (C) 2002-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_FILE_NAME_CONCAT],
+#[
+#  AC_LIBOBJ([filenamecat])
+#
+#  dnl Prerequisites of lib/filenamecat.c.
+#  AC_CHECK_FUNCS_ONCE([mempcpy])
+#])
+File: ./m4/findprog.m4
+Hash: 90578a64ef1f6ce7f9d541fac5cb328d7f900ca600e1b1c491e97a729c4391ed
+Copyright: 2003, 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:
+## findprog.m4 serial 2
+#dnl Copyright (C) 2003, 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_FINDPROG],
+#[
+#  dnl Prerequisites of lib/findprog.c.
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+#  AC_REQUIRE([gl_FUNC_EACCESS])
+#])
+File: ./m4/flexmember.m4
+Hash: 91bd9e053632cf0678e82035378bc32d21c404e017c0cb13c1888887ccceed56
+Copyright: 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:
+## serial 2
+## Check for flexible array member support.
+#
+## Copyright (C) 2006, 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.
+#
+#AC_DEFUN([AC_C_FLEXIBLE_ARRAY_MEMBER],
+#[
+#  AC_CACHE_CHECK([for flexible array member],
+#    ac_cv_c_flexmember,
+#    [AC_COMPILE_IFELSE(
+File: ./m4/float_h.m4
+Hash: ed0472c9ce5a69206792765536ce26bf056cb09a0e4e00fbf6f92a804b92dce6
+Copyright: 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:
+## float_h.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.
+#
+#AC_DEFUN([gl_FLOAT_H],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  FLOAT_H=
+#  case "$host_os" in
+#    beos* | openbsd*)
+#      FLOAT_H=float.h
+#      gl_CHECK_NEXT_HEADERS([float.h])
+File: ./m4/flock.m4
+Hash: 46ec46659d20d4d889859493fcff0d6fa0adf9c0f714cf2e1f26abc0d5d26878
+Copyright: 2008 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:
+## flock.m4 serial 1
+#dnl Copyright (C) 2008 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_FLOCK],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_FILE_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([flock])
+#  if test $ac_cv_func_flock = no; then
+#    HAVE_FLOCK=0
+#    AC_LIBOBJ([flock])
+#    gl_PREREQ_FLOCK
+#  fi
+File: ./m4/floor.m4
+Hash: 1c106d3c05b2afa08097d196eed80b85166a5c7058ba2e9e36be6635d27b1cec
+Copyright: 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:
+## floor.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_FUNC_FLOOR],
+#[
+#  dnl Test whether floor() can be used without libm.
+#  gl_FUNC_FLOOR_LIBS
+#  if test "$FLOOR_LIBM" = "?"; then
+#    FLOOR_LIBM=
+#  fi
+#  AC_SUBST([FLOOR_LIBM])
+#])
+File: ./m4/floorf.m4
+Hash: aa5e12760098221878cffc006320adffba688133460e279f740759c7faec4b05
+Copyright: 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:
+## floorf.m4 serial 4
+#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_FLOORF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare floorf().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether floorf() is declared.
+#  AC_CHECK_DECLS([floorf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_floorf" = yes; then
+#    dnl Test whether floorf() can be used without libm.
+File: ./m4/floorl.m4
+Hash: b85a4fe69e190a88a16dd404a61599e8070a3b3bf9ab37c9690b543c81b629e3
+Copyright: 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:
+## floorl.m4 serial 4
+#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_FLOORL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare floorl().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether floorl() is declared.
+#  AC_CHECK_DECLS([floorl], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_floorl" = yes; then
+#    dnl Test whether floorl() can be used without libm.
+File: ./m4/fnmatch.m4
+Hash: 5ad2559cc52140959c55fdd9939dbda831638089cfc85ed96288f33906ae6f79
+Copyright: 2000-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:
+## Check for fnmatch - serial 4.
+#
+## Copyright (C) 2000-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.
+#
+## Autoconf defines AC_FUNC_FNMATCH, but that is obsolescent.
+## New applications should use the macros below instead.
+#
+## Request a POSIX compliant fnmatch function.
+#AC_DEFUN([gl_FUNC_FNMATCH_POSIX],
+#[
+#  m4_divert_text([DEFAULTS], [gl_fnmatch_required=POSIX])
+File: ./m4/fopen.m4
+Hash: ad0e94c6fd7ae83f339ed3ab8e1bff3dd2758d7f6031df649ed0b0b97f6e0be1
+Copyright: 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:
+## fopen.m4 serial 5
+#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_FOPEN],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  case "$host_os" in
+#    mingw* | pw*)
+#      dnl Replace fopen, for handling of "/dev/null".
+#      REPLACE_FOPEN=1
+#      dnl fopen on mingw also has the trailing slash bug.
+File: ./m4/fpending.m4
+Hash: 15e76893dd5eb2ccd584f05adfd4d0bf825205860f2ff756e9e1020c18908f66
+Copyright: 2000-2001, 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:
+## serial 15
+#
+## Copyright (C) 2000-2001, 2004-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.
+#
+#dnl From Jim Meyering
+#dnl Using code from emacs, based on suggestions from Paul Eggert
+#dnl and Ulrich Drepper.
+#
+#dnl Find out how to determine the number of pending output bytes on a stream.
+#dnl glibc (2.1.93 and newer) and Solaris provide __fpending.  On other systems,
+#dnl we have to grub around in the FILE struct.
+File: ./m4/fpieee.m4
+Hash: 3f59244481168ae5dfff004b81aeb6f8c894e83e649b61756a5728bbd99f7c0c
+Copyright: 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:
+## fpieee.m4 serial 1
+#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 IEEE 754 standardized three items:
+#dnl - The formats of single-float and double-float - nowadays commonly
+#dnl   available as 'float' and 'double' in C and C++.
+#dnl   No autoconf test needed.
+#dnl - The overflow and division by zero behaviour: The result are values
+#dnl   '±Inf' and 'NaN', rather than exceptions as it was before.
+#dnl   This file provides an autoconf macro for ensuring this behaviour of
+#dnl   floating-point operations.
+#dnl - A set of conditions (overflow, underflow, inexact, etc.) which can
+File: ./m4/fprintf-posix.m4
+Hash: a6008d1598b7a24895a472734caac4147d7e0e83af64445440435d102702f0db
+Copyright: 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:
+## fprintf-posix.m4 serial 14
+#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_FPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/fprintftime.m4
+Hash: b7fa3778dc0b75cfe801816cc9055dc7cf465859763cf969813048c198e5a4f2
+Copyright: 2005, 2006 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:
+##serial 2
+#dnl Copyright (C) 2005, 2006 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_FPRINTFTIME],
+#[
+#  AC_LIBOBJ([fprintftime])
+#])
+File: ./m4/fpurge.m4
+Hash: f62512d54c7b8d9c80dd8cce01a414ff826212c7c2c6248a9ed3c7b633c05db5
+Copyright: 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:
+## fpurge.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_FPURGE],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([fpurge])
+#  AC_CHECK_FUNCS_ONCE([__fpurge])
+#  AC_CHECK_DECLS([fpurge], , , [[#include <stdio.h>]])
+#  if test "x$ac_cv_func_fpurge" = xyes; then
+#    # Detect BSD bug.  Only cygwin 1.7 is known to be immune.
+#    AC_CACHE_CHECK([whether fpurge works], [gl_cv_func_fpurge_works],
+File: ./m4/freadable.m4
+Hash: 3bf013bf28d20f59da11208e07e1df5b7bce00db26854e6f051e7d5d9f8accab
+Copyright: 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:
+## freadable.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_FREADABLE],
+#[
+#  AC_CHECK_FUNCS_ONCE([__freadable])
+#  if test $ac_cv_func___freadable = no; then
+#    AC_LIBOBJ([freadable])
+#  fi
+#])
+File: ./m4/freading.m4
+Hash: 1b93e3045ca266145966f8cc03253dc078a20bcc5718c4cbfb0143e96e71623b
+Copyright: 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:
+## freading.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_FREADING],
+#[
+#  AC_CHECK_FUNCS_ONCE([__freading])
+#])
+File: ./m4/free.m4
+Hash: a73accbd96194e981cf77ac3c837092a69e5bc17d503029f7289b87d3b368a63
+Copyright: 2003, 2004, 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:
+## Check whether free (NULL) is supposed to work.
+#
+## Copyright (C) 2003, 2004, 2005, 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.
+#
+## We can't test for free (NULL) even at runtime, since it might
+## happen to "work" for our test program, but not in general.  So, be
+## conservative and use feature tests for relatively modern hosts,
+## where free (NULL) is known to work.  This costs a bit of
+## performance on some older hosts, but we can fix that later if
+## needed.
+File: ./m4/freopen.m4
+Hash: 5ebdad15bb6e2f7016d5c80253fb741aa55cd8d814b9540de1a847331950da0f
+Copyright: 2007-2008 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:
+## freopen.m4 serial 2
+#dnl Copyright (C) 2007-2008 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_FREOPEN],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  case "$host_os" in
+#    mingw* | pw*)
+#      REPLACE_FREOPEN=1
+#      AC_LIBOBJ([freopen])
+#      gl_PREREQ_FREOPEN
+File: ./m4/frexp.m4
+Hash: dc1ae79deeb763eff6de3d5298100b251865503e40b019a89e3db089bcad3a31
+Copyright: 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:
+## frexp.m4 serial 7
+#dnl Copyright (C) 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.
+#
+#AC_DEFUN([gl_FUNC_FREXP],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  FREXP_LIBM=
+#  AC_CACHE_CHECK([whether frexp() can be used without linking with libm],
+#    [gl_cv_func_frexp_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   double x;],
+File: ./m4/frexpl.m4
+Hash: 9eaf5d91b7fdceaec549c9d2f9ab9d7e1310c826c42c98e3617d338820d46491
+Copyright: 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:
+## frexpl.m4 serial 9
+#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_FREXPL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  FREXPL_LIBM=
+#  AC_CACHE_CHECK([whether frexpl() can be used without linking with libm],
+#    [gl_cv_func_frexpl_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   long double x;],
+File: ./m4/fseek.m4
+Hash: 31705112d71a7dca0c55e58f71bb7793f5e8c34f031a0c8c3a9e5fc4e02f831d
+Copyright: 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:
+## fseek.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_FSEEK],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_FSEEKO])
+#  dnl When fseeko needs fixes, fseek needs them too.
+#  if test $REPLACE_FSEEKO != 0; then
+#    AC_LIBOBJ([fseek])
+#    REPLACE_FSEEK=1
+#  fi
+File: ./m4/fseeko.m4
+Hash: 6395a4c99169cdd30546e688899aafb3463f40f644f76627f7faa5ae579e04ee
+Copyright: 2007-2008 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:
+## fseeko.m4 serial 4
+#dnl Copyright (C) 2007-2008 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_FSEEKO],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([gl_STDIN_LARGE_OFFSET])
+#
+#  dnl Persuade glibc <stdio.h> to declare fseeko().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+File: ./m4/fstypename.m4
+Hash: febf3d78aaad07d686dc0df84606d52ac546108e705860bb0215d8ce5a405cc9
+Copyright: 1998, 1999, 2001, 2004, 2006 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:
+##serial 6
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl See if struct statfs has the f_fstypename member.
+#dnl If so, define HAVE_STRUCT_STATFS_F_FSTYPENAME.
+#dnl
+#
+## Copyright (C) 1998, 1999, 2001, 2004, 2006 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([gl_FSTYPENAME],
+#[
+File: ./m4/fsusage.m4
+Hash: 3f4ff242e495ac68b8e83f016aa01d83f890eb555ecd89730b95db0b1519d48b
+Copyright: 1997-1998, 2000-2001, 2003-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:
+## serial 25
+## Obtaining file system usage information.
+#
+## Copyright (C) 1997-1998, 2000-2001, 2003-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 Jim Meyering.
+#
+#AC_DEFUN([gl_FSUSAGE],
+#[
+#  AC_CHECK_HEADERS_ONCE([sys/param.h])
+#  AC_CHECK_HEADERS_ONCE([sys/vfs.h sys/fs_types.h])
+File: ./m4/fsync.m4
+Hash: 77db5b0972952ed1ea04f93e7da8814121e35fe2dd6ac987ecb230dad1ff2e6a
+Copyright: 2008 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:
+## fsync.m4 serial 1
+#dnl Copyright (C) 2008 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_FSYNC],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([fsync])
+#  if test $ac_cv_func_fsync = no; then
+#    HAVE_FSYNC=0
+#    AC_LIBOBJ([fsync])
+#    gl_PREREQ_FSYNC
+#  fi
+File: ./m4/ftell.m4
+Hash: d75a25a7df953391070aaf846037d45c4acd0b49dec2f2b6d5ffd42efa912d8f
+Copyright: 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:
+## ftell.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_FTELL],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_FTELLO])
+#  dnl When ftello needs fixes, ftell needs them too.
+#  if test $REPLACE_FTELLO != 0; then
+#    AC_LIBOBJ([ftell])
+#    REPLACE_FTELL=1
+#  fi
+File: ./m4/ftello.m4
+Hash: 8325ff7415b489bb4cda6d66da300385b44ef26bc5d2d2f0dcea088931d45276
+Copyright: 2007, 2008 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:
+## ftello.m4 serial 4
+#dnl Copyright (C) 2007, 2008 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_FTELLO],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([gl_STDIN_LARGE_OFFSET])
+#
+#  dnl Persuade glibc <stdio.h> to declare fseeko().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+File: ./m4/ftruncate.m4
+Hash: f7488bef88571b9f271591596eb95b19045177a6732d63cf4f1d4bbb4682840d
+Copyright: 2000, 2001, 2003-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:
+## serial 14
+#
+## See if we need to emulate a missing ftruncate function using fcntl or chsize.
+#
+## Copyright (C) 2000, 2001, 2003-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.
+#
+## FIXME: remove this macro, along with all uses of HAVE_FTRUNCATE in 2010,
+## if the check below provokes no more reports.  So far, the only report
+## arose from a test build of this gnulib module, cross-compiling to mingw:
+## <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/9203>
+#
+#AC_DEFUN([gl_FUNC_FTRUNCATE],
+File: ./m4/fts.m4
+Hash: 4f513e7bacffd2fd728bbb1ba8590d68154aad24bd93f9e3f180437b79c5ceea
+Copyright: 2005-2008 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:
+##serial 16
+#dnl Copyright (C) 2005-2008 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_FTS],
+#[
+#  gl_FUNC_FTS_CORE
+#])
+#
+#AC_DEFUN([gl_FUNC_FTS_LGPL],
+#[
+#  gl_FUNC_FTS_CORE
+#])
+File: ./m4/func.m4
+Hash: 399a8add7bf539263c73610b55864fa380c55b671a1475c2665b4e44a492f651
+Copyright: 2008 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:
+## func.m4 serial 2
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Written by Simon Josefsson
+#
+#AC_DEFUN([gl_FUNC],
+#[
+#  AC_CACHE_CHECK([whether __func__ is available], [gl_cv_var_func],
+#     AC_COMPILE_IFELSE(
+#       [AC_LANG_PROGRAM([[]], [[const char *str = __func__;]])],
+#       [gl_cv_var_func=yes],
+#       [gl_cv_var_func=no]))
+File: ./m4/fwritable.m4
+Hash: 5e3d7fabafc4390341689eab88fb336422580b76c3d8e69bf3ee14c4d1b8fb5f
+Copyright: 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:
+## fwritable.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_FWRITABLE],
+#[
+#  AC_CHECK_FUNCS_ONCE([__fwritable])
+#  if test $ac_cv_func___fwritable = no; then
+#    AC_LIBOBJ([fwritable])
+#  fi
+#])
+File: ./m4/fwriting.m4
+Hash: 1ad3e75d2fb60d18c45f3836e75300e8269bc88ec64462820c09c910d9f52503
+Copyright: 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:
+## fwriting.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_FWRITING],
+#[
+#  AC_CHECK_FUNCS_ONCE([__fwriting])
+#  if test $ac_cv_func___fwriting = no; then
+#    AC_LIBOBJ([fwriting])
+#  fi
+#])
+File: ./m4/gc-arcfour.m4
+Hash: 9efa840a3efc3447c567fa7289fe2ebe32bb1d871418edd1b4b24110a85851df
+Copyright: 2005, 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:
+## gc-arcfour.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_ARCFOUR],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_ARCFOUR
+#  fi
+#])
+File: ./m4/gc-arctwo.m4
+Hash: 2e87cd8b7b772699b901021af1778dc199583766bcde241517d2b31dede60e28
+Copyright: 2005, 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:
+## gc-arctwo.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_ARCTWO],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_ARCTWO
+#  fi
+#])
+File: ./m4/gc-camellia.m4
+Hash: 1cc1d8a7ebf5b851e2e4dbd647b73831533ee517189c1e5b42395944508f3c90
+Copyright: 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 2
+#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_TRY_COMPILE([#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/gc-des.m4
+Hash: 00b153202ac5b51eb239ca87808efccc65a24713beb6211f670533ac858b2417
+Copyright: 2005, 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:
+## gc-des.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_DES],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_DES
+#  fi
+#])
+File: ./m4/gc-hmac-md5.m4
+Hash: 2cc833715be1b2e57351273907eaff653c0165732898f852fbc4aac9a9eaf89c
+Copyright: 2005, 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:
+## gc-hmac-md5.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_HMAC_MD5],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_MD5
+#    gl_HMAC_MD5
+#    gl_MEMXOR
+#  fi
+#])
+File: ./m4/gc-hmac-sha1.m4
+Hash: b1c3c8753c14de1d3eddf5de258bbfbad6c215251cd5b61018a7515d6cef20e6
+Copyright: 2005, 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:
+## gc-hmac-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_HMAC_SHA1],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_SHA1
+#    gl_HMAC_SHA1
+#    gl_MEMXOR
+#  fi
+#])
+File: ./m4/gc-md2.m4
+Hash: ac2dbdefb3eb77364d1898cf795c625244227b19b4d0ea88ed078d333cf09ea9
+Copyright: 2005, 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:
+## gc-md2.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_MD2],
+#[
+#])
+File: ./m4/gc-md4.m4
+Hash: eb88ac5149f21b181faa2db6f1b13cb63b4902c3ef347111cf4fe93d44407c6f
+Copyright: 2005, 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:
+## gc-md4.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_MD4],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_MD4
+#  fi
+#])
+File: ./m4/gc-md5.m4
+Hash: afc266c338301066708dc7430a92399e3d8716e33001daba899c95640e527f0c
+Copyright: 2005, 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:
+## gc-md5.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_MD5],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_MD5
+#  fi
+#])
+File: ./m4/gc-pbkdf2-sha1.m4
+Hash: 477893cd24822028dd94a1f6ec75e6effc823ddbe57289886454a1b353c1b8eb
+Copyright: 2005, 2006 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-pbkdf2-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_PBKDF2_SHA1],
+#[
+#  AC_LIBOBJ([gc-pbkdf2-sha1])
+#])
+File: ./m4/gc-random.m4
+Hash: 7c6359250cc4a22a27311b673688f6b1f0622d00c42f57e47425c75c31dd6b17
+Copyright: 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:
+## gc-random.m4 serial 4
+#dnl Copyright (C) 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_GC_RANDOM],
+#[
+#  # Devices with randomness.
+#  # FIXME: Are these the best defaults?
+#
+#  AC_REQUIRE([AC_CANONICAL_HOST])dnl
+#
+#  case "$host_os" in
+#    *openbsd*)
+File: ./m4/gc-rijndael.m4
+Hash: 6caca24fa5408e0286cbdfb716068d66a352c80142643dba35fcd4011bf6a33e
+Copyright: 2005, 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:
+## gc-rijndael.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_RIJNDAEL],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_RIJNDAEL
+#  fi
+#])
+File: ./m4/gc-sha1.m4
+Hash: 443bfafc3a5eb25299291d7dcfef2ed68f0b57841caf360fc8eb1abb0f32493a
+Copyright: 2005, 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:
+## gc-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_GC_SHA1],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_SHA1
+#  fi
+#])
+File: ./m4/gc.m4
+Hash: a8f9ebf6d8f1983cbd8b32378b928174f6026da55c11a81aae47e2b2e1c25142
+Copyright: 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:
+## gc.m4 serial 5
+#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.
+#
+#AC_DEFUN([gl_GC],
+#[
+#  AC_ARG_WITH([libgcrypt],
+#    AS_HELP_STRING([--with-libgcrypt], [use libgcrypt for low-level crypto]),
+#    libgcrypt=$withval, libgcrypt=no)
+#  if test "$libgcrypt" != no; then
+#    AC_LIB_HAVE_LINKFLAGS([gcrypt], [], [#include <gcrypt.h>])
+#  fi
+#  if test "$ac_cv_libgcrypt" = yes; then
+File: ./m4/getaddrinfo.m4
+Hash: 162f35cf358a5ad9b171d16e437f37a717d01d22d5f17725767ed7f76f6b650b
+Copyright: 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 20
+#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-abort-bug.m4
+Hash: fd355ed2ae698981232b9c3a5b92ee842d9928342394217c98f5576848b08577
+Copyright: 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:
+## serial 2
+## Determine whether getcwd aborts when the length of the working directory
+## name is unusually large.  Any length between 4k and 16k trigger the bug
+## when using glibc-2.4.90-9 or older.
+#
+## Copyright (C) 2006, 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.
+#
+## From Jim Meyering
+#
+## gl_FUNC_GETCWD_ABORT_BUG([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
+#AC_DEFUN([gl_FUNC_GETCWD_ABORT_BUG],
+#[
+File: ./m4/getcwd-path-max.m4
+Hash: bb780d0c969c10a9d14d8d61d726b682113b7fe3a5505eee66e649fefe99c063
+Copyright: 2003-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:
+## serial 14
+## Check for several getcwd bugs with long file names.
+## If so, arrange to compile the wrapper function.
+#
+## This is necessary for at least GNU libc on linux-2.4.19 and 2.4.20.
+## I've heard that this is due to a Linux kernel bug, and that it has
+## been fixed between 2.4.21-pre3 and 2.4.21-pre4.  */
+#
+## Copyright (C) 2003-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.
+#
+## From Jim Meyering
+File: ./m4/getcwd.m4
+Hash: 0fc304520a41fcf7ad345780a1cb9eaf73bef3856834b3448bc2283210c77b07
+Copyright: 2001, 2003, 2004, 2005, 2006, 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:
+## getcwd.m4 - check for working getcwd that is compatible with glibc
+#
+## Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007 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.
+#
+#AC_DEFUN([gl_FUNC_GETCWD_NULL],
+#  [
+#   AC_CACHE_CHECK([whether getcwd (NULL, 0) allocates memory for result],
+#     [gl_cv_func_getcwd_null],
+#     [AC_TRY_RUN(
+#        [
+File: ./m4/getdate.m4
+Hash: c237091fdbe4035e27c3be4829e9e1798870c51bb982585a5c11c1bca74fb1ee
+Copyright: 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 14
+#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/getdelim.m4
+Hash: b6b738dbf34edff9dc3d2f0be5088bfb974fdbe55ac6aa7a255b39a851384122
+Copyright: 2005, 2006, 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:
+## getdelim.m4 serial 5
+#
+#dnl Copyright (C) 2005, 2006, 2007 Free Software dnl 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])
+#
+#AC_DEFUN([gl_FUNC_GETDELIM],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#
+#  dnl Persuade glibc <stdio.h> to declare getdelim().
+File: ./m4/getdomainname.m4
+Hash: 7fb3faebffb6a66d558b99423801631258e92e4a782809f808d9f7cd0bcb5094
+Copyright: 2002-2003, 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:
+## getdomainname.m4 serial 4
+#dnl Copyright (C) 2002-2003, 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_FUNC_GETDOMAINNAME],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare getdomainname().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REPLACE_FUNCS([getdomainname])
+#  if test $ac_cv_func_getdomainname = no; then
+File: ./m4/getdtablesize.m4
+Hash: 67ccf670de71994ed6710e1897f64f871a74271c9af2c827cbe55bfaa538a8de
+Copyright: 2008 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:
+## getdtablesize.m4 serial 1
+#dnl Copyright (C) 2008 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_GETDTABLESIZE],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([getdtablesize])
+#  if test $ac_cv_func_getdtablesize != yes; then
+#    HAVE_GETDTABLESIZE=0
+#    AC_LIBOBJ([getdtablesize])
+#  fi
+#])
+File: ./m4/getgroups.m4
+Hash: c3ad064f9d4de711f983f1b373e261e6c5c254520cf1cd2353e98941b5fd3285
+Copyright: 1996-1997, 1999-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:
+## serial 12
+#
+#dnl From Jim Meyering.
+#dnl A wrapper around AC_FUNC_GETGROUPS.
+#
+## Copyright (C) 1996-1997, 1999-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.
+#
+#AC_DEFUN([gl_FUNC_GETGROUPS],
+#[
+#  AC_REQUIRE([AC_FUNC_GETGROUPS])
+#  if test "$ac_cv_func_getgroups_works" != yes; then
+File: ./m4/gethostname.m4
+Hash: 9fd3d06a71eff8d2be5bd62a266b0bd71283c871f3dda177fb83476dd922e426
+Copyright: 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 8
+#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/gethrxtime.m4
+Hash: 84c7e59b44315629631075311dee0c40fcc834324dd7672cb0f3148be10ba6a4
+Copyright: 2005, 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:
+## gethrxtime.m4 serial 8
+#dnl Copyright (C) 2005, 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 Written by Paul Eggert.
+#
+#AC_DEFUN([gl_GETHRXTIME],
+#[
+#  AC_REQUIRE([gl_ARITHMETIC_HRTIME_T])
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_REQUIRE([gl_XTIME])
+#  AC_CHECK_DECLS([gethrtime], [], [], [#include <time.h>])
+#  case $ac_cv_have_decl_gethrtime,$gl_cv_arithmetic_hrtime_t in
+File: ./m4/getline.m4
+Hash: 89ec9fb86746e481d3340d6a2bec769a1bb1ea00e6ed30bdea292e8f1242036a
+Copyright: 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 19
+#
+#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/getloadavg.m4
+Hash: 7b0c35c25d813983e2ffc981ad4773d7cbcf126d0d853391cee73b7ad3e60db4
+Copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003, 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:
+## Check for getloadavg.
+#
+## Copyright (C) 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003,
+## 2006, 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.
+#
+## Autoconf defines AC_FUNC_GETLOADAVG, but that is obsolescent.
+## New applications should use gl_GETLOADAVG instead.
+#
+## gl_GETLOADAVG(LIBOBJDIR)
+## ------------------------
+#AC_DEFUN([gl_GETLOADAVG],
+File: ./m4/getlogin_r.m4
+Hash: f42c8994afabe3f85235db3850925d5e613daad1e9f64024023826ff10feef97
+Copyright: 2005, 2006, 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:
+##serial 4
+#
+## Copyright (C) 2005, 2006, 2007 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.
+#
+#dnl From Derek Price
+#dnl
+#dnl Provide getlogin_r when the system lacks it.
+#dnl
+#
+#AC_DEFUN([gl_GETLOGIN_R],
+#[
+File: ./m4/getndelim2.m4
+Hash: 3172ac8aa677c2d97b39f9d6af0fed26d2fed4da679b616e668066329ec2bd1e
+Copyright: 2003, 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:
+## getndelim2.m4 serial 7
+#dnl Copyright (C) 2003, 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.
+#
+#AC_DEFUN([gl_GETNDELIM2],
+#[
+#  AC_LIBOBJ([getndelim2])
+#  gl_PREREQ_GETNDELIM2
+#  AC_CHECK_FUNCS_ONCE([flockfile])
+#  AC_CHECK_FUNCS_ONCE([funlockfile])
+#])
+#
+## Prerequisites of lib/getndelim2.h and lib/getndelim2.c.
+File: ./m4/getnline.m4
+Hash: 9af45bdccbe7d6ae432a8112390145eaa29f89ba5e448fe8aadd58355ce77f7d
+Copyright: 2003 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:
+## getnline.m4 serial 3
+#dnl Copyright (C) 2003 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_GETNLINE],
+#[
+#  dnl Prerequisites of lib/getnline.h.
+#  AC_REQUIRE([gt_TYPE_SSIZE_T])
+#  dnl Prerequisites of lib/getnline.c.
+#  :
+#])
+File: ./m4/getopt.m4
+Hash: 5f06c376d4d0eab902bcd59374dcc3569716156e6a5b3a9f057e901cd8460904
+Copyright: 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 21
+#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/getpagesize.m4
+Hash: 2b7fd04beb6e26d86c114fa975404317f7fa575b5902dae6f392c060fb8bce22
+Copyright: 2002, 2004-2005, 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:
+## getpagesize.m4 serial 7
+#dnl Copyright (C) 2002, 2004-2005, 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.
+#
+#AC_DEFUN([gl_FUNC_GETPAGESIZE],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CHECK_FUNCS([getpagesize])
+#  if test $ac_cv_func_getpagesize = no; then
+#    HAVE_GETPAGESIZE=0
+#    AC_CHECK_HEADERS([OS.h])
+#    if test $ac_cv_header_OS_h = yes; then
+File: ./m4/getpass.m4
+Hash: a34c89dcb9d116383941ad1d076e7df7db9ecaa7058c9a85b09d0b938d5dc5a8
+Copyright: 2002-2003, 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:
+## getpass.m4 serial 11
+#dnl Copyright (C) 2002-2003, 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.
+#
+## Provide a getpass() function if the system doesn't have it.
+#AC_DEFUN([gl_FUNC_GETPASS],
+#[
+#  AC_REPLACE_FUNCS([getpass])
+#  AC_CHECK_DECLS_ONCE([getpass])
+#  if test $ac_cv_func_getpass = no; then
+#    gl_PREREQ_GETPASS
+#  fi
+#])
+File: ./m4/getsubopt.m4
+Hash: 9b04ceb2d89042a3ff134954522fe3cefea7441790d31ab74fc2d0c265c1309d
+Copyright: 2004, 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:
+## getsubopt.m4 serial 4
+#dnl Copyright (C) 2004, 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.
+#
+#AC_DEFUN([gl_FUNC_GETSUBOPT],
+#[
+#  dnl Persuade glibc <stdlib.h> to declare getsubopt().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([getsubopt])
+#  if test $ac_cv_func_getsubopt = no; then
+#    HAVE_GETSUBOPT=0
+File: ./m4/gettext.m4
+Hash: 209767111675e6bd3167db5ee4bbcde54189112719d3de3db9f87f6850f60440
+Copyright: 1995-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:
+## gettext.m4 serial 62 (gettext-0.18)
+#dnl Copyright (C) 1995-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
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/gettime.m4
+Hash: 2dee3947ea628455e6f99a9429ca412a5727e6ae81fcfc765de229a5f214cb4e
+Copyright: 2002, 2004, 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:
+## gettime.m4 serial 7
+#dnl Copyright (C) 2002, 2004, 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.
+#
+#AC_DEFUN([gl_GETTIME],
+#[
+#  AC_LIBOBJ([gettime])
+#
+#  dnl Prerequisites of lib/gettime.c.
+#  AC_REQUIRE([gl_CLOCK_TIME])
+#  AC_REQUIRE([gl_TIMESPEC])
+#  AC_CHECK_FUNCS_ONCE([gettimeofday nanotime])
+#])
+File: ./m4/gettimeofday.m4
+Hash: 2813667e7bf563ab4d0f747953be0ea2a763ff773c3f251ff9f08daf2f33013b
+Copyright: 2001-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:
+## serial 12
+#
+## Copyright (C) 2001-2003, 2005, 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.
+#
+#dnl From Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_GETTIMEOFDAY],
+#[
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_REQUIRE([gl_HEADER_SYS_TIME_H])
+#  AC_CHECK_FUNCS_ONCE([gettimeofday])
+File: ./m4/getugroups.m4
+Hash: 5fa33ebc62e80a7f354f6e432c4dac78bac05bd75f9381b430a0f638994381ea
+Copyright: 2002, 2003, 2005, 2006 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:
+## getugroups.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_GETUGROUPS],
+#[
+#  AC_LIBOBJ([getugroups])
+#
+#  dnl Prerequisites of lib/getugroups.c.
+#  AC_TYPE_GETGROUPS
+#])
+File: ./m4/getusershell.m4
+Hash: 85822f50f91b2679b6b3607288c46cd4fb5c2f08c12a4329a1ff7de39e2766c0
+Copyright: 2002, 2003, 2006, 2008 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:
+## getusershell.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2006, 2008 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_GETUSERSHELL],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare {get,set,end}usershell().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REPLACE_FUNCS([getusershell])
+#  if test $ac_cv_func_getusershell = no; then
+File: ./m4/gl_list.m4
+Hash: 8b2a1802af815eebecaaf1e75e8931f2f40e8f48695c96b0230339ff56d88eaa
+Copyright: 2006 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:
+## gl_list.m4 serial 2
+#dnl Copyright (C) 2006 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_LIST],
+#[
+#  AC_REQUIRE([gl_INLINE])
+#])
+File: ./m4/glibc2.m4
+Hash: 11b39a2f3ca03b195c0ff0fb9170ea87fbe38dd4ff8a481000feb62e48168c97
+Copyright: 2000-2002, 2004, 2008 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:
+## glibc2.m4 serial 2
+#dnl Copyright (C) 2000-2002, 2004, 2008 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.
+#
+## Test for the GNU C Library, version 2.0 or newer.
+## From Bruno Haible.
+#
+#AC_DEFUN([gt_GLIBC2],
+#  [
+#    AC_CACHE_CHECK([whether we are using the GNU C Library 2 or newer],
+#      [ac_cv_gnu_library_2],
+#      [AC_EGREP_CPP([Lucky GNU user],
+#      [
+File: ./m4/glibc21.m4
+Hash: c38afe2c0836f2ddec80a6aac76a85735b6b0a3e487fea600816d7a460492c6f
+Copyright: 2000-2002, 2004, 2008 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:
+## glibc21.m4 serial 4
+#dnl Copyright (C) 2000-2002, 2004, 2008 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.
+#
+## Test for the GNU C Library, version 2.1 or newer.
+## From Bruno Haible.
+#
+#AC_DEFUN([gl_GLIBC21],
+#  [
+#    AC_CACHE_CHECK([whether we are using the GNU C Library 2.1 or newer],
+#      [ac_cv_gnu_library_2_1],
+#      [AC_EGREP_CPP([Lucky GNU user],
+#      [
+File: ./m4/glob.m4
+Hash: a90e23db91a3c58be62de6c2bf9556087e2266f338a41bbdfe4d4e9c9017fe47
+Copyright: 2005-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:
+## glob.m4 serial 10
+#dnl Copyright (C) 2005-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.
+#
+## The glob module assumes you want GNU glob, with glob_pattern_p etc,
+## rather than vanilla POSIX glob.  This means your code should
+## always include <glob.h> for the glob prototypes.
+#
+#AC_DEFUN([gl_GLOB_SUBSTITUTE],
+#[
+#  gl_PREREQ_GLOB
+#
+#  GLOB_H=glob.h
+File: ./m4/gnu-make.m4
+Hash: 70a7aba0c8a2889370654a6a63b8c36d43163088c2fa61cf20d080eb6151bb6f
+Copyright: 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:
+## Determine whether recent-enough GNU Make is being used.
+#
+## Copyright (C) 2007 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.
+#
+## Set GNU_MAKE if we are using a recent-enough version of GNU make.
+#
+## Use --version AND trailing junk, because SGI Make doesn't fail on --version.
+#
+#AC_DEFUN([gl_GNU_MAKE],
+File: ./m4/gnulib-common.m4
+Hash: cf953d1ede907c6631070667a43748f8f22368503be57c4207aba45ea49e1804
+Copyright: 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:
+## gnulib-common.m4 serial 11
+#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.
+#
+## gl_COMMON
+## is expanded unconditionally through gnulib-tool magic.
+#AC_DEFUN([gl_COMMON], [
+#  dnl Use AC_REQUIRE here, so that the code is expanded once only.
+#  AC_REQUIRE([gl_00GNULIB])
+#  AC_REQUIRE([gl_COMMON_BODY])
+#])
+#AC_DEFUN([gl_COMMON_BODY], [
+#  AH_VERBATIM([isoc99_inline],
+File: ./m4/gnulib-tool.m4
+Hash: c6d2fd9c5bba8e3f3ebfc4650a4b9d0432d43d2e4810f637fda353b1f61d7de7
+Copyright: 2004-2005 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:
+## gnulib-tool.m4 serial 2
+#dnl Copyright (C) 2004-2005 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl The following macros need not be invoked explicitly.
+#dnl Invoking them does nothing except to declare default arguments
+#dnl for "gnulib-tool --import".
+#
+#dnl Usage: gl_LOCAL_DIR([DIR])
+#AC_DEFUN([gl_LOCAL_DIR], [])
+#
+#dnl Usage: gl_MODULES([module1 module2 ...])
+#AC_DEFUN([gl_MODULES], [])
+File: ./m4/group-member.m4
+Hash: b9ef1ff8203530e2e78714b55cf01b1bbf1c7c258b61ee3536c1cb5892bd8d16
+Copyright: 1999-2001, 2003-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:
+## serial 12
+#
+## Copyright (C) 1999-2001, 2003-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.
+#
+#dnl Written by Jim Meyering
+#
+#AC_DEFUN([gl_FUNC_GROUP_MEMBER],
+#[
+#  dnl Persuade glibc <unistd.h> to declare group_member().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+File: ./m4/hard-locale.m4
+Hash: 97264040027e35bb6dbe3df675fe93938e7a66d8b148d6fba0ecc36e19d5cf40
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+## hard-locale.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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 No prerequisites of lib/hard-locale.c.
+#AC_DEFUN([gl_HARD_LOCALE],
+#[
+#  AC_LIBOBJ([hard-locale])
+#])
+File: ./m4/hash.m4
+Hash: 819523e80720760423e01ca0720b2940895aef21577d206f09dbc782bf0f5d93
+Copyright: 2002, 2003, 2005, 2006 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:
+## hash.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_HASH],
+#[
+#  AC_LIBOBJ([hash])
+#
+#  dnl Prerequisites of lib/hash.c.
+#  AC_REQUIRE([AM_STDBOOL_H])
+#])
+File: ./m4/hmac-md5.m4
+Hash: 01aa0b99269598138f369e395801e415957d1f5e99e42b67da35a667bd88f307
+Copyright: 2005, 2006 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:
+## hmac-md5.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_HMAC_MD5],
+#[
+#  AC_LIBOBJ([hmac-md5])
+#])
+File: ./m4/hmac-sha1.m4
+Hash: f261317ddd13a6feb35c7a801adc7f7156819362d3d5efd1e0636fc54e3f67cc
+Copyright: 2005, 2006 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:
+## hmac-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_HMAC_SHA1],
+#[
+#  AC_LIBOBJ([hmac-sha1])
+#])
+File: ./m4/host-os.m4
+Hash: cf2577e3c69f36ee157700e347082ddfb55659d7ec921569d78be17be2df1a3f
+Copyright: 2001, 2003, 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:
+## serial 7
+#
+## Copyright (C) 2001, 2003, 2004, 2006, 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.
+#
+#dnl From Paul Eggert.
+#
+## Define HOST_OPERATING_SYSTEM to a name for the host operating system.
+#AC_DEFUN([gl_HOST_OS],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])dnl
+File: ./m4/hostent.m4
+Hash: 86614585cb9169151c04f411f5a9e8f576954e89bf686b988b3ec4e8d56234be
+Copyright: 2008 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:
+## hostent.m4 serial 1
+#dnl Copyright (C) 2008 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_HOSTENT],
+#[
+#  dnl Where are gethostent(), sethostent(), endhostent(), gethostbyname(),
+#  dnl gethostbyaddr() defined?
+#  dnl - On Solaris, they are in libnsl. Ignore libxnet.
+#  dnl - On Haiku, they are in libnetwork.
+#  dnl - On BeOS, they are in libnet.
+#  dnl - On native Windows, they are in ws2_32.dll.
+#  dnl - Otherwise they are in libc.
+File: ./m4/human.m4
+Hash: a7fb86bd0bbe797cf1a99630e2764b76f2a8c322acdb3fd3e32d9f5f52288246
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+##serial 10
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_HUMAN],
+#[
+#  AC_LIBOBJ([human])
+#
+#  dnl Prerequisites of lib/human.c.
+#  :
+#])
+File: ./m4/i-ring.m4
+Hash: 8a89b11945fad17cf70d3830685f646050122bba7c19ecca33a7feec4e7b73a6
+Copyright: 2006 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:
+## serial 1
+#dnl Copyright (C) 2006 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_I_RING],
+#[
+#  AC_LIBOBJ([i-ring])
+#])
+File: ./m4/iconv.m4
+Hash: 58adc1feb91f7df348f3072f3187d4b2487b22efb486a17366fdefadfe1e2453
+Copyright: 2000-2002, 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:
+## iconv.m4 serial AM8 (gettext-0.18)
+#dnl Copyright (C) 2000-2002, 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 Bruno Haible.
+#
+#AC_DEFUN([AM_ICONV_LINKFLAGS_BODY],
+#[
+#  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
+#  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+#  AC_REQUIRE([AC_LIB_RPATH])
+#
+#  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
+File: ./m4/iconv_h.m4
+Hash: 4bf94c8ab903d28caab6ad4c0ff7f6976cff8aac193e26f06a4ef161ab7cfb7f
+Copyright: 2007-2008 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:
+## iconv_h.m4 serial 4
+#dnl Copyright (C) 2007-2008 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_ICONV_H],
+#[
+#  AC_REQUIRE([gl_ICONV_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([iconv.h])
+#])
+#
+#dnl Unconditionally enables the replacement of <iconv.h>.
+#AC_DEFUN([gl_REPLACE_ICONV_H],
+#[
+File: ./m4/iconv_open.m4
+Hash: cc6a4cffaeedc925c4b77d44679278ce74a324ae280a69086127a1244e575694
+Copyright: 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:
+## iconv_open.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_ICONV_OPEN],
+#[
+#  AC_REQUIRE([AM_ICONV])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([gl_ICONV_H_DEFAULTS])
+#  if test "$am_cv_func_iconv" = yes; then
+#    dnl Test whether iconv_open accepts standardized encoding names.
+#    dnl We know that GNU libiconv and GNU libc do.
+#    AC_EGREP_CPP([gnu_iconv], [
+File: ./m4/idcache.m4
+Hash: 684c8544db4656472183f046dacda8f3db85963ccd23353fbcd5dfe988c1356e
+Copyright: 2002, 2003, 2005, 2006 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:
+## idcache.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_IDCACHE],
+#[
+#  AC_LIBOBJ([idcache])
+#])
+File: ./m4/idpriv.m4
+Hash: 5b4a91d383eb4ddf7108b571d3eeead786ce2af3a1dc207b5b5faee7009db536
+Copyright: 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:
+## idpriv.m4 serial 1
+#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_IDPRIV],
+#[
+#  dnl Persuade glibc <unistd.h> to declare {get,set}res{uid,gid}.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([getuid geteuid getresuid getgid getegid getresgid])
+#  AC_CHECK_FUNCS_ONCE([setresuid setreuid seteuid setresgid setregid setegid])
+#])
+File: ./m4/imaxabs.m4
+Hash: 9ac282ca81021c035a86c34f143d6b7a49de4067e4b69b1b93f39a146447bfac
+Copyright: 2006 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:
+## imaxabs.m4 serial 1
+#dnl Copyright (C) 2006 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_IMAXABS],
+#[
+#  AC_REQUIRE([gl_INTTYPES_H])
+#  if test "$ac_cv_have_decl_imaxabs" != yes; then
+#    AC_LIBOBJ([imaxabs])
+#    gl_PREREQ_IMAXABS
+#  fi
+#])
+File: ./m4/imaxdiv.m4
+Hash: 5fadf938b03a5ea38a211bb8d57402bb672b551cbe5701a7d9db8d054dc16098
+Copyright: 2006 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:
+## imaxdiv.m4 serial 1
+#dnl Copyright (C) 2006 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_IMAXDIV],
+#[
+#  AC_REQUIRE([gl_INTTYPES_H])
+#  if test "$ac_cv_have_decl_imaxdiv" != yes; then
+#    AC_LIBOBJ([imaxdiv])
+#    gl_PREREQ_IMAXDIV
+#  fi
+#])
+File: ./m4/include_next.m4
+Hash: fc10e0ad2c9bd80b98f37d913b9021a9b6538bbcea1386183abe1a5b7ae89d0e
+Copyright: 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:
+## include_next.m4 serial 14
+#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 Paul Eggert and Derek Price.
+#
+#dnl Sets INCLUDE_NEXT and PRAGMA_SYSTEM_HEADER.
+#dnl
+#dnl INCLUDE_NEXT expands to 'include_next' if the compiler supports it, or to
+#dnl 'include' otherwise.
+#dnl
+#dnl INCLUDE_NEXT_AS_FIRST_DIRECTIVE expands to 'include_next' if the compiler
+#dnl supports it in the special case that it is the first include directive in
+File: ./m4/inet_ntop.m4
+Hash: 2961f88ceca9369b98135b582ea275427282cf3cee5edefabe6510f3a36637a3
+Copyright: 2005, 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:
+## inet_ntop.m4 serial 9
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_INET_NTOP],
+#[
+#  dnl Persuade Solaris <arpa/inet.h> to declare inet_ntop.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#  gl_REPLACE_ARPA_INET_H
+#
+#  dnl The AC_SEARCH_LIBS call is a hack to persuade the Solaris 8 linker to
+#  dnl find inet_ntop.
+File: ./m4/inet_pton.m4
+Hash: 3f59e48fd6fa87c38851d0fb7f14d7fddeb46f50d526beeca3383d01002dfd06
+Copyright: 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:
+## inet_pton.m4 serial 7
+#dnl Copyright (C) 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.
+#
+#AC_DEFUN([gl_INET_PTON],
+#[
+#  dnl Persuade Solaris <arpa/inet.h> to declare inet_pton.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#  gl_REPLACE_ARPA_INET_H
+#
+#  AC_REPLACE_FUNCS([inet_pton])
+#  gl_PREREQ_INET_PTON
+File: ./m4/inline.m4
+Hash: 1ce32c0db262c643f6c513cf276d533c45afeea4b8f10681b2fd8d8c770f0e9e
+Copyright: 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:
+## inline.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.
+#
+#dnl Test for the 'inline' keyword or equivalent.
+#dnl Define 'inline' to a supported equivalent, or to nothing if not supported,
+#dnl like AC_C_INLINE does.  Also, define HAVE_INLINE if 'inline' or an
+#dnl equivalent is effectively supported, i.e. if the compiler is likely to
+#dnl drop unused 'static inline' functions.
+#AC_DEFUN([gl_INLINE],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_CACHE_CHECK([whether the compiler generally respects inline],
+File: ./m4/intdiv0.m4
+Hash: 3b41e9fe7c042186c2004a938b8f651898d683f34d60198d65048c00eaffe3aa
+Copyright: 2002, 2007-2008 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:
+## intdiv0.m4 serial 3 (gettext-0.18)
+#dnl Copyright (C) 2002, 2007-2008 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 Bruno Haible.
+#
+#AC_DEFUN([gt_INTDIV0],
+#[
+#  AC_REQUIRE([AC_PROG_CC])dnl
+#  AC_REQUIRE([AC_CANONICAL_HOST])dnl
+#
+#  AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
+#    gt_cv_int_divbyzero_sigfpe,
+File: ./m4/intl.m4
+Hash: 0d7179b34d75a5812cc919c4190baf120690b0155fc61f344967c0805e0d566a
+Copyright: 1995-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:
+## intl.m4 serial 8 (gettext-0.17)
+#dnl Copyright (C) 1995-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 This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/intldir.m4
+Hash: 612428195affe98a7d5441899325dd49d191670b691459bc02e12ab0cfbf966a
+Copyright: 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:
+## intldir.m4 serial 2 (gettext-0.18)
+#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
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/intlmacosx.m4
+Hash: 447c46fa3888adb2ccaab83f4cf703a630ef162e4933d79887ea9039a02729e0
+Copyright: 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:
+## intlmacosx.m4 serial 3 (gettext-0.18)
+#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.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/intmax.m4
+Hash: c110fc0f8772eb14b1d5e4e98f3bb7a7973aee6a673907e18409a3e79e319b56
+Copyright: 2002-2005, 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:
+## intmax.m4 serial 5 (gettext-0.18)
+#dnl Copyright (C) 2002-2005, 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 From Bruno Haible.
+#dnl Test whether the system has the 'intmax_t' type, but don't attempt to
+#dnl find a replacement if it is lacking.
+#
+#AC_DEFUN([gt_TYPE_INTMAX_T],
+#[
+#  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
+#  AC_REQUIRE([gl_AC_HEADER_STDINT_H])
+#  AC_CACHE_CHECK([for intmax_t], [gt_cv_c_intmax_t],
+File: ./m4/intmax_t.m4
+Hash: 86248e08dfb3dbae4bf34645c7909fcfdc517fb975573a8f57f9fa11a9c47fb0
+Copyright: 1997-2004, 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:
+## intmax_t.m4 serial 7
+#dnl Copyright (C) 1997-2004, 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 Paul Eggert.
+#
+#AC_PREREQ([2.13])
+#
+## Define intmax_t to 'long' or 'long long'
+## if it is not already defined in <stdint.h> or <inttypes.h>.
+#
+#AC_DEFUN([gl_AC_TYPE_INTMAX_T],
+#[
+File: ./m4/inttostr.m4
+Hash: e2b51832fe091eaf612d6dac65a6e704009d76fe68224aed958f392d2637a269
+Copyright: 2004, 2005, 2006 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:
+##serial 7
+#dnl Copyright (C) 2004, 2005, 2006 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_INTTOSTR],
+#[
+#  AC_LIBOBJ([imaxtostr])
+#  AC_LIBOBJ([offtostr])
+#  AC_LIBOBJ([umaxtostr])
+#  AC_LIBOBJ([uinttostr])
+#
+#  gl_PREREQ_INTTOSTR
+#  gl_PREREQ_IMAXTOSTR
+File: ./m4/inttypes-pri.m4
+Hash: 8649b8fa7043ccf53fdf62500bad888da4180ee519fb31fab64aaf8c8ce9ded8
+Copyright: 1997-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:
+## inttypes-pri.m4 serial 6 (gettext-0.18)
+#dnl Copyright (C) 1997-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 From Bruno Haible.
+#
+#AC_PREREQ([2.52])
+#
+## Define PRI_MACROS_BROKEN if <inttypes.h> exists and defines the PRI*
+## macros to non-string values.  This is the case on AIX 4.3.3.
+#
+#AC_DEFUN([gt_INTTYPES_PRI],
+#[
+File: ./m4/inttypes.m4
+Hash: e5b427858f7a6dbbb30e7d900d76402ff9a42c6ec9c38bff2bfa3f59be20e3eb
+Copyright: 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:
+## inttypes.m4 serial 14
+#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 Derek Price, Bruno Haible.
+#dnl Test whether <inttypes.h> is supported or must be substituted.
+#
+#AC_DEFUN([gl_INTTYPES_H],
+#[
+#  AC_REQUIRE([gl_STDINT_H])
+#  AC_REQUIRE([gt_INTTYPES_PRI])
+#  AC_CHECK_DECLS_ONCE([imaxabs])
+#  AC_CHECK_DECLS_ONCE([imaxdiv])
+File: ./m4/inttypes_h.m4
+Hash: ca5eb68f1650e18a89c61c9ad23ecf5786ead724c985f8a06dc12877c9d326c4
+Copyright: 1997-2004, 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:
+## inttypes_h.m4 serial 9
+#dnl Copyright (C) 1997-2004, 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 From Paul Eggert.
+#
+## Define HAVE_INTTYPES_H_WITH_UINTMAX if <inttypes.h> exists,
+## doesn't clash with <sys/types.h>, and declares uintmax_t.
+#
+#AC_DEFUN([gl_AC_HEADER_INTTYPES_H],
+#[
+#  AC_CACHE_CHECK([for inttypes.h], [gl_cv_header_inttypes_h],
+#  [AC_TRY_COMPILE(
+File: ./m4/isapipe.m4
+Hash: 694aef61dce5554fcd26fb2c28e2544ba8e385f8d6e673c37164e578fd6dc342
+Copyright: 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:
+## Test whether a file descriptor is a pipe.
+#
+#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_ISAPIPE],
+#[
+#  # OpenVMS has isapipe already, so check for it.
+#  AC_REPLACE_FUNCS([isapipe])
+#  if test $ac_cv_func_isapipe = no; then
+File: ./m4/isdir.m4
+Hash: e9d65c52fa170654224baaa1a9a48b18398df1b62c8f0595813ec62b53a55729
+Copyright: 2002 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:
+## isdir.m4 serial 2
+#dnl Copyright (C) 2002 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_ISDIR],
+#[
+#  dnl Prerequisites of lib/isdir.c.
+#  AC_REQUIRE([AC_HEADER_STAT])
+#])
+File: ./m4/isfinite.m4
+Hash: c19d2f133ca402c36f7c2d02bb1793b8722b49205ea44e74e40e92cef27db4fc
+Copyright: 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 5
+#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/isinf.m4
+Hash: fe9d10fd7eb4cd6bcb9b2cb63a4d24340313246a2d39faa8a63a5ca82998ff9a
+Copyright: 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:
+## isinf.m4 serial 2
+#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_ISINF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare isinf.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_DECLS([isinf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_isinf" = yes; then
+#    gl_CHECK_MATH_LIB([ISINF_LIBM], [x = isinf (x);])
+#    if test "$ISINF_LIBM" != missing; then
+File: ./m4/isnan.m4
+Hash: e7b33f83d3ce859e8f1395ea66d91f251c145404b1b04abc907a4966f213aa24
+Copyright: 2007-2008 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:
+## isnan.m4 serial 2
+#dnl Copyright (C) 2007-2008 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_ISNAN],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_ISNANF])
+#  AC_REQUIRE([gl_FUNC_ISNAND])
+#  AC_REQUIRE([gl_FUNC_ISNANL])
+#
+#  # If we replaced any of the underlying isnan* functions, replace
+#  # the isnan macro; it undoubtedly suffers from the same flaws.
+File: ./m4/isnand.m4
+Hash: 51e8e66a3b57025d5bc688689425eb32e6c8e064ede078c4d6e080b56d3aab04
+Copyright: 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:
+## isnand.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.
+#
+#dnl Check how to get or define isnand().
+#
+#AC_DEFUN([gl_FUNC_ISNAND],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  ISNAND_LIBM=
+#  gl_HAVE_ISNAND_NO_LIBM
+#  if test $gl_cv_func_isnand_no_libm = no; then
+#    gl_HAVE_ISNAND_IN_LIBM
+File: ./m4/isnanf.m4
+Hash: 595cb32bba81892f6ea7ddb98c352f5796a0535a6fa78a172cfb89437609af6b
+Copyright: 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:
+## isnanf.m4 serial 10
+#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.
+#
+#dnl Check how to get or define isnanf().
+#
+#AC_DEFUN([gl_FUNC_ISNANF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  ISNANF_LIBM=
+#  gl_HAVE_ISNANF_NO_LIBM
+#  if test $gl_cv_func_isnanf_no_libm = no; then
+#    gl_HAVE_ISNANF_IN_LIBM
+File: ./m4/isnanl.m4
+Hash: f803ad5cf4c44855de734207bee9190902ea849cbb2b13dc2e61ae9733015193
+Copyright: 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:
+## isnanl.m4 serial 12
+#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_ISNANL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  ISNANL_LIBM=
+#  gl_HAVE_ISNANL_NO_LIBM
+#  if test $gl_cv_func_isnanl_no_libm = no; then
+#    gl_HAVE_ISNANL_IN_LIBM
+#    if test $gl_cv_func_isnanl_in_libm = yes; then
+#      ISNANL_LIBM=-lm
+File: ./m4/javacomp.m4
+Hash: 14e19c009a90dde63c919635e6c67c76ca1ea166444f296ba5e1841d14e51aba
+Copyright: 2001-2003, 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:
+## javacomp.m4 serial 11
+#dnl Copyright (C) 2001-2003, 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.
+#
+## Prerequisites of javacomp.sh.
+## gt_JAVACOMP([source-version], [target-version])
+## Sets HAVE_JAVACOMP to nonempty if javacomp.sh will allow Java source code
+## according to source-version to be compiled to Java bytecode classes in the
+## target-version format.
+##
+## source-version can be:    support for
+##           1.3             inner classes
+##           1.4             assert keyword
+File: ./m4/javaexec.m4
+Hash: 4918c3e11f2ea4072f3311b390e4ae81540c6a5adf57fb986a3fcf7dab7e771d
+Copyright: 2001-2003, 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:
+## javaexec.m4 serial 5
+#dnl Copyright (C) 2001-2003, 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.
+#
+## Prerequisites of javaexec.sh.
+## gt_JAVAEXEC or gt_JAVAEXEC(testclass, its-directory)
+## Sets HAVE_JAVAEXEC to nonempty if javaexec.sh will work.
+#
+#AC_DEFUN([gt_JAVAEXEC],
+#[
+#  AC_MSG_CHECKING([for Java virtual machine])
+#  AC_EGREP_CPP([yes], [
+##if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__
+File: ./m4/jm-winsz1.m4
+Hash: 301531f58811d581f72b13a77914c5ce9116ba7ee471486ae31a75aedd85f502
+Copyright: 1996, 1999, 2001-2002, 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:
+## serial 11
+#
+## Copyright (C) 1996, 1999, 2001-2002, 2004, 2006, 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.
+#
+#dnl From Jim Meyering and Paul Eggert.
+#AC_DEFUN([gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H],
+#[AC_REQUIRE([AC_SYS_POSIX_TERMIOS])
+# AC_CACHE_CHECK([whether use of TIOCGWINSZ requires termios.h],
+#              gl_cv_sys_tiocgwinsz_needs_termios_h,
+#  [gl_cv_sys_tiocgwinsz_needs_termios_h=no
+File: ./m4/jm-winsz2.m4
+Hash: 060d85fec2c0b5c74229e5cb538ab49a2731fdcf7d9af9cd2fa2e23e3f57357e
+Copyright: 1996, 1999, 2001, 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:
+## serial 7
+#
+## Copyright (C) 1996, 1999, 2001, 2004, 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([gl_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL],
+#[AC_REQUIRE([gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H])
+# AC_CACHE_CHECK([whether use of TIOCGWINSZ requires sys/ioctl.h],
+#              gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h,
+#  [gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h=no
+#
+#  if test $gl_cv_sys_tiocgwinsz_needs_termios_h = no; then
+#    AC_EGREP_CPP([yes],
+File: ./m4/lchmod.m4
+Hash: f8d332af32afc5284f1da28186423c4b1f8df943fec36a1415936007a868b4e4
+Copyright: 2005, 2006, 2008 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:
+##serial 3
+#
+#dnl Copyright (C) 2005, 2006, 2008 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 Paul Eggert.
+#dnl Provide a replacement for lchmod on hosts that lack it.
+#
+#AC_DEFUN([gl_FUNC_LCHMOD],
+#[
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#
+#  dnl Persuade glibc <sys/stat.h> to declare lchmod().
+File: ./m4/lchown.m4
+Hash: 114159d41d1474abd908058b69f4373686342a1796d9f9f65bbbb9267cbc9d69
+Copyright: 1998, 2001, 2003-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:
+## serial 13
+## Determine whether we need the lchown wrapper.
+#
+#dnl Copyright (C) 1998, 2001, 2003-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 Jim Meyering.
+#dnl Provide lchown on systems that lack it.
+#
+#AC_DEFUN([gl_FUNC_LCHOWN],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+File: ./m4/lcmessage.m4
+Hash: e2cc3d8b92945a9d0baa9a803ba03d5516916bfa463cb50f551414bc550edef9
+Copyright: 1995-2002, 2004-2005, 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:
+## lcmessage.m4 serial 6 (gettext-0.18)
+#dnl Copyright (C) 1995-2002, 2004-2005, 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
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/ld-output-def.m4
+Hash: e5ffc015c39b58438c1616034da6eecc2ac346360cd22575e51c5f72c4aa9ff7
+Copyright: 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:
+## ld-output-def.m4 serial 2
+#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.
+#
+#dnl From Simon Josefsson
+#
+## gl_LD_OUTPUT_DEF()
+## -------------
+## Check if linker supports -Wl,--output-def and define automake
+## conditional HAVE_LD_OUTPUT_DEF if it is.
+#AC_DEFUN([gl_LD_OUTPUT_DEF],
+#[
+#  AC_CACHE_CHECK([if gcc/ld supports -Wl,--output-def],
+File: ./m4/ld-version-script.m4
+Hash: efaad515a17443f74a72ceef2bbbbb094f1e5a36515b84a35a66266ce54995ca
+Copyright: 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:
+## ld-version-script.m4 serial 1
+#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.
+#
+#dnl From Simon Josefsson
+#
+## FIXME: The test below returns a false positive for mingw
+## cross-compiles, 'local:' statements does not reduce number of
+## exported symbols in a DLL.  Use --disable-ld-version-script to work
+## around the problem.
+#
+## gl_LD_VERSION_SCRIPT
+## --------------------
+File: ./m4/ldd.m4
+Hash: 343928a20ff84e1b66ee2da65a5b896efdce4f69135b19e5df4de074a5f007b2
+Copyright: 2006 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:
+## ldd.m4 serial 1
+#dnl Copyright (C) 2006 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.
+#
+## Sets LDDPROG to a command and LDDPOSTPROC to a filter command, such that
+##   $LDDPROG program $LDDPOSTPROC
+## outputs a whitespace-separated list of the dynamically linked dependencies
+## of the program, as library names (no full pathnames), or nothing if the
+## program is statically linked or if the service is not supported on the given
+## system.
+#
+#dnl From Bruno Haible.
+File: ./m4/ldexpl.m4
+Hash: 7e93193fa9d20667368d04017e56f0514bc859b102b064aa96d292d53fc0b3ce
+Copyright: 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:
+## ldexpl.m4 serial 4
+#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_LDEXPL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  LDEXPL_LIBM=
+#  AC_CACHE_CHECK([whether ldexpl() can be used without linking with libm],
+#    [gl_cv_func_ldexpl_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   long double x;],
+File: ./m4/lib-ignore.m4
+Hash: 16d25c2943c615eb393319fda49b7d52096e1b32ff542bb57aea0ffe1a566f1f
+Copyright: 2006 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:
+## If possible, ignore libraries that are not depended on.
+#
+#dnl Copyright (C) 2006 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_IGNORE_UNUSED_LIBRARIES],
+#[
+#  AC_CACHE_CHECK([for flag to ignore unused libraries],
+#    [gl_cv_ignore_unused_libraries],
+#    [gl_cv_ignore_unused_libraries=none
+#     gl_saved_ldflags=$LDFLAGS
+File: ./m4/lib-ld.m4
+Hash: 5c208fa42b078f46f3d6aff909c14418be3e034817c1a91a5d6677bb6d143ac1
+Copyright: 1996-2003, 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:
+## lib-ld.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 1996-2003, 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 Subroutines of libtool.m4,
+#dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision
+#dnl with libtool.m4.
+#
+#dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no.
+#AC_DEFUN([AC_LIB_PROG_LD_GNU],
+#[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld],
+#[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
+#case `$LD -v 2>&1 </dev/null` in
+File: ./m4/lib-link.m4
+Hash: ddf8673d6148d43b50fa4e60fe33f19cfbf4fee56b6d017c9ff5f180b45b2247
+Copyright: 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:
+## lib-link.m4 serial 20 (gettext-0.18)
+#dnl Copyright (C) 2001-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 Bruno Haible.
+#
+#AC_PREREQ([2.54])
+#
+#dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and
+#dnl the libraries corresponding to explicit and implicit dependencies.
+#dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and
+#dnl augments the CPPFLAGS variable.
+#dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname
+File: ./m4/lib-prefix.m4
+Hash: 670991582b722e16a12293d7f817562b4f6c9d6a8d034573c7d1b049a3f618e7
+Copyright: 2001-2005, 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:
+## lib-prefix.m4 serial 7 (gettext-0.18)
+#dnl Copyright (C) 2001-2005, 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 From Bruno Haible.
+#
+#dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and
+#dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't
+#dnl require excessive bracketing.
+#ifdef([AC_HELP_STRING],
+#[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])],
+#[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])])
+File: ./m4/libsigsegv.m4
+Hash: 417798efd6f0af14a61894f4f838a3188a159231210a7ac3cfb80dbcdd38bb04
+Copyright: 2002-2003, 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:
+## libsigsegv.m4 serial 4
+#dnl Copyright (C) 2002-2003, 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 From Bruno Haible, Sam Steingold.
+#
+#AC_DEFUN([gl_LIBSIGSEGV],
+#[
+#  AC_LIB_HAVE_LINKFLAGS([sigsegv], [],
+#    [#include <sigsegv.h>], [sigsegv_deinstall_handler();],
+#    [no, consider installing GNU libsigsegv])
+#  dnl Some other autoconf macros and clisp's configure use this variable.
+#  gl_cv_lib_sigsegv="$ac_cv_libsigsegv"
+File: ./m4/libunistring.m4
+Hash: 30e764db0ea63d7c4b4a6d5886a6417f11b355c04a873f4c97609a0975144b63
+Copyright: 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:
+## libunistring.m4 serial 1
+#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.
+#
+#dnl gl_LIBUNISTRING
+#dnl Searches for an installed libunistring.
+#dnl If found, it sets and AC_SUBSTs HAVE_LIBUNISTRING=yes and the LIBUNISTRING
+#dnl and LTLIBUNISTRING variables and augments the CPPFLAGS variable, and
+#dnl #defines HAVE_LIBUNISTRING to 1. Otherwise, it sets and AC_SUBSTs
+#dnl HAVE_LIBUNISTRING=no and LIBUNINSTRING and LTLIBUNISTRING to empty.
+#
+#AC_DEFUN([gl_LIBUNISTRING],
+#[
+File: ./m4/link-follow.m4
+Hash: bfcaf0beba8f8e7b4b5b35b52c14f4f2074cfd8d85c0ad824c32f6a189b31dc9
+Copyright: 1999-2001, 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:
+## serial 14
+#dnl Run a program to determine whether link(2) follows symlinks.
+#dnl Set LINK_FOLLOWS_SYMLINKS accordingly.
+#
+## Copyright (C) 1999-2001, 2004-2006, 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.
+#
+#dnl This macro can be used to emulate POSIX linkat.  If
+#dnl LINK_FOLLOWS_SYMLINKS is 0, link matches linkat(,0), and
+#dnl linkat(,AT_SYMLINK_FOLLOW) requires a readlink. If it is 1,
+#dnl link matches linkat(,AT_SYMLINK_FOLLOW), and there is no way
+#dnl to do linkat(,0) on symlinks (on all other file types,
+#dnl link() is sufficient).  If it is -1, use a runtime test.
+File: ./m4/link.m4
+Hash: 0cdff13ae7180563eed4c0316a5c6f515ae921b3805f4cf6e8b642cc1c206498
+Copyright: 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 1
+#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])
+#    gl_PREREQ_LINK
+#  fi
+File: ./m4/localcharset.m4
+Hash: 00e8162fc6c53b329b35513aace655880fbf6e8c3f684923cff2b97e11eed3a3
+Copyright: 2002, 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:
+## localcharset.m4 serial 6
+#dnl Copyright (C) 2002, 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.
+#
+#AC_DEFUN([gl_LOCALCHARSET],
+#[
+#  dnl Prerequisites of lib/localcharset.c.
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CHECK_DECLS_ONCE([getc_unlocked])
+#
+#  dnl Prerequisites of the lib/Makefile.am snippet.
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([gl_GLIBC21])
+File: ./m4/locale-fr.m4
+Hash: f37c0c563b84177f67f66c1c84aa0f80fae71061d5dd4f49cd60b7a0f12ad7e2
+Copyright: 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:
+## locale-fr.m4 serial 11
+#dnl Copyright (C) 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.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a french locale with traditional encoding.
+#AC_DEFUN([gt_LOCALE_FR],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a traditional french locale], [gt_cv_locale_fr], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+File: ./m4/locale-ja.m4
+Hash: 46355008a2c63f595d7c452c1f36c5f9e9b11bd8b469d5a16a2f4960b545d1e7
+Copyright: 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:
+## locale-ja.m4 serial 7
+#dnl Copyright (C) 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.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a japanese locale with EUC-JP encoding.
+#AC_DEFUN([gt_LOCALE_JA],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a traditional japanese locale], [gt_cv_locale_ja], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+File: ./m4/locale-tr.m4
+Hash: 8f7943111b5706039847295a518091bf667a3ddd04727fee2858357e3659a0ee
+Copyright: 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:
+## locale-tr.m4 serial 6
+#dnl Copyright (C) 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.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a turkish locale with UTF-8 encoding.
+#AC_DEFUN([gt_LOCALE_TR_UTF8],
+#[
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a turkish Unicode locale], [gt_cv_locale_tr_utf8], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+#changequote(,)dnl
+File: ./m4/locale-zh.m4
+Hash: af44fa1110a57fb71f22d7f43efce6bb0b4d1ad67d39bb8a01e10b65ec282a7c
+Copyright: 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:
+## locale-zh.m4 serial 6
+#dnl Copyright (C) 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.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a chinese locale with GB18030 encoding.
+#AC_DEFUN([gt_LOCALE_ZH_CN],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a transitional chinese locale], [gt_cv_locale_zh_CN], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+File: ./m4/locale_h.m4
+Hash: df7aaa065eb91a465c6b5dec83ca26b2b8cb4e790cf0abc5c387326fbacd066c
+Copyright: 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:
+## locale_h.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_LOCALE_H],
+#[
+#  AC_CACHE_CHECK([whether locale.h conforms to POSIX],
+#    [gl_cv_header_working_locale_h],
+#    [AC_TRY_COMPILE([#include <locale.h>
+#int x = LC_MESSAGES;], [],
+#       [gl_cv_header_working_locale_h=yes],
+#       [gl_cv_header_working_locale_h=no])])
+File: ./m4/localename.m4
+Hash: 3fa8b3a4ca986ad17a8dc24d01300ad487fc51243c3d584d651327f08a15561f
+Copyright: 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:
+## localename.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_LOCALENAME],
+#[
+#  AC_REQUIRE([gt_LC_MESSAGES])
+#  AC_REQUIRE([gt_INTL_MACOSX])
+#  AC_CHECK_FUNCS([setlocale])
+#])
+File: ./m4/lock.m4
+Hash: 591f64f47b0546c5ab1769dc5f6a995ac3c2c0846e4f37c456601638e8353127
+Copyright: 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:
+## lock.m4 serial 10 (gettext-0.18)
+#dnl Copyright (C) 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.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_LOCK],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  if test "$gl_threads_api" = posix; then
+#    # OSF/1 4.0 and MacOS X 10.1 lack the pthread_rwlock_t type and the
+#    # pthread_rwlock_* functions.
+#    AC_CHECK_TYPE([pthread_rwlock_t],
+File: ./m4/long-options.m4
+Hash: 90915cdfe1004a2676f30d1c36306db44f25076401bb5e07ce04d7c2f8e55396
+Copyright: 2002, 2003, 2005, 2006 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:
+## long-options.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_LONG_OPTIONS],
+#[
+#  AC_LIBOBJ([long-options])
+#
+#  dnl Prerequisites of lib/long-options.c.
+#])
+File: ./m4/longlong.m4
+Hash: 31bf5606914914e2b190d30413b6ee86c190153a1ba10b6b71d66f9853693ad8
+Copyright: 1999-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:
+## longlong.m4 serial 14
+#dnl Copyright (C) 1999-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 Paul Eggert.
+#
+## Define HAVE_LONG_LONG_INT if 'long long int' works.
+## This fixes a bug in Autoconf 2.61, but can be removed once we
+## assume 2.62 everywhere.
+#
+## Note: If the type 'long long int' exists but is only 32 bits large
+## (as on some very old compilers), HAVE_LONG_LONG_INT will not be
+## defined. In this case you can treat 'long long int' like 'long int'.
+File: ./m4/ls-mntd-fs.m4
+Hash: 843fe15f5a9827e6d8388ec64749b6a3fadb7705147e34ecdb189c731ef849da
+Copyright: 1998-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:
+## serial 28
+## How to list mounted file systems.
+#
+## Copyright (C) 1998-2004, 2006, 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.
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl This is not pretty.  I've just taken the autoconf code and wrapped
+#dnl it in an AC_DEFUN and made some other fixes.
+#dnl
+File: ./m4/lseek.m4
+Hash: 7f0502309efd6839c977e3419c2aee0f013e5a2541bcb22bdc6e04e4868dfd1c
+Copyright: 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:
+## lseek.m4 serial 4
+#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.
+#
+#AC_DEFUN([gl_FUNC_LSEEK],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([whether lseek detects pipes], [gl_cv_func_lseek_pipe],
+#    [if test $cross_compiling = no; then
+#       AC_LINK_IFELSE([
+##include <sys/types.h> /* for off_t */
+##include <stdio.h> /* for SEEK_CUR */
+File: ./m4/lstat.m4
+Hash: 477d1ff15d11599304c8b73e8e2dbada5a9bf4c7057fdfe47cc5f23a66a66a66
+Copyright: 1997-2001, 2003-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:
+## serial 19
+#
+## Copyright (C) 1997-2001, 2003-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.
+#
+#dnl From Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_LSTAT],
+#[
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#  dnl If lstat does not exist, the replacement <sys/stat.h> does
+#  dnl "#define lstat stat", and lstat.c does not need to be compiled.
+File: ./m4/malloc.m4
+Hash: 2a8252ecabf5e3af574f01ee6254422f36889314949c50fc9245d94e857c3652
+Copyright: 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:
+## malloc.m4 serial 9
+#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.
+#
+## gl_FUNC_MALLOC_POSIX
+## --------------------
+## Test whether 'malloc' is POSIX compliant (sets errno to ENOMEM when it
+## fails), and replace malloc if it is not.
+#AC_DEFUN([gl_FUNC_MALLOC_POSIX],
+#[
+#  AC_REQUIRE([gl_CHECK_MALLOC_POSIX])
+#  if test $gl_cv_func_malloc_posix = yes; then
+#    HAVE_MALLOC_POSIX=1
+File: ./m4/malloca.m4
+Hash: 574f23c6a3908adea4bc9f052f415c65e5b9c444ca4433a34c9120c94870b237
+Copyright: 2003-2004, 2006-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:
+## malloca.m4 serial 1
+#dnl Copyright (C) 2003-2004, 2006-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.
+#
+#AC_DEFUN([gl_MALLOCA],
+#[
+#  dnl Use the autoconf tests for alloca(), but not the AC_SUBSTed variables
+#  dnl @ALLOCA@ and @LTALLOCA@.
+#  dnl gl_FUNC_ALLOCA   dnl Already brought in by the module dependencies.
+#  AC_REQUIRE([gl_EEMALLOC])
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+#])
+File: ./m4/manywarnings.m4
+Hash: d8731a4a9dfaecf297b136b0f85f850c4519fc39a44680674853bba3644ad22c
+Copyright: 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:
+## manywarnings.m4 serial 1
+#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.
+#
+#dnl From Simon Josefsson
+#
+## gl_MANYWARN_COMPLEMENT(OUTVAR, LISTVAR, REMOVEVAR)
+## --------------------------------------------------
+## Copy LISTVAR to OUTVAR except for the entries in REMOVEVAR.
+## Elements separated by whitespace.  In set logic terms, the function
+## does OUTVAR = LISTVAR \ REMOVEVAR.
+#AC_DEFUN([gl_MANYWARN_COMPLEMENT],
+#[
+File: ./m4/math_h.m4
+Hash: 821573f4fcedee707630697c2cf95ed24b271a9152c84dbc6bf920ee554afb56
+Copyright: 2007-2008 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:
+## math_h.m4 serial 14
+#dnl Copyright (C) 2007-2008 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_MATH_H],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([math.h])
+#  AC_CACHE_CHECK([whether NAN macro works], [gl_cv_header_math_nan_works],
+#    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <math.h>]],
+#      [[/* Solaris 10 has a broken definition of NAN.  Other platforms
+#        fail to provide NAN, or provide it only in C99 mode; this
+#        test only needs to fail when NAN is provided but wrong.  */
+File: ./m4/mathl.m4
+Hash: 6ce43398f3875ee3f91451cbf904c142813d768bd7a6e9cf330e3fe8dd62a27b
+Copyright: 2003, 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:
+## mathl.m4 serial 5
+#dnl Copyright (c) 2003, 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_LONG_DOUBLE_MATH], [
+#
+#AC_CHECK_LIB([m], [atan])
+#AC_REPLACE_FUNCS(floorl ceill sqrtl asinl acosl atanl \
+#        logl expl tanl sinl cosl)
+#
+#])
+File: ./m4/mbchar.m4
+Hash: b486f2469239c36107f6b2b0b0541b087405ba8fbc85d9256b4cf6454550c144
+Copyright: 2005-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:
+## mbchar.m4 serial 7
+#dnl Copyright (C) 2005-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 autoconf tests required for use of mbchar.m4
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBCHAR],
+#[
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#])
+File: ./m4/mbfile.m4
+Hash: e87810bc66d7019634d2b30038f24b16e1a9ef49c6c32e805f6f71360452cbb2
+Copyright: 2005, 2008 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:
+## mbfile.m4 serial 4
+#dnl Copyright (C) 2005, 2008 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 autoconf tests required for use of mbfile.h
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBFILE],
+#[
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  dnl The following line is that so the user can test HAVE_MBRTOWC before
+#  dnl #include "mbfile.h". It can be removed in 2010.
+#  AC_REQUIRE([AC_FUNC_MBRTOWC])
+File: ./m4/mbiter.m4
+Hash: a969e27c30aefb7073965ab1cd4bcee97268f6b82bf96522509e713eacc853a2
+Copyright: 2005, 2008 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:
+## mbiter.m4 serial 4
+#dnl Copyright (C) 2005, 2008 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 autoconf tests required for use of mbiter.h
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBITER],
+#[
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  dnl The following line is that so the user can test HAVE_MBRTOWC before
+#  dnl #include "mbiter.h" or "mbuiter.h". It can be removed in 2010.
+#  AC_REQUIRE([AC_FUNC_MBRTOWC])
+File: ./m4/mbrlen.m4
+Hash: a606b1ca8b598c52bfd7f233eb4984ca878fb179d80e06220d85b5d9b36d960d
+Copyright: 2008 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:
+## mbrlen.m4 serial 2
+#dnl Copyright (C) 2008 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_MBRLEN],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  AC_REQUIRE([gl_FUNC_MBRTOWC])
+#  AC_CHECK_FUNCS_ONCE([mbrlen])
+#  if test $ac_cv_func_mbrlen = no; then
+#    HAVE_MBRLEN=0
+File: ./m4/mbrtowc.m4
+Hash: d660822110548e8d7d79255d5ac60fe496a9e7f04a9de7397f3a6d5a8dbb54f1
+Copyright: 2001-2002, 2004-2005, 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:
+## mbrtowc.m4 serial 16
+#dnl Copyright (C) 2001-2002, 2004-2005, 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_FUNC_MBRTOWC],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_MBRTOWC=1
+#  fi
+File: ./m4/mbsinit.m4
+Hash: 8d7472d2b364b4379c7f634f7a4f6800e19078099331fac228780eb697a2cd58
+Copyright: 2008 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:
+## mbsinit.m4 serial 3
+#dnl Copyright (C) 2008 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_MBSINIT],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_MBSINIT=1
+#  fi
+File: ./m4/mbsnrtowcs.m4
+Hash: a7a12a2e7dfec6902d1398d30ee7a15b86c159a0a1265611a5546ab220f7bc4c
+Copyright: 2008 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:
+## mbsnrtowcs.m4 serial 1
+#dnl Copyright (C) 2008 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_MBSNRTOWCS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  dnl Persuade glibc <wchar.h> to declare mbsnrtowcs().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+File: ./m4/mbsrtowcs.m4
+Hash: 5425f085251dacc43b461b2b77cdbc1fe485d1c81e33989687f213dfc3a1d389
+Copyright: 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:
+## mbsrtowcs.m4 serial 5
+#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_FUNC_MBSRTOWCS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_MBSRTOWCS=1
+#  fi
+File: ./m4/mbstate_t.m4
+Hash: 59a390c7f53d4878a2370306835400bd423ea9dfa0b34e8e2a92fa00b0d70255
+Copyright: 2000-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:
+## mbstate_t.m4 serial 12
+#dnl Copyright (C) 2000-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.
+#
+## From Paul Eggert.
+#
+## BeOS 5 has <wchar.h> but does not define mbstate_t,
+## so you can't declare an object of that type.
+## Check for this incompatibility with Standard C.
+#
+## AC_TYPE_MBSTATE_T
+## -----------------
+#AC_DEFUN([AC_TYPE_MBSTATE_T],
+File: ./m4/mbswidth.m4
+Hash: 2deb63d9fcc93ac349da112c631d337964c474754e5387a42d368f90157012cd
+Copyright: 2000-2002, 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:
+## mbswidth.m4 serial 17
+#dnl Copyright (C) 2000-2002, 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 autoconf tests required for use of mbswidth.c
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBSWIDTH],
+#[
+#  AC_CHECK_HEADERS_ONCE([wchar.h])
+#  AC_CHECK_FUNCS_ONCE([isascii mbsinit])
+#
+#  dnl UnixWare 7.1.1 <wchar.h> has a declaration of a function mbswidth()
+File: ./m4/md2.m4
+Hash: 130e33f82decb4d039a56ebd2b85e32c70de213b254873ac543bf5b7e0cb24d5
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+## md2.m4 serial 2
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_MD2],
+#[
+#  AC_LIBOBJ([md2])
+#])
+File: ./m4/md4.m4
+Hash: 7978358bc5de59163559a74cf8c7992190472b1269112e939f5ecf2a4e26f8fc
+Copyright: 2002, 2003, 2004, 2005, 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:
+## md4.m4 serial 4
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 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.
+#
+#AC_DEFUN([gl_MD4],
+#[
+#  AC_LIBOBJ([md4])
+#
+#  dnl Prerequisites of lib/md4.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+File: ./m4/md5.m4
+Hash: aad43f86e0054029b846a78045d88f8d03aec67b5b6ad6f4b59b3a6e2d6d7c7a
+Copyright: 2002, 2003, 2004, 2005, 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:
+## md5.m4 serial 11
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 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.
+#
+#AC_DEFUN([gl_MD5],
+#[
+#  AC_LIBOBJ([md5])
+#
+#  dnl Prerequisites of lib/md5.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#  :
+#])
+File: ./m4/memcasecmp.m4
+Hash: 479e27cf51cc18056b84824cad8a4ba0d97d0fc9116fd12b2e872c409c570ddb
+Copyright: 2005, 2006 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:
+##serial 5
+#dnl Copyright (C) 2005, 2006 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_MEMCASECMP],
+#[
+#  AC_LIBOBJ([memcasecmp])
+#])
+File: ./m4/memchr.m4
+Hash: d3882d0a7e536c7f6eca2a953e8a9a77d1e0486d3ccadb9b5a4a469c4c069bb8
+Copyright: 2002, 2003, 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:
+## memchr.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 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_ONCE([gl_FUNC_MEMCHR],
+#[
+#  dnl Check for prerequisites for memory fence checks.
+#  gl_FUNC_MMAP_ANON
+#  AC_CHECK_HEADERS_ONCE([sys/mman.h])
+#  AC_CHECK_FUNCS_ONCE([mprotect])
+#
+#  dnl These days, we assume memchr is present.  But just in case...
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+File: ./m4/memcmp.m4
+Hash: 449f2f83be3f02edb3e248d1e7ae3d7362782610e06dd191239165716870c19d
+Copyright: 2002-2004, 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:
+## memcmp.m4 serial 14
+#dnl Copyright (C) 2002-2004, 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_MEMCMP],
+#[
+#  if test $cross_compiling != no; then
+#    # AC_FUNC_MEMCMP as of 2.62 defaults to 'no' when cross compiling.
+#    # We default to yes if memcmp appears to exist, which works
+#    # better for MinGW.
+#    AC_CACHE_CHECK([whether cross-compiling target has memcmp],
+#                   [ac_cv_func_memcmp_working],
+#                   [AC_LINK_IFELSE([
+File: ./m4/memcoll.m4
+Hash: 9395ae323be423646eecb762e010a41756b958911635ef8a1f45bdd9db176663
+Copyright: 2002, 2003, 2005, 2006 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:
+## memcoll.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_MEMCOLL],
+#[
+#  AC_LIBOBJ([memcoll])
+#
+#  dnl Prerequisites of lib/memcoll.c.
+#  AC_FUNC_STRCOLL
+#])
+File: ./m4/memcpy.m4
+Hash: 84c3b639c26e2935d10c98c4eca37254a25f95b6a8c2f8f1f3b626eae72595ff
+Copyright: 2002, 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:
+## memcpy.m4 serial 3
+#dnl Copyright (C) 2002, 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_MEMCPY],
+#[
+#  AC_REPLACE_FUNCS([memcpy])
+#  if test $ac_cv_func_memcpy = no; then
+#    gl_PREREQ_MEMCPY
+#  fi
+#])
+#
+## Prerequisites of lib/memcpy.c.
+File: ./m4/memmem.m4
+Hash: aee6e80d6f3a27178e82414b2705d8b5824e26f352bcdbd457d309de9bd526c2
+Copyright: 2002, 2003, 2004, 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:
+## memmem.m4 serial 14
+#dnl Copyright (C) 2002, 2003, 2004, 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 Check that memmem is present.
+#AC_DEFUN([gl_FUNC_MEMMEM_SIMPLE],
+#[
+#  dnl Persuade glibc <string.h> to declare memmem().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([memmem])
+#  AC_CHECK_DECLS_ONCE([memmem])
+File: ./m4/memmove.m4
+Hash: 197891df3f9fd08854095f4665cc9dc917fe595d189a4f613d1575a3c9b43adc
+Copyright: 2002, 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:
+## memmove.m4 serial 3
+#dnl Copyright (C) 2002, 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_MEMMOVE],
+#[
+#  AC_REPLACE_FUNCS([memmove])
+#  if test $ac_cv_func_memmove = no; then
+#    gl_PREREQ_MEMMOVE
+#  fi
+#])
+#
+## Prerequisites of lib/memmove.c.
+File: ./m4/mempcpy.m4
+Hash: 348c790aab8f85294c57e021f04e15befa7530aabb531a4f21fc10ddabb271b0
+Copyright: 2003-2004, 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:
+## mempcpy.m4 serial 10
+#dnl Copyright (C) 2003-2004, 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_MEMPCPY],
+#[
+#  dnl Persuade glibc <string.h> to declare mempcpy().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The mempcpy() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+File: ./m4/memrchr.m4
+Hash: e1b3e57cb26a5122045e5a65c1e06f24e2ce5a75cf6ce12f8992208e34b7e74d
+Copyright: 2002, 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:
+## memrchr.m4 serial 9
+#dnl Copyright (C) 2002, 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_MEMRCHR],
+#[
+#  dnl Persuade glibc <string.h> to declare memrchr().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_CHECK_DECLS_ONCE([memrchr])
+#  if test $ac_cv_have_decl_memrchr = no; then
+#    HAVE_DECL_MEMRCHR=0
+File: ./m4/memset.m4
+Hash: e7937ae3941db76c84b41bc3aab29231fc5a0e57018a6fad797cd527f0578eaf
+Copyright: 2002, 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:
+## memset.m4 serial 3
+#dnl Copyright (C) 2002, 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_MEMSET],
+#[
+#  AC_REPLACE_FUNCS([memset])
+#  if test $ac_cv_func_memset = no; then
+#    gl_PREREQ_MEMSET
+#  fi
+#])
+#
+## Prerequisites of lib/memset.c.
+File: ./m4/memxor.m4
+Hash: bef5cfa0b422bb86f6c6713336c527d14407c55ee8a792d0780bbab8a1233d98
+Copyright: 2006 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:
+## memxor.m4 serial 3
+#dnl Copyright (C) 2006 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_MEMXOR],
+#[
+#  AC_LIBOBJ([memxor])
+#  AC_REQUIRE([AC_C_RESTRICT])
+#])
+File: ./m4/minmax.m4
+Hash: 9377265286ad8108a58bb33b19f69b867035ff53bcbea4df3e6b0016347b90f9
+Copyright: 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:
+## minmax.m4 serial 3
+#dnl Copyright (C) 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_PREREQ([2.52])
+#
+#AC_DEFUN([gl_MINMAX],
+#[
+#  AC_REQUIRE([gl_PREREQ_MINMAX])
+#])
+#
+## Prerequisites of lib/minmax.h.
+#AC_DEFUN([gl_PREREQ_MINMAX],
+File: ./m4/mkancesdirs.m4
+Hash: 5636abd1471767ac9a49a328344cf3e04afc98405063b73cca8c95049d237a8e
+Copyright: 2006 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:
+## Make a file's ancestor directories.
+#dnl Copyright (C) 2006 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_MKANCESDIRS],
+#[
+#  AC_LIBOBJ([mkancesdirs])
+#])
+File: ./m4/mkdir-p.m4
+Hash: ac650e70d9346b2fb4df3ba6740e9aa14e1d5df373d1de3e080555faaf3aea47
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+## mkdir-p.m4 serial 13
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_MKDIR_PARENTS],
+#[
+#  AC_LIBOBJ([dirchownmod])
+#  AC_LIBOBJ([mkdir-p])
+#
+#  dnl Prerequisites of lib/dirchownmod.c.
+#  AC_REQUIRE([gl_FUNC_LCHMOD])
+#  AC_REQUIRE([gl_FUNC_LCHOWN])
+#  AC_CHECK_FUNCS_ONCE([fchmod])
+File: ./m4/mkdir-slash.m4
+Hash: e49b5a74f72ac1bf48beee660429e250ce6c84debef307189bdde551178a40e6
+Copyright: 2001, 2003-2004, 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:
+## serial 8
+#
+## Copyright (C) 2001, 2003-2004, 2006, 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.
+#
+## On some systems, mkdir ("foo/", 0700) fails because of the trailing slash.
+## On such systems, arrange to use a wrapper function that removes any
+## trailing slashes.
+#AC_DEFUN([gl_FUNC_MKDIR_TRAILING_SLASH],
+#[dnl
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+#  AC_CACHE_CHECK([whether mkdir fails due to a trailing slash],
+File: ./m4/mkdtemp.m4
+Hash: e9d10a2443d799828ab3560664f80a1b3eeab2c1c44ff3a03343a8a6d559d246
+Copyright: 2001-2003, 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:
+## mkdtemp.m4 serial 6
+#dnl Copyright (C) 2001-2003, 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([gt_FUNC_MKDTEMP],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([mkdtemp])
+#  if test $ac_cv_func_mkdtemp = no; then
+#    HAVE_MKDTEMP=0
+#    gl_PREREQ_MKDTEMP
+#  fi
+#])
+File: ./m4/mkostemp.m4
+Hash: de670586ec4849c79719a5083d4615315bc12f021062c3f712dd943602f919c8
+Copyright: 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:
+## mkostemp.m4 serial 1
+#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_MKOSTEMP],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#
+#  dnl Persuade glibc <stdlib.h> to declare mkostemp().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([mkostemp])
+#  if test $ac_cv_func_mkostemp != yes; then
+File: ./m4/mkstemp.m4
+Hash: 68e1a719526a1664819987fb68462270a281870e6343e8f7ad24a6d0ecbbda1c
+Copyright: 2001, 2003, 2004, 2005, 2006, 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:
+##serial 17
+#
+## Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007 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.
+#
+## On some hosts (e.g., HP-UX 10.20, SunOS 4.1.4, Solaris 2.5.1), mkstemp has a
+## silly limit that it can create no more than 26 files from a given template.
+## Other systems lack mkstemp altogether.
+## On OSF1/Tru64 V4.0F, the system-provided mkstemp function can create
+## only 32 files per process.
+## On systems like the above, arrange to use the replacement function.
+#AC_DEFUN([gl_FUNC_MKSTEMP],
+#[
+File: ./m4/mktime.m4
+Hash: a694524fe822949b46a4e4bc24861958d73ebb75afdf8c2b30a008b5e254c067
+Copyright: 2002-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:
+## serial 15
+#dnl Copyright (C) 2002-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.
+#
+#dnl From Jim Meyering.
+#
+## Redefine AC_FUNC_MKTIME, to fix a bug in Autoconf 2.61a and earlier.
+## This redefinition can be removed once a new version of Autoconf is assumed.
+## The redefinition is taken from
+## <http://cvs.sv.gnu.org/viewcvs/*checkout*/autoconf/autoconf/lib/autoconf/functions.m4?rev=1.119>.
+## AC_FUNC_MKTIME
+## --------------
+#AC_DEFUN([AC_FUNC_MKTIME],
+File: ./m4/mmap-anon.m4
+Hash: fc74a563ed0275f38790da335f29a098d015f5246ea7765f0b7769ebe7b120d1
+Copyright: 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:
+## mmap-anon.m4 serial 8
+#dnl Copyright (C) 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.
+#
+## Detect how mmap can be used to create anonymous (not file-backed) memory
+## mappings.
+## - On Linux, AIX, OSF/1, Solaris, Cygwin, Interix, Haiku, both MAP_ANONYMOUS
+##   and MAP_ANON exist and have the same value.
+## - On HP-UX, only MAP_ANONYMOUS exists.
+## - On MacOS X, FreeBSD, NetBSD, OpenBSD, only MAP_ANON exists.
+## - On IRIX, neither exists, and a file descriptor opened to /dev/zero must be
+##   used.
+File: ./m4/mode_t.m4
+Hash: edba1bc2a5883adbb22efb7d249f1d36eb813483301ecc40cde9c2a6571f5837
+Copyright: 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:
+## mode_t.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.
+#
+## For using mode_t, it's sufficient to use AC_TYPE_MODE_T and
+## include <sys/types.h>.
+#
+## Define PROMOTED_MODE_T to the type that is the result of "default argument
+## promotion" (ISO C 6.5.2.2.(6)) of the type mode_t.
+#AC_DEFUN([gl_PROMOTED_TYPE_MODE_T],
+#[
+#  AC_REQUIRE([AC_TYPE_MODE_T])
+#  AC_CACHE_CHECK([for promoted mode_t type], [gl_cv_promoted_mode_t], [
+File: ./m4/modechange.m4
+Hash: ce44dcfc3a8e8574a4ef4d768d020e9829048e7f077112a3a6e8428e3e7b56d6
+Copyright: 2002, 2003, 2005, 2006 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:
+## modechange.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_MODECHANGE],
+#[
+#  AC_LIBOBJ([modechange])
+#])
+File: ./m4/mountlist.m4
+Hash: d152d842444b1deff2d4b4fd74538c7f5b1e00dff162d9ffdf6f933996d8e05b
+Copyright: 2002-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:
+## serial 10
+#dnl Copyright (C) 2002-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_MOUNTLIST],
+#[
+#  gl_LIST_MOUNTED_FILE_SYSTEMS([gl_cv_list_mounted_fs=yes],
+#                             [gl_cv_list_mounted_fs=no])
+#  if test $gl_cv_list_mounted_fs = yes; then
+#    AC_LIBOBJ([mountlist])
+#    gl_PREREQ_MOUNTLIST_EXTRA
+#  fi
+#])
+File: ./m4/mpsort.m4
+Hash: 809791f443252bbfc151a010255ce7ec04024f6eb00f35995ab8faf19fd664fd
+Copyright: 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:
+## Sort a vector of pointers to data.
+#
+## Copyright (C) 2007 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([gl_MPSORT],
+#[
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_LIBOBJ([mpsort])
+#])
+File: ./m4/multiarch.m4
+Hash: b653258f3ce7cd64c7398d9233856eb610cb9f25c8220388ac8f8d69522e0093
+Copyright: 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:
+## multiarch.m4 serial 5
+#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.
+#
+## Determine whether the compiler is or may be producing universal binaries.
+##
+## On MacOS X 10.5 and later systems, the user can create libraries and
+## executables that work on multiple system types--known as "fat" or
+## "universal" binaries--by specifying multiple '-arch' options to the
+## compiler but only a single '-arch' option to the preprocessor.  Like
+## this:
+##
+##     ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
+File: ./m4/nanosleep.m4
+Hash: 674b956f064d364a077586afb415cb25d57fc568f9fba0489cba169168844500
+Copyright: 1999-2001, 2003-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:
+## serial 27
+#
+#dnl From Jim Meyering.
+#dnl Check for the nanosleep function.
+#dnl If not found, use the supplied replacement.
+#dnl
+#
+## Copyright (C) 1999-2001, 2003-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([gl_FUNC_NANOSLEEP],
+#[
+File: ./m4/netdb_h.m4
+Hash: d08ed8e4f180214d652b09a8eaafd373f90309951733c48e677e83037b6ed4f2
+Copyright: 2008 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:
+## netdb_h.m4 serial 5
+#dnl Copyright (C) 2008 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_HEADER_NETDB],
+#[
+#  AC_REQUIRE([gl_NETDB_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([netdb.h])
+#  if test $ac_cv_header_netdb_h = yes; then
+#    AC_COMPILE_IFELSE(
+#      [AC_LANG_PROGRAM([[
+#         #include <netdb.h>
+#         struct addrinfo a;
+File: ./m4/netinet_in_h.m4
+Hash: a85cc8fd45199ab9ef11d6ac7d13daa751abfde221865a0a73fe7cfe21c2f2f0
+Copyright: 2006-2008 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:
+## netinet_in_h.m4 serial 4
+#dnl Copyright (C) 2006-2008 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_HEADER_NETINET_IN],
+#[
+#  AC_CACHE_CHECK([whether <netinet/in.h> is self-contained],
+#    [gl_cv_header_netinet_in_h_selfcontained],
+#    [
+#      AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <netinet/in.h>]], [[]])],
+#        [gl_cv_header_netinet_in_h_selfcontained=yes],
+#        [gl_cv_header_netinet_in_h_selfcontained=no])
+#    ])
+File: ./m4/nls.m4
+Hash: e7e360a53812d679422ef6f4d1e35bb7646879dfcaf785927d7ac9095f8b7ec7
+Copyright: 1995-2003, 2005-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:
+## nls.m4 serial 5 (gettext-0.18)
+#dnl Copyright (C) 1995-2003, 2005-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
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/no-c++.m4
+Hash: 0b0031352efd05fda906a5128060bd0ae56b31d85f23def26558caef30481782
+Copyright: 2006 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:
+## no-c++.m4 serial 1
+#dnl Copyright (C) 2006 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.
+#
+## Support for C source files that cannot be compiled by a C++ compiler.
+## Set NO_CXX to the C++ compiler flags needed to request C mode instead of
+## C++ mode.
+## So far only g++ is supported.
+#
+#AC_DEFUN([gt_NO_CXX],
+#[
+#  NO_CXX=
+#  AC_EGREP_CPP([Is g++], [
+File: ./m4/nocrash.m4
+Hash: 6adf83dadf8d1dcb76ced51fc0508c5debc83ec4ceed2c5f870a9fc82912bd39
+Copyright: 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:
+## nocrash.m4 serial 2
+#dnl Copyright (C) 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.
+#
+#dnl Based on libsigsegv, from Bruno Haible and Paolo Bonzini.
+#
+#AC_PREREQ([2.13])
+#
+#dnl Expands to some code for use in .c programs that will cause the configure
+#dnl test to exit instead of crashing. This is useful to avoid triggering
+#dnl action from a background debugger and to avoid core dumps.
+#dnl Usage:   ...
+#dnl          ]GL_NOCRASH[
+File: ./m4/obstack-printf-posix.m4
+Hash: 7ba595af510c3e8cd2d9f3680cabbe5987b67bee7a5c830deea8a29b90e93e52
+Copyright: 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:
+## obstack-printf-posix.m4 serial 3
+#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_FUNC_OBSTACK_PRINTF_POSIX],
+#[
+#  dnl Persuade glibc <stdio.h> to declare obstack_printf(), obstack_vprintf().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+File: ./m4/obstack-printf.m4
+Hash: 6368c454be42588d8224ccee3a953a7b53f7ad95c71f7ee3740973a41f824199
+Copyright: 2008 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:
+## obstack-printf.m4 serial 2
+#dnl Copyright (C) 2008 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 Test whether obstack_printf() exists.  For now, we assume that
+#dnl obstack_vprintf behaves identically, so we only test for one.
+#
+#AC_DEFUN([gl_FUNC_OBSTACK_PRINTF],
+#[
+#  dnl Persuade glibc <stdio.h> to declare obstack_printf(), obstack_vprintf().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+File: ./m4/onceonly.m4
+Hash: 7ae946e07bc12c2ed2eb7a4a8c826cf7debadef975bffbf2cb04c5d8f27c6f38
+Copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc.
+License:
+ This file is free software, distributed under the terms of the GNU
+ General Public License.  As a special exception to the GNU General
+ Public License, this file may be distributed as part of a program
+ that contains a configuration script generated by Autoconf, under
+ the same distribution terms as the rest of that program.
+#
+#dnl This file defines some "once only" variants of standard autoconf macros.
+#dnl   AC_CHECK_HEADERS_ONCE          like  AC_CHECK_HEADERS
+#dnl   AC_CHECK_FUNCS_ONCE            like  AC_CHECK_FUNCS
+#dnl   AC_CHECK_DECLS_ONCE            like  AC_CHECK_DECLS
+#dnl   AC_REQUIRE([AC_FUNC_STRCOLL])  like  AC_FUNC_STRCOLL
+#dnl The advantage is that the check for each of the headers/functions/decls
+#dnl will be put only once into the 'configure' file. It keeps the size of
+File: ./m4/open.m4
+Hash: 48fe6d09b376e833462ed32fe6065929561bff664179f71223340c481e677893
+Copyright: 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:
+## open.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_OPEN],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  case "$host_os" in
+#    mingw* | pw*)
+#      gl_REPLACE_OPEN
+#      ;;
+#    *)
+#      dnl open("foo/") should not create a file when the file name has a
+File: ./m4/openat.m4
+Hash: 1267346fb934ac50ef7887759e67e0545b095eb3e6566be665648aff87044f82
+Copyright: 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:
+## serial 21
+## See if we need to use our replacement for Solaris' openat et al functions.
+#
+#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.
+#
+## Written by Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_OPENAT],
+#[
+#  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])
+#  GNULIB_OPENAT=1
+File: ./m4/openmp.m4
+Hash: a545c428a801683ce74ede4d47c7cbeb6744eec734c6b68eec57751db85caf3b
+Copyright: 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:
+## openmp.m4 serial 7
+#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 This file can be removed once we assume autoconf >= 2.62.
+#
+#dnl Expand to nothing in autoconf >= 2.62. m4_copy has a different
+#dnl semantic in autoconf > 2.63.
+#m4_ifdef([AC_OPENMP], [], [
+#
+## _AC_LANG_OPENMP
+## ---------------
+## Expands to some language dependent source code for testing the presence of
+File: ./m4/pagealign_alloc.m4
+Hash: 3f2dd3a771fa6b3fa816d2a6ef721ac63b3cd5a057cac1163026788956369502
+Copyright: 2005, 2006, 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:
+##serial 5
+#dnl Copyright (C) 2005, 2006, 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.
+#
+#AC_DEFUN([gl_PAGEALIGN_ALLOC],
+#[
+#  dnl Persuade glibc <sys/mman.h> to define MAP_ANONYMOUS.
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_LIBOBJ([pagealign_alloc])
+#  gl_PREREQ_PAGEALIGN_ALLOC
+#])
+File: ./m4/pathmax.m4
+Hash: 4a5873ef823f40afa9b33adebbe5392c0fc1d30d76eba4b657430e5f02ec0ece
+Copyright: 2002, 2003, 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:
+## pathmax.m4 serial 8
+#dnl Copyright (C) 2002, 2003, 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.
+#
+#AC_DEFUN([gl_PATHMAX],
+#[
+#  dnl Prerequisites of lib/pathmax.h.
+#  AC_CHECK_FUNCS_ONCE([pathconf])
+#  AC_CHECK_HEADERS_ONCE([sys/param.h])
+#])
+File: ./m4/perl.m4
+Hash: eaec6e8145dda32d044eb5468e58bf0e13df68f863a2acc0cd81caf4731d3231
+Copyright: 1998-2001, 2003-2004, 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:
+## serial 9
+#
+#dnl From Jim Meyering.
+#dnl Find a new-enough version of Perl.
+#
+## Copyright (C) 1998-2001, 2003-2004, 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.
+#
+#AC_DEFUN([gl_PERL],
+#[
+#  dnl FIXME: don't hard-code 5.005
+#  AC_MSG_CHECKING([for perl5.005 or newer])
+File: ./m4/perror.m4
+Hash: 6171e44ca4ed0431a2f8f57591ef3a383767b93b66f002363bd6a9099673b0b9
+Copyright: 2008 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:
+## perror.m4 serial 1
+#dnl Copyright (C) 2008 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_PERROR],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([gl_HEADER_ERRNO_H])
+#  if test -n "$ERRNO_H"; then
+#    dnl The system's perror() cannot know about the new errno values we add
+#    dnl to <errno.h>. Replace it.
+#    REPLACE_PERROR=1
+#    AC_LIBOBJ([perror])
+File: ./m4/physmem.m4
+Hash: bb350fe56d68536870397663b7824edd4b945d8ca3696c879c0c4ba53dc95bdf
+Copyright: 2002-2003, 2005-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:
+## physmem.m4 serial 9
+#dnl Copyright (C) 2002-2003, 2005-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.
+#
+## Check for the external symbol, _system_configuration,
+## a struct with member `physmem'.
+#AC_DEFUN([gl_SYS__SYSTEM_CONFIGURATION],
+#  [AC_CACHE_CHECK([for external symbol _system_configuration],
+#                gl_cv_var__system_configuration,
+#    [AC_LINK_IFELSE([AC_LANG_PROGRAM(
+#                    [[#include <sys/systemcfg.h>
+#                    ]],
+#                    [[double x = _system_configuration.physmem;
+File: ./m4/pipe.m4
+Hash: 7ec8856c90f4355e601693e33d8b18a4a41691fa9c4fa43d39f81766ccac21a4
+Copyright: 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:
+## pipe.m4 serial 4
+#dnl Copyright (C) 2004, 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_PIPE],
+#[
+#  dnl Prerequisites of lib/pipe.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_TYPE_MODE_T])
+#])
+File: ./m4/pipe2.m4
+Hash: f3be301c98df31830acfab4197dbc2dc8f6e0cb418d9d733192622f22c101c08
+Copyright: 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:
+## pipe2.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_PIPE2],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare pipe2().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([pipe2])
+#  if test $ac_cv_func_pipe2 != yes; then
+File: ./m4/pmccabe2html.m4
+Hash: d45dc024d6753f4004ddaf9f6d235159c452d9b7d7c57432207d03d0d9c5e93e
+Copyright: 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:
+## pmccabe2html.m4 serial 2
+#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.
+#
+#dnl From Simon Josefsson
+#
+## Usage: gl_PMCCABE2HTML([]).
+#AC_DEFUN([gl_PMCCABE2HTML],
+#[
+#  AC_REQUIRE([AC_PROG_AWK])
+#  AC_PATH_PROG([PMCCABE], [pmccabe], [false])
+#])
+File: ./m4/po.m4
+Hash: ca8c03e98db7b6d5561401741d13196032accefca210b2a7526f814ec686348e
+Copyright: 1995-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:
+## po.m4 serial 17 (gettext-0.18)
+#dnl Copyright (C) 1995-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
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/poll.m4
+Hash: 629b8155ef9034734706a637ca9b60025a6c7444057a99b02f7635b34b886f14
+Copyright: 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 8
+#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/popen.m4
+Hash: b8ce7c048df6b2fc3a6f11ed7eabff8c2dd0bf8009bb134de915c68c330baa80
+Copyright: 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:
+## popen.m4 serial 1
+#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_POPEN],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CACHE_CHECK([whether popen works with closed stdin],
+#    [gl_cv_func_popen_works],
+#    [
+#      AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
+#]], [FILE *child;
+#     fclose (stdin);
+File: ./m4/posix-shell.m4
+Hash: cce92ab970bd18d6bc66e86dc66f01a7bc16b77a2c1543222fee39cbe9f902ae
+Copyright: 2007-2008 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:
+## Find a POSIX-conforming shell.
+#
+## Copyright (C) 2007-2008 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.
+#
+## If a POSIX-conforming shell can be found, set POSIX_SHELL and
+## PREFERABLY_POSIX_SHELL to it.  If not, set POSIX_SHELL to the
+## empty string and PREFERABLY_POSIX_SHELL to '/bin/sh'.
+#
+#AC_DEFUN([gl_POSIX_SHELL],
+File: ./m4/posix_spawn.m4
+Hash: 4ccf3aca29a25f057325f00cb8cab9ffb7f4a3503475529bf10ad4391d8673a2
+Copyright: 2008 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:
+## posix_spawn.m4 serial 4
+#dnl Copyright (C) 2008 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 Tests whether the entire posix_spawn facility is available.
+#AC_DEFUN([gl_POSIX_SPAWN],
+#[
+#  AC_REQUIRE([gl_POSIX_SPAWN_BODY])
+#])
+#
+#AC_DEFUN([gl_POSIX_SPAWN_BODY],
+#[
+#  AC_REQUIRE([gl_SPAWN_H_DEFAULTS])
+File: ./m4/posixtm.m4
+Hash: 1b08ede3cabafa63d4dbcfce84463f53cb28d1fbf6d0b644a548ef4b6a60c1f5
+Copyright: 2002-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:
+## posixtm.m4 serial 7
+#dnl Copyright (C) 2002-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_POSIXTM],
+#[
+#  AC_LIBOBJ([posixtm])
+#
+#  dnl No prerequisites of lib/posixtm.c.
+#])
+File: ./m4/posixver.m4
+Hash: 27aa6d893cf20144880953b6b445f87561cdb0e31bc9b60cb030a6ec5accd3e5
+Copyright: 2002-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:
+## posixver.m4 serial 10
+#dnl Copyright (C) 2002-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_POSIXVER],
+#[
+#  AC_LIBOBJ([posixver])
+#
+#  AC_REQUIRE([gl_DEFAULT_POSIX2_VERSION])
+#])
+#
+## Set the default level of POSIX conformance at configure-time.
+## Build with `./configure DEFAULT_POSIX2_VERSION=199209 ...' to
+File: ./m4/printf-frexp.m4
+Hash: c738950347dfbc774896c9b0ef0160a9d16a50ec5b9e4b29c7afe19b8c70b609
+Copyright: 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:
+## printf-frexp.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.
+#
+#dnl Check how to define printf_frexp() without linking with libm.
+#
+#AC_DEFUN([gl_FUNC_PRINTF_FREXP],
+#[
+#  AC_CACHE_CHECK([whether frexp can be used without linking with libm],
+#    [gl_cv_func_frexp_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   double x;
+File: ./m4/printf-frexpl.m4
+Hash: a493cf44285f516390a2b9eb2ad1cc36c11f71093eb74e7c3e8d5ca2dd14fcd2
+Copyright: 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:
+## printf-frexpl.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.
+#
+#dnl Check how to define printf_frexpl() without linking with libm.
+#
+#AC_DEFUN([gl_FUNC_PRINTF_FREXPL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Subset of gl_FUNC_FREXPL_NO_LIBM.
+#  AC_CACHE_CHECK([whether frexpl can be used without linking with libm],
+#    [gl_cv_func_frexpl_no_libm],
+#    [
+File: ./m4/printf-posix-rpl.m4
+Hash: f4213c12c22486c51e995cbc0a9f55e9dd1c733fac30cb191d33ae57ab1d2ace
+Copyright: 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:
+## printf-posix-rpl.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_FUNC_PRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_FUNC_VFPRINTF_POSIX])
+#  if test $gl_cv_func_vfprintf_posix = no; then
+#    gl_REPLACE_PRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_PRINTF],
+File: ./m4/printf-posix.m4
+Hash: 4eb5f8f07750e884b5f4220c2b95cda187b6cd81bde447aeb413d684c514d5b2
+Copyright: 2003, 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:
+## printf-posix.m4 serial 5 (gettext-0.18)
+#dnl Copyright (C) 2003, 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 Bruno Haible.
+#dnl Test whether the printf() function supports POSIX/XSI format strings with
+#dnl positions.
+#
+#AC_DEFUN([gt_PRINTF_POSIX],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings],
+#    gt_cv_func_printf_posix,
+File: ./m4/printf.m4
+Hash: 4fca85cb7811468dc8f84a7799c133cda593ab144a2c0889378f3795a95ddbb0
+Copyright: 2003, 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:
+## printf.m4 serial 33
+#dnl Copyright (C) 2003, 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 Test whether the *printf family of functions supports the 'j', 'z', 't',
+#dnl 'L' size specifiers. (ISO C99, POSIX:2001)
+#dnl Result is gl_cv_func_printf_sizes_c99.
+#
+#AC_DEFUN([gl_PRINTF_SIZES_C99],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([gl_AC_HEADER_STDINT_H])
+#  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
+File: ./m4/priv-set.m4
+Hash: 9a5807b3867d86d02784078b14f20e8ecec79dc64ad187bab11bca20e19faf9d
+Copyright: 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:
+## serial 6
+#
+## 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 David Bartley.
+#
+#AC_DEFUN([gl_PRIV_SET],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_CHECK_FUNCS([getppriv])
+#])
+File: ./m4/progtest.m4
+Hash: 09334de09d3e23a27f655f7a3100e19ef96683339bad9621defeef669cf53b22
+Copyright: 1996-2003, 2005, 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:
+## progtest.m4 serial 6 (gettext-0.18)
+#dnl Copyright (C) 1996-2003, 2005, 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
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+File: ./m4/pthread.m4
+Hash: 265b8582edae0ecc5f191cf2467aa5ed8c46e146649c4d56574377f70eeaf78e
+Copyright: 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:
+## pthread.m4
+#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_PTHREAD_CHECK],
+#  [AC_CHECK_HEADERS_ONCE([pthread.h])
+#
+#   LIB_PTHREAD=
+#   PTHREAD_H=
+#   if test "$ac_cv_header_pthread_h" = yes; then
+#     gl_saved_libs=$LIBS
+#     AC_SEARCH_LIBS([pthread_create], [pthread],
+#       [if test "$ac_cv_search_pthread_create" != "none required"; then
+File: ./m4/putenv.m4
+Hash: cfd04c6acec3664269e09cc4df394fe9867d342ab357dc89253e1d39a1e68dde
+Copyright: 2002-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:
+## putenv.m4 serial 16
+#dnl Copyright (C) 2002-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 Jim Meyering.
+#dnl
+#dnl Check whether putenv ("FOO") removes FOO from the environment.
+#dnl The putenv in libc on at least SunOS 4.1.4 does *not* do that.
+#
+#AC_DEFUN([gl_FUNC_PUTENV],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CACHE_CHECK([for putenv compatible with GNU and SVID],
+File: ./m4/quote.m4
+Hash: 7ffb907d173b896d2a36a8e52aa4b8ecf251434ab83fc96696dbbae5e504f319
+Copyright: 2002, 2003, 2005, 2006 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:
+## quote.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_QUOTE],
+#[
+#  AC_LIBOBJ([quote])
+#
+#  dnl Prerequisites of lib/quote.c.
+#  dnl (none)
+#])
+File: ./m4/quotearg.m4
+Hash: 854a2ee3e971d89ce829e16d546d384896d9e30e0d56dc00566b5258a417c5e9
+Copyright: 2002, 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:
+## quotearg.m4 serial 8
+#dnl Copyright (C) 2002, 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_QUOTEARG],
+#[
+#  AC_LIBOBJ([quotearg])
+#])
+File: ./m4/random_r.m4
+Hash: 939838424d3346e2501950202577efffce7afa68ddebb50685b2e4fed9cd5248
+Copyright: 2008 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:
+## serial 1
+#dnl Copyright (C) 2008 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_RANDOM_R],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CHECK_FUNCS([random_r])
+#  if test $ac_cv_func_random_r = no; then
+#    HAVE_RANDOM_R=0
+#    AC_LIBOBJ([random_r])
+#    gl_PREREQ_RANDOM_R
+#  fi
+File: ./m4/rawmemchr.m4
+Hash: 7024edb1193d19e0b7cd589e12a26d7f04496a74c0fd6af161959ff04393e450
+Copyright: 2003, 2007, 2008 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:
+## rawmemchr.m4 serial 1
+#dnl Copyright (C) 2003, 2007, 2008 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_RAWMEMCHR],
+#[
+#  dnl Persuade glibc <string.h> to declare rawmemchr().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([rawmemchr])
+#  if test $ac_cv_func_rawmemchr = no; then
+#    HAVE_RAWMEMCHR=0
+File: ./m4/read-file.m4
+Hash: 701de727d98bbec795fb137cbd0dda7bce40c10b48b4b639b9b3234236cc1c2a
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+## read-file.m4 serial 2
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_READ_FILE],
+#[
+#  AC_LIBOBJ([read-file])
+#  gl_PREREQ_READ_FILE
+#])
+#
+## Prerequisites of lib/read-file.c.
+#AC_DEFUN([gl_PREREQ_READ_FILE], [:])
+File: ./m4/readline.m4
+Hash: 306d4bdcf575f32b920d548041595f6a25fb4dccda136654ae1fed59747c3f13
+Copyright: 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 6
+#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/readlink.m4
+Hash: 79b1927a8bcf23b28a5cc28478dc3d6f950a99d190e08d2905f9a6f75f685c02
+Copyright: 2003, 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:
+## readlink.m4 serial 5
+#dnl Copyright (C) 2003, 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_READLINK],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([readlink])
+#  if test $ac_cv_func_readlink = no; then
+#    HAVE_READLINK=0
+#    AC_LIBOBJ([readlink])
+#    gl_PREREQ_READLINK
+#  fi
+File: ./m4/readtokens.m4
+Hash: 6acb946573cfb59d9fd9e5abe494f8fbe2e82d0ee8aa14241255eeb9e695bbf6
+Copyright: 2002, 2003, 2005, 2006 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:
+## readtokens.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_READTOKENS],
+#[
+#  AC_LIBOBJ([readtokens])
+#
+#  dnl Prerequisites of lib/readtokens.c.
+#  :
+#])
+File: ./m4/readutmp.m4
+Hash: 13e39ae48466c9d6aa29e3b518add10485fdb50c74bedfc98ae48e463dd6c0ae
+Copyright: 2002-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:
+## readutmp.m4 serial 16
+#dnl Copyright (C) 2002-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_READUTMP],
+#[
+#  dnl Persuade utmpx.h to declare utmpxname
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_HEADERS_ONCE([utmp.h utmpx.h])
+#  if test $ac_cv_header_utmp_h = yes || test $ac_cv_header_utmpx_h = yes; then
+#    AC_LIBOBJ([readutmp])
+File: ./m4/realloc.m4
+Hash: 3203f9e4584c814b1a0aba0d18d5bb7d602ddbc2180758ca81a03dcdcf06b8df
+Copyright: 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:
+## realloc.m4 serial 9
+#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.
+#
+## gl_FUNC_REALLOC_POSIX
+## ---------------------
+## Test whether 'realloc' is POSIX compliant (sets errno to ENOMEM when it
+## fails), and replace realloc if it is not.
+#AC_DEFUN([gl_FUNC_REALLOC_POSIX],
+#[
+#  AC_REQUIRE([gl_CHECK_MALLOC_POSIX])
+#  if test $gl_cv_func_malloc_posix = yes; then
+#    HAVE_REALLOC_POSIX=1
+File: ./m4/regex.m4
+Hash: 50d725ee6bfae6e6879133200a319aa551c76ee42b59bb3e5250356750508c4f
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 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:
+## serial 54
+#
+## Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+## 2006, 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.
+#
+#dnl Initially derived from code in GNU grep.
+#dnl Mostly written by Jim Meyering.
+#
+#AC_PREREQ([2.50])
+#
+#AC_DEFUN([gl_REGEX],
+File: ./m4/relocatable-lib.m4
+Hash: 6c4a390de69c7b321b900f2958baa712e3add7837b874bebf5bcd13345311e3b
+Copyright: 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:
+## relocatable-lib.m4 serial 4
+#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.
+#
+#dnl From Bruno Haible.
+#
+#dnl Support for relocatable libraries.
+#AC_DEFUN([gl_RELOCATABLE_LIBRARY],
+#[
+#  AC_REQUIRE([gl_RELOCATABLE_LIBRARY_BODY])
+#  if test $RELOCATABLE = yes; then
+#    AC_LIBOBJ([relocatable])
+#  fi
+File: ./m4/relocatable.m4
+Hash: 7904ef75bd84bfbb557af2cf86deab67f2dcbf7ea08c90ab00c96baf2df2d70c
+Copyright: 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:
+## relocatable.m4 serial 14
+#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.
+#
+#dnl From Bruno Haible.
+#
+#dnl gl_RELOCATABLE([RELOCWRAPPER-DIR])
+#dnl ----------------------------------------------------------
+#dnl Support for relocatable programs.
+#dnl Supply RELOCWRAPPER-DIR as the directory where relocwrapper.c may be found.
+#AC_DEFUN([gl_RELOCATABLE],
+#[
+#  AC_REQUIRE([gl_RELOCATABLE_BODY])
+File: ./m4/rename-dest-slash.m4
+Hash: 1030b715fefa3094ee7fcbf64ce0706064a84983eed1b4b60ee7ed860552d258
+Copyright: 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:
+## serial 4
+#
+## Copyright (C) 2006, 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.
+#
+## Derived from rename.m4.
+#
+## A rename wrapper to make tools like mv -- that would normally
+## rely on the underlying rename syscall -- work more consistently.
+#
+#AC_DEFUN([gl_FUNC_RENAME_TRAILING_DEST_SLASH],
+#[
+# AC_CACHE_CHECK([whether rename is broken with respect to destination slashes],
+File: ./m4/rename.m4
+Hash: 3727e61e57c8da8fe778f71d8a8f9b0695955b2bd98f13525e02cafbfe02b528
+Copyright: 2001, 2003, 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:
+## serial 15
+#
+## Copyright (C) 2001, 2003, 2005, 2006, 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.
+#
+#dnl From Volker Borchert.
+#dnl Determine whether rename works for source file names with a trailing slash.
+#dnl The rename from SunOS 4.1.1_U1 doesn't.
+#dnl
+#dnl If it doesn't, then define RENAME_TRAILING_SLASH_BUG and arrange
+#dnl to compile the wrapper function.
+#dnl
+File: ./m4/rijndael.m4
+Hash: d469a617f466ee153eb791bc1baf7332f9496bc003ddfbf9588ec685c45cf79f
+Copyright: 2005, 2006 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:
+## rijndael.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_RIJNDAEL],
+#[
+#  AC_LIBOBJ([rijndael-alg-fst])
+#  AC_LIBOBJ([rijndael-api-fst])
+#])
+File: ./m4/rmdir-errno.m4
+Hash: 82f75f1f04ed076254ed8791efc6e3913cb2ffb9bda1cdd17db04758b5ad50b9
+Copyright: 2000, 2001, 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:
+## serial 10
+#
+## Copyright (C) 2000, 2001, 2005, 2006, 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.
+#
+## When rmdir fails because the specified directory is not empty, it sets
+## errno to some value, usually ENOTEMPTY.  However, on some AIX systems,
+## ENOTEMPTY is mistakenly defined to be EEXIST.  To work around this, and
+## in general, to avoid depending on the use of any particular symbol, this
+## test runs a test to determine the actual numeric value.
+#AC_DEFUN([gl_FUNC_RMDIR_NOTEMPTY],
+#[dnl
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+File: ./m4/rmdir.m4
+Hash: 9f146503d645bcd65330d3382d22de8a0a4087be948ff0708262576c170266eb
+Copyright: 2002, 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:
+## rmdir.m4 serial 4
+#dnl Copyright (C) 2002, 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_RMDIR],
+#[
+#  AC_REPLACE_FUNCS([rmdir])
+#])
+File: ./m4/round.m4
+Hash: 9ed0939cc0bc62c08c7caaeb3ba6a8ae4966dec6012a7e5c1f8456f7bd7f284f
+Copyright: 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:
+## round.m4 serial 5
+#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.
+#
+#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: 728510381d8789794d1603525bf92e099b51221002637804fe176d177d5cb5ad
+Copyright: 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 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_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/roundl.m4
+Hash: b7f0e4329463736e5220c0e399eab82daa9435fd83c530b0d2f6b136d11e0869
+Copyright: 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:
+## roundl.m4 serial 5
+#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_ROUNDL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare roundl().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_DECLS([roundl], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_roundl" = yes; then
+#    gl_CHECK_MATH_LIB([ROUNDL_LIBM], [x = roundl (x);])
+#  fi
+File: ./m4/rpmatch.m4
+Hash: bdab7870b8c20ab0ea4e40b85ddc77ab1647f1f137f9c7fc0a7647cd5e46ffda
+Copyright: 2002-2003, 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:
+## rpmatch.m4 serial 9
+#dnl Copyright (C) 2002-2003, 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_RPMATCH],
+#[
+#  dnl Persuade glibc <stdlib.h> to declare rpmatch().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([rpmatch])
+#  if test $ac_cv_func_rpmatch = no; then
+#    HAVE_RPMATCH=0
+File: ./m4/safe-alloc.m4
+Hash: 413010db9362f28824c713f0f47b27ef75e4753f03a76613e49d8202ddd53a86
+Copyright: 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:
+## safe-alloc.m4 serial 1
+#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_SAFE_ALLOC],
+#[
+#  AC_LIBOBJ([safe-alloc])
+#])
+File: ./m4/safe-read.m4
+Hash: 476dd0e86a34ed7381cdbbea6186a965785622ace99ab7703e9be61e4019ecb1
+Copyright: 2002, 2003, 2005, 2006 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:
+## safe-read.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_SAFE_READ],
+#[
+#  AC_LIBOBJ([safe-read])
+#
+#  gl_PREREQ_SAFE_READ
+#])
+#
+## Prerequisites of lib/safe-read.c.
+#AC_DEFUN([gl_PREREQ_SAFE_READ],
+File: ./m4/safe-write.m4
+Hash: 28152483a0fa11421395beab43c19554eab15267add044139559fcd463b47d34
+Copyright: 2002, 2005, 2006 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:
+## safe-write.m4 serial 3
+#dnl Copyright (C) 2002, 2005, 2006 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_SAFE_WRITE],
+#[
+#  AC_LIBOBJ([safe-write])
+#
+#  gl_PREREQ_SAFE_WRITE
+#])
+#
+## Prerequisites of lib/safe-write.c.
+#AC_DEFUN([gl_PREREQ_SAFE_WRITE],
+File: ./m4/same.m4
+Hash: fe78499501b2c0deee1cef23c7a6de78dea2f97c7c006c4a82cfe34634febdec
+Copyright: 2002, 2003, 2005, 2006 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:
+##serial 8
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_SAME],
+#[
+#  AC_LIBOBJ([same])
+#
+#  dnl Prerequisites of lib/same.c.
+#  AC_REQUIRE([AC_SYS_LONG_FILE_NAMES])
+#  AC_CHECK_FUNCS_ONCE([pathconf])
+#])
+File: ./m4/save-cwd.m4
+Hash: 2b070560df3e3154c5dbad3693e1c3b16f9b87cd0d77bcf1a76496e6dcd396f7
+Copyright: 2002-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:
+## serial 9
+#dnl Copyright (C) 2002-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_SAVE_CWD],
+#[
+#  AC_LIBOBJ([save-cwd])
+#  dnl Prerequisites for lib/save-cwd.c.
+#  AC_CHECK_FUNCS_ONCE([fchdir])
+#])
+File: ./m4/savedir.m4
+Hash: 35d4b396e58ef3251d4ca921edb871afd2bbd4da5385903c2a08804ebdfe27a5
+Copyright: 2002, 2003, 2005, 2006 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:
+## savedir.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_SAVEDIR],
+#[
+#  AC_LIBOBJ([savedir])
+#])
+File: ./m4/savewd.m4
+Hash: a7f3517138f4540f6fd6729e867b9b3aea6e5816996ecd19235dc669b62dcb10
+Copyright: 2004 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:
+## Save and restore the working directory, possibly using a child process.
+#
+#dnl Copyright (C) 2004 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SAVEWD],
+#  [AC_REQUIRE([AC_C_INLINE])])
+File: ./m4/scandir.m4
+Hash: f62dae469db2be2c5aa610e2882be87dbfdcc84cadace38211e7bc734819bad1
+Copyright: 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:
+## scandir.m4 serial 1
+#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_SCANDIR],
+#[
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#
+#  dnl Persuade glibc and Solaris <dirent.h> to declare scandir().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS([scandir])
+#  if test $ac_cv_func_scandir = no; then
+File: ./m4/sched_h.m4
+Hash: 5626e514b7b5c64bd9f1bdf4fa1c37bcbff1286524c62153db60ae3ecd91d7ec
+Copyright: 2008 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:
+## sched_h.m4 serial 2
+#dnl Copyright (C) 2008 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 Bruno Haible.
+#
+#AC_DEFUN([gl_SCHED_H],
+#[
+#  AC_COMPILE_IFELSE(
+#    [AC_LANG_PROGRAM([[
+#       #include <sched.h>
+#       struct sched_param a;
+#       int b[] = { SCHED_FIFO, SCHED_RR, SCHED_OTHER };
+File: ./m4/search_h.m4
+Hash: d6cd8150036593b84d4c4d12581f7f39c8a6978ba7cc8116c5d691c6ff7fc60e
+Copyright: 2007-2008 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:
+## search_h.m4 serial 3
+#dnl Copyright (C) 2007-2008 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_SEARCH_H],
+#[
+#  AC_REQUIRE([gl_SEARCH_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([search.h])
+#  if test $ac_cv_header_search_h = yes; then
+#    HAVE_SEARCH_H=1
+#  else
+#    HAVE_SEARCH_H=0
+#  fi
+File: ./m4/select.m4
+Hash: c0772bb6d91794c1312ebd0f3fb6f90dff9bcae093320dc8c253f548913bf2ce
+Copyright: 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 1
+#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/selinux-context-h.m4
+Hash: f022e113eadd22af7edced97b3f1b6289856b6ba35c8da13736665221910d34f
+Copyright: 2006, 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:
+## serial 1   -*- Autoconf -*-
+## Copyright (C) 2006, 2007 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.
+#
+## From Jim Meyering
+## Provide <selinux/context.h>, if necessary.
+#
+#AC_DEFUN([gl_HEADERS_SELINUX_CONTEXT_H],
+#[
+#  AC_CHECK_HEADERS([selinux/context.h],
+#                 [SELINUX_CONTEXT_H=],
+#                 [SELINUX_CONTEXT_H=selinux/context.h])
+#  AC_SUBST([SELINUX_CONTEXT_H])
+File: ./m4/selinux-selinux-h.m4
+Hash: 63a4551cf14a0eea214ecbf472ef61294bad8e3c23d81decf5b981df46db633a
+Copyright: 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:
+## serial 3   -*- Autoconf -*-
+## Copyright (C) 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.
+#
+## From Jim Meyering
+## Provide <selinux/selinux.h>, if necessary.
+#
+#AC_DEFUN([gl_HEADERS_SELINUX_SELINUX_H],
+#[
+#  AC_REQUIRE([gl_LIBSELINUX])
+#  AC_CHECK_HEADERS([selinux/selinux.h],
+#                 [SELINUX_SELINUX_H=],
+#                 [SELINUX_SELINUX_H=selinux/selinux.h])
+File: ./m4/servent.m4
+Hash: d8abbdc489bcd9264fcadfb8b7dee9be3dc239d512e7796a83ddd48f85286b5b
+Copyright: 2008 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:
+## servent.m4 serial 1
+#dnl Copyright (C) 2008 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_SERVENT],
+#[
+#  dnl Where are getservent(), setservent(), endservent(), getservbyname(),
+#  dnl getservbyport() defined?
+#  dnl Where are getprotoent(), setprotoent(), endprotoent(), getprotobyname(),
+#  dnl getprotobynumber() defined?
+#  dnl - On Solaris, they are in libsocket. Ignore libxnet.
+#  dnl - On Haiku, they are in libnetwork.
+#  dnl - On BeOS, they are in libnet.
+File: ./m4/setenv.m4
+Hash: 4b641ccd52cc1b86e45020d008a003b15aef914961b26426cf25f5c5ba714ad2
+Copyright: 2001-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:
+## setenv.m4 serial 11
+#dnl Copyright (C) 2001-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.
+#
+#AC_DEFUN([gl_FUNC_SETENV],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([setenv])
+#  if test $ac_cv_func_setenv = no; then
+#    HAVE_SETENV=0
+#    AC_LIBOBJ([setenv])
+#    gl_PREREQ_SETENV
+#  fi
+File: ./m4/settime.m4
+Hash: 363d17c5d1dcf71322d552fde8d642ac641613cf211019c5b6d5df8bf176c37e
+Copyright: 2002, 2004, 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:
+## settime.m4 serial 6
+#dnl Copyright (C) 2002, 2004, 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.
+#
+#AC_DEFUN([gl_SETTIME],
+#[
+#  AC_LIBOBJ([settime])
+#
+#  dnl Prerequisites of lib/settime.c.
+#  AC_REQUIRE([gl_CLOCK_TIME])
+#  AC_REQUIRE([gl_TIMESPEC])
+#  AC_CHECK_FUNCS_ONCE([settimeofday stime])
+#])
+File: ./m4/sha1.m4
+Hash: b0b8e653e77e441a1327e5cc5eedc4d33e13ce74887bfb2299a070224b9d2310
+Copyright: 2002, 2003, 2004, 2005, 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:
+## sha1.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 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.
+#
+#AC_DEFUN([gl_SHA1],
+#[
+#  AC_LIBOBJ([sha1])
+#
+#  dnl Prerequisites of lib/sha1.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#  :
+#])
+File: ./m4/sha256.m4
+Hash: adc2fe832d2a4759e55c651b42169d33f24c32053f7515748e255052dd2d3b90
+Copyright: 2005, 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:
+## sha256.m4 serial 4
+#dnl Copyright (C) 2005, 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_SHA256],
+#[
+#  AC_LIBOBJ([sha256])
+#
+#  dnl Prerequisites of lib/sha256.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+File: ./m4/sha512.m4
+Hash: 6a041f1d10fb35ab195140e844574a07dd5d6053918f4fd60ab8be21f949f069
+Copyright: 2005, 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:
+## sha512.m4 serial 5
+#dnl Copyright (C) 2005, 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.
+#
+#AC_DEFUN([gl_SHA512],
+#[
+#  AC_LIBOBJ([sha512])
+#
+#  dnl Prerequisites of lib/sha512.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+File: ./m4/sig2str.m4
+Hash: bdb3da52f346182e43b31c11fd3c962c84680a5371a57343ce224811e860387e
+Copyright: 2002, 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:
+## serial 6
+#dnl Copyright (C) 2002, 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.
+#
+#AC_DEFUN([gl_FUNC_SIG2STR],
+#[
+#
+#  AC_REPLACE_FUNCS([sig2str])
+#  if test $ac_cv_func_sig2str = no; then
+#    gl_PREREQ_SIG2STR
+#  fi
+#])
+File: ./m4/sig_atomic_t.m4
+Hash: 8740a92b3f85af3d8178fdeffb26883a7a2e43709a560f117045327cee0005ad
+Copyright: 2003, 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:
+## sig_atomic_t.m4 serial 2
+#dnl Copyright (C) 2003, 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([gt_TYPE_SIG_ATOMIC_T],
+#[
+#  AC_CHECK_TYPES([sig_atomic_t], ,
+#    [AC_DEFINE([sig_atomic_t], [int],
+#       [Define as an integer type suitable for memory locations that can be
+#        accessed atomically even in the presence of asynchnonous signals.])],
+#    [#include <signal.h>])
+#])
+File: ./m4/sigaction.m4
+Hash: 942bae0f7e59cbdbd839bdd114df80a180753adfe2265673852caba753983e67
+Copyright: 2008 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:
+## sigaction.m4 serial 5
+#dnl Copyright (C) 2008 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.
+#
+## Determine if sigaction interface is present.
+#AC_DEFUN([gl_SIGACTION],
+#[
+#  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([sigaction])
+#  if test $ac_cv_func_sigaction = yes; then
+#    AC_CHECK_MEMBERS([struct sigaction.sa_sigaction], , ,
+#                     [[#include <signal.h>]])
+#    if test $ac_cv_member_struct_sigaction_sa_sigaction = no; then
+File: ./m4/signal_h.m4
+Hash: f195a17f93179f7442308dc8f19fca18a62277f9951cff0b47bf9d6282685a15
+Copyright: 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:
+## signal_h.m4 serial 7
+#dnl Copyright (C) 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.
+#
+#AC_DEFUN([gl_SIGNAL_H],
+#[
+#  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([signal.h])
+## AIX declares sig_atomic_t to already include volatile, and C89 compilers
+## then choke on 'volatile sig_atomic_t'.  C99 requires that it compile.
+#  AC_CHECK_TYPE([volatile sig_atomic_t], [],
+#    [HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=0], [[
+##include <signal.h>
+File: ./m4/signalblocking.m4
+Hash: 9675e385710eb500da44e7dc0b7dfeba96ca339daaea8e8a75be21e8b1ca1940
+Copyright: 2001-2002, 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:
+## signalblocking.m4 serial 10
+#dnl Copyright (C) 2001-2002, 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.
+#
+## Determine available signal blocking primitives. Three different APIs exist:
+## 1) POSIX: sigemptyset, sigaddset, sigprocmask
+## 2) SYSV: sighold, sigrelse
+## 3) BSD: sigblock, sigsetmask
+## For simplicity, here we check only for the POSIX signal blocking.
+#AC_DEFUN([gl_SIGNALBLOCKING],
+#[
+#  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
+#  signals_not_posix=
+File: ./m4/signbit.m4
+Hash: 090599e0809b686c818f8870e466ddf1b1e8f85e13da7c88c4ad47433ed45479
+Copyright: 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:
+## signbit.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_SIGNBIT],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  AC_CACHE_CHECK([for signbit macro], [gl_cv_func_signbit],
+#    [
+#      AC_TRY_RUN([
+##include <math.h>
+#/* If signbit is defined as a function, don't use it, since calling it for
+#   'float' or 'long double' arguments would involve conversions.
+File: ./m4/sigpipe.m4
+Hash: 6589a9faf1c563d75e6001b20a2376598e62467f80ac99df43696aabd386d4d0
+Copyright: 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:
+## sigpipe.m4 serial 2
+#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.
+#
+#dnl Tests whether SIGPIPE is provided by <signal.h>.
+#dnl Sets gl_cv_header_signal_h_SIGPIPE.
+#AC_DEFUN([gl_SIGNAL_SIGPIPE],
+#[
+#  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_SIGNAL_SIGPIPE_BODY])
+#])
+File: ./m4/size_max.m4
+Hash: 274e63ac0e607476b00e8fd52ecec9926865a0706eb1c15307249c8beb224094
+Copyright: 2003, 2005-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:
+## size_max.m4 serial 9
+#dnl Copyright (C) 2003, 2005-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 From Bruno Haible.
+#
+#AC_DEFUN([gl_SIZE_MAX],
+#[
+#  AC_CHECK_HEADERS([stdint.h])
+#  dnl First test whether the system already has SIZE_MAX.
+#  AC_CACHE_CHECK([for SIZE_MAX], [gl_cv_size_max], [
+#    gl_cv_size_max=
+#    AC_EGREP_CPP([Found it], [
+File: ./m4/sleep.m4
+Hash: 9ae4e28f795cced506809b2931038bf12f5d14f730ac5db4b564251d78d15ff1
+Copyright: 2007-2008 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:
+## sleep.m4 serial 2
+#dnl Copyright (C) 2007-2008 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_SLEEP],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  dnl We expect to see the declaration of sleep() in a header file.
+#  dnl Older versions of mingw have a sleep() function that is an alias to
+#  dnl _sleep() in MSVCRT. It has a different signature than POSIX sleep():
+#  dnl it takes the number of milliseconds as argument and returns void.
+#  dnl mingw does not declare this function.
+#  AC_CHECK_DECLS([sleep], , , [#include <unistd.h>])
+File: ./m4/snprintf-posix.m4
+Hash: e547253a212edd6b4044615bbc22655e0a4818d8f937f962adfc5e439e1d5301
+Copyright: 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:
+## snprintf-posix.m4 serial 14
+#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_SNPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/snprintf.m4
+Hash: 5f7fbeef790dad54ac03ec944e2a45fda19bfb17da369aa9c2e8f4f4d40d4f0f
+Copyright: 2002-2004, 2007-2008 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:
+## snprintf.m4 serial 5
+#dnl Copyright (C) 2002-2004, 2007-2008 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_SNPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  gl_cv_func_snprintf_usable=no
+#  AC_CHECK_FUNCS([snprintf])
+#  if test $ac_cv_func_snprintf = yes; then
+#    gl_SNPRINTF_SIZE1
+#    case "$gl_cv_func_snprintf_size1" in
+#      *yes)
+File: ./m4/sockets.m4
+Hash: d50a2dfb51a1c8b126cef59648b59553940f8192635e1f111fdd3babb93d74ff
+Copyright: 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 5
+#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: 85dbe7f87a9332ee77a25565add42e2c12aac7e29cdc58cde00ab978b11a42a2
+Copyright: 2005, 2006, 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:
+## socklen.m4 serial 6
+#dnl Copyright (C) 2005, 2006, 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 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: 1b8177a55958f8bf0898f45528ba4c08eddc3deac75871ca1a9a70fd98ce16fc
+Copyright: 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 6
+#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/spawn_h.m4
+Hash: 9b595c5f8fccef298fabfb159fe9b0cd7c2965a2388f8738ecc8dae8c87bb194
+Copyright: 2008 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:
+## spawn_h.m4 serial 1
+#dnl Copyright (C) 2008 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 Bruno Haible.
+#
+#AC_DEFUN([gl_SPAWN_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_SPAWN_H_DEFAULTS])
+#
+#  gl_CHECK_NEXT_HEADERS([spawn.h])
+File: ./m4/sprintf-posix.m4
+Hash: 965f8b08288f9f0122559dd27581c39a9cd3182f9976f0b0fa1a7639e6c07c60
+Copyright: 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:
+## sprintf-posix.m4 serial 12
+#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_SPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/ssize_t.m4
+Hash: 83b000495759790b16631fd82c8cc8126e7cbabbb484fa2a324fce5abf7030a0
+Copyright: 2001-2003, 2006 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:
+## ssize_t.m4 serial 4 (gettext-0.15)
+#dnl Copyright (C) 2001-2003, 2006 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 Bruno Haible.
+#dnl Test whether ssize_t is defined.
+#
+#AC_DEFUN([gt_TYPE_SSIZE_T],
+#[
+#  AC_CACHE_CHECK([for ssize_t], [gt_cv_ssize_t],
+#    [AC_TRY_COMPILE([#include <sys/types.h>],
+#       [int x = sizeof (ssize_t *) + sizeof (ssize_t);
+#        return !x;],
+File: ./m4/st_dm_mode.m4
+Hash: e4230d99ce739fdfea2b6f9e534426e32367b91d82adb42e215c9ab63582ccb8
+Copyright: 1998, 1999, 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:
+## serial 6
+#
+## Copyright (C) 1998, 1999, 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.
+#
+## Define HAVE_ST_DM_MODE if struct stat has an st_dm_mode member.
+#
+#AC_DEFUN([AC_STRUCT_ST_DM_MODE],
+# [AC_CACHE_CHECK([for st_dm_mode in struct stat], [ac_cv_struct_st_dm_mode],
+#   [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+##include <sys/types.h>
+##include <sys/stat.h>]], [[struct stat s; s.st_dm_mode;]])],
+#     [ac_cv_struct_st_dm_mode=yes],
+File: ./m4/stat-macros.m4
+Hash: 0e0d077f14daca1a98a036b872304dfa730067f1906786f8a64eed1b275c8edf
+Copyright: 2005, 2006 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:
+##serial 3
+#
+## Copyright (C) 2005, 2006 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([gl_STAT_MACROS],
+#[
+#  AC_REQUIRE([AC_HEADER_STAT])
+#])
+File: ./m4/stat-time.m4
+Hash: 6e44781ea55874bf9fd31759924207238aa4a99a01fc2d2cbf09e345c2fede85
+Copyright: 1998-1999, 2001, 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:
+## Checks for stat-related time functions.
+#
+## Copyright (C) 1998-1999, 2001, 2003, 2005-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.
+#
+#dnl From Paul Eggert.
+#
+## st_atim.tv_nsec - Linux, Solaris, Cygwin
+## st_atimespec.tv_nsec - FreeBSD, NetBSD, if ! defined _POSIX_SOURCE
+## st_atimensec - FreeBSD, NetBSD, if defined _POSIX_SOURCE
+## st_atim.st__tim.tv_nsec - UnixWare (at least 2.1.2 through 7.1)
+File: ./m4/stdarg.m4
+Hash: e69d47aadd54239ff949f8ec2bd0cb0436b737ba6663b3c72e2266a01d2a42cf
+Copyright: 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:
+## stdarg.m4 serial 3
+#dnl Copyright (C) 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 From Bruno Haible.
+#dnl Provide a working va_copy in combination with <stdarg.h>.
+#
+#AC_DEFUN([gl_STDARG_H],
+#[
+#  STDARG_H='';                AC_SUBST([STDARG_H])
+#  NEXT_STDARG_H='<stdarg.h>'; AC_SUBST([NEXT_STDARG_H])
+#  AC_MSG_CHECKING([for va_copy])
+#  AC_CACHE_VAL([gl_cv_func_va_copy], [
+File: ./m4/stdbool.m4
+Hash: 43abf0fdf4a37444e2d4e8fd6ec486c9eebe8e90a6e7ae1845d2e499d0a29df1
+Copyright: 2002-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:
+## Check for stdbool.h that conforms to C99.
+#
+#dnl Copyright (C) 2002-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.
+#
+## Prepare for substituting <stdbool.h> if it is not supported.
+#
+#AC_DEFUN([AM_STDBOOL_H],
+#[
+#  AC_REQUIRE([AC_HEADER_STDBOOL])
+#
+#  # Define two additional variables used in the Makefile substitution.
+File: ./m4/stddef_h.m4
+Hash: c70f43db810289c46455f5b2b2b3ecbcb171fa0171d09e73ad2240e1d5bdac60
+Copyright: 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 A placeholder for POSIX 2008 <stddef.h>, for platforms that have issues.
+## stddef_h.m4 serial 1
+#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_STDDEF_H],
+#[
+#  AC_REQUIRE([gl_STDDEF_H_DEFAULTS])
+#  AC_REQUIRE([gt_TYPE_WCHAR_T])
+#  if test $gt_cv_c_wchar_t = no; then
+#    HAVE_WCHAR_T=0
+#    STDDEF_H=stddef.h
+#  fi
+File: ./m4/stdint.m4
+Hash: e9bb030f38c5c54c68cbdc8403016d05da6f6328ff69e4272d77e10820e438b7
+Copyright: 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:
+## stdint.m4 serial 34
+#dnl Copyright (C) 2001-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 Paul Eggert and Bruno Haible.
+#dnl Test whether <stdint.h> is supported or must be substituted.
+#
+#AC_DEFUN([gl_STDINT_H],
+#[
+#  AC_PREREQ([2.59])dnl
+#
+#  dnl Check for long long int and unsigned long long int.
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+File: ./m4/stdint_h.m4
+Hash: d60bbf3881f6e22ed2fb6dfee322f368978721175058446282e77eb42f543ccc
+Copyright: 1997-2004, 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:
+## stdint_h.m4 serial 8
+#dnl Copyright (C) 1997-2004, 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 From Paul Eggert.
+#
+## Define HAVE_STDINT_H_WITH_UINTMAX if <stdint.h> exists,
+## doesn't clash with <sys/types.h>, and declares uintmax_t.
+#
+#AC_DEFUN([gl_AC_HEADER_STDINT_H],
+#[
+#  AC_CACHE_CHECK([for stdint.h], [gl_cv_header_stdint_h],
+#  [AC_TRY_COMPILE(
+File: ./m4/stdio-safer.m4
+Hash: ce00d79eaa9ab3c24483dbf666fdf1af476557c24f8fac41ccd6f1b39980db4d
+Copyright: 2002, 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:
+##serial 11
+#dnl Copyright (C) 2002, 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_FOPEN_SAFER],
+#[
+#  AC_LIBOBJ([fopen-safer])
+#])
+#
+#AC_DEFUN([gl_POPEN_SAFER],
+#[
+#  AC_LIBOBJ([popen-safer])
+#])
+File: ./m4/stdio_h.m4
+Hash: 5279f85ff4aea689d0c384bbb577d873e5214e2b351a7f4aeeae85e8ebb960fe
+Copyright: 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:
+## stdio_h.m4 serial 18
+#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_STDIO_H],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([stdio.h])
+#  dnl No need to create extra modules for these functions. Everyone who uses
+#  dnl <stdio.h> likely needs them.
+#  GNULIB_FPRINTF=1
+#  GNULIB_PRINTF=1
+#  GNULIB_VFPRINTF=1
+File: ./m4/stdlib-safer.m4
+Hash: 9a8abafa8a805182498c9212e370537b3d0964d913d3b7550e7ee8dc02b977d2
+Copyright: 2005, 2006 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:
+## stdlib-safer.m4 serial 2
+#dnl Copyright (C) 2005, 2006 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_STDLIB_SAFER],
+#[
+#  AC_LIBOBJ([mkstemp-safer])
+#])
+File: ./m4/stdlib_h.m4
+Hash: 97c8e01551bb911dd737aa6d57f937fbecc41dacaa9a6bb8086d8292fead4c36
+Copyright: 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:
+## stdlib_h.m4 serial 16
+#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_STDLIB_H],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([stdlib.h])
+#  AC_CHECK_HEADERS([random.h], [], [], [AC_INCLUDES_DEFAULT])
+#  if test $ac_cv_header_random_h = yes; then
+#    HAVE_RANDOM_H=1
+#  else
+#    HAVE_RANDOM_H=0
+File: ./m4/stpcpy.m4
+Hash: 6183753fe8a97fa0b9fdf0b1dbdce611077c78894a88b08aa016a358b26785e8
+Copyright: 2002, 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:
+## stpcpy.m4 serial 7
+#dnl Copyright (C) 2002, 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_STPCPY],
+#[
+#  dnl Persuade glibc <string.h> to declare stpcpy().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The stpcpy() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+File: ./m4/stpncpy.m4
+Hash: aa4c3046b85c5bc93ed41603a5a58dbcbb3281c604047231e2bd9df2deac2fee
+Copyright: 2002-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:
+## stpncpy.m4 serial 10
+#dnl Copyright (C) 2002-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_FUNC_STPNCPY],
+#[
+#  dnl Persuade glibc <string.h> to declare stpncpy().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The stpncpy() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+File: ./m4/strcase.m4
+Hash: fe5c1d6b65e6380dc44d958082105a90e9e4bdda2acd0874069ae5d440ce9b18
+Copyright: 2002, 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:
+## strcase.m4 serial 10
+#dnl Copyright (C) 2002, 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_STRCASE],
+#[
+#  gl_FUNC_STRCASECMP
+#  gl_FUNC_STRNCASECMP
+#])
+#
+#AC_DEFUN([gl_FUNC_STRCASECMP],
+#[
+#  AC_REQUIRE([gl_HEADER_STRINGS_H_DEFAULTS])
+File: ./m4/strcasestr.m4
+Hash: e8fde0ec0800c5eafbe974aec107608e45a0455e252b6989480d50ddd9fecf05
+Copyright: 2005, 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:
+## strcasestr.m4 serial 13
+#dnl Copyright (C) 2005, 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 Check that strcasestr is present and works.
+#AC_DEFUN([gl_FUNC_STRCASESTR_SIMPLE],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#
+#  dnl Persuade glibc <string.h> to declare strcasestr().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_FUNC_MEMCHR])
+File: ./m4/strchrnul.m4
+Hash: b20cc5ae07de6b6cb4f6cce803e713349ec527e29256225c91e80c2f5445cda2
+Copyright: 2003, 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:
+## strchrnul.m4 serial 7
+#dnl Copyright (C) 2003, 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_STRCHRNUL],
+#[
+#  dnl Persuade glibc <string.h> to declare strchrnul().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strchrnul])
+#  if test $ac_cv_func_strchrnul = no; then
+#    HAVE_STRCHRNUL=0
+File: ./m4/strcspn.m4
+Hash: 69120ab7a86a050f7433f63fd1bfa6349dd8b7f10929f902bb3628e90ad587ca
+Copyright: 2002-2003, 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:
+## strcspn.m4 serial 3
+#dnl Copyright (C) 2002-2003, 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_STRCSPN],
+#[
+#  AC_REPLACE_FUNCS([strcspn])
+#  if test $ac_cv_func_strcspn = no; then
+#    gl_PREREQ_STRCSPN
+#  fi
+#])
+#
+## Prerequisites of lib/strcspn.c.
+File: ./m4/strdup.m4
+Hash: fe737b962549dcee9d8390ff44f480c277ccf76b0e643fdfd2e04d06cd4b335e
+Copyright: 2002-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:
+## strdup.m4 serial 11
+#
+#dnl Copyright (C) 2002-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_STRDUP],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strdup])
+#  AC_CHECK_DECLS_ONCE([strdup])
+#  if test $ac_cv_have_decl_strdup = no; then
+#    HAVE_DECL_STRDUP=0
+File: ./m4/strerror.m4
+Hash: 43b8156f92eab0feb512dc43c24fdb2ae1b05f0c0aad8317af6384b9317ae1f8
+Copyright: 2002, 2007-2008 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:
+## strerror.m4 serial 9
+#dnl Copyright (C) 2002, 2007-2008 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_STRERROR],
+#[
+#  AC_REQUIRE([gl_FUNC_STRERROR_SEPARATE])
+#  if test $REPLACE_STRERROR = 1; then
+#    AC_LIBOBJ([strerror])
+#    AC_DEFINE_UNQUOTED([REPLACE_STRERROR], [$REPLACE_STRERROR],
+#      [Define this to 1 if strerror is broken.])
+#  fi
+#])
+File: ./m4/strftime.m4
+Hash: efe49b1ba70db0a0b5b2067df6731e51e24c7b4c899928f18b8b9dc0a3b348e2
+Copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 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:
+## serial 32
+#
+## Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 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 Jim Meyering and Paul Eggert.
+#
+#AC_DEFUN([gl_FUNC_GNU_STRFTIME],
+#[
+#  gl_FUNC_STRFTIME
+#])
+File: ./m4/string_h.m4
+Hash: e6a759b26fd667fc80f888975ad5360aacae9aa17704b9771e43634cef8b706d
+Copyright: 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 8
+#
+## 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/strings_h.m4
+Hash: 9092e61439d73d058d4db2c78b740947b3de19e407de536cc8abb3b33dcbd658
+Copyright: 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:
+## Configure a replacement for <string.h>.
+#
+## Copyright (C) 2007 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([gl_HEADER_STRINGS_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_HEADER_STRINGS_H_BODY])
+#])
+#
+#AC_DEFUN([gl_HEADER_STRINGS_H_BODY],
+File: ./m4/strndup.m4
+Hash: de520713683d189d757c29f5cfdf12e2f063ec1a16abd534c9253233d845c1ea
+Copyright: 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 16
+#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([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_CHECK_DECLS_ONCE([strndup])
+#  if test $ac_cv_have_decl_strndup = no; then
+#    HAVE_DECL_STRNDUP=0
+File: ./m4/strnlen.m4
+Hash: 17c0880897960356780a1d18125984a4de5acffa88fa8f578c732f6a4deb2283
+Copyright: 2002-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:
+## strnlen.m4 serial 10
+#dnl Copyright (C) 2002-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_FUNC_STRNLEN],
+#[
+#  dnl Persuade glibc <string.h> to declare strnlen().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_CHECK_DECLS_ONCE([strnlen])
+#  if test $ac_cv_have_decl_strnlen = no; then
+#    HAVE_DECL_STRNLEN=0
+File: ./m4/strpbrk.m4
+Hash: 3a3a46c86df5272af728492b47a253d0bc90d6c1304a9e6298c370a516ff5c7b
+Copyright: 2002-2003, 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:
+## strpbrk.m4 serial 5
+#dnl Copyright (C) 2002-2003, 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_STRPBRK],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strpbrk])
+#  if test $ac_cv_func_strpbrk = no; then
+#    HAVE_STRPBRK=0
+#    gl_PREREQ_STRPBRK
+#  fi
+#])
+File: ./m4/strptime.m4
+Hash: 36d8ffad63cd866a25244dc178c60c7c2eae106c2b22a5d088209d708e8ba17c
+Copyright: 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:
+## strptime.m4 serial 5
+#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_STRPTIME],
+#[
+#  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_REPLACE_FUNCS([strptime])
+#  AC_REQUIRE([gl_TM_GMTOFF])
+#  if test $ac_cv_func_strptime = yes; then
+#    REPLACE_STRPTIME=0
+#  else
+File: ./m4/strsep.m4
+Hash: 12432bf70d8e7ddcd99132d6a90c074106038ae824dbed54f3e9f276d2a1abf7
+Copyright: 2002, 2003, 2004, 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:
+## strsep.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 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_STRSEP],
+#[
+#  dnl Persuade glibc <string.h> to declare strsep().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The strsep() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+File: ./m4/strsignal.m4
+Hash: b5bde205dfc38b3591ce316cfaa34ccbf70c14b043d4caa380a528317efbcabf
+Copyright: 2008 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:
+## strsignal.m4 serial 3
+#dnl Copyright (C) 2008 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_STRSIGNAL],
+#[
+#  dnl Persuade glibc <string.h> to declare strsignal().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#
+#  AC_CHECK_DECLS_ONCE([strsignal])
+File: ./m4/strstr.m4
+Hash: c2991f687e1ccb40073d14aaf5c7b457490924ae87ddd7b93ad6df00bf1cd5c9
+Copyright: 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:
+## strstr.m4 serial 7
+#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.
+#
+#dnl Check that strstr works.
+#AC_DEFUN([gl_FUNC_STRSTR_SIMPLE],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_MEMCHR])
+#  if test "$gl_cv_func_memchr_works" != yes; then
+#    REPLACE_STRSTR=1
+#    AC_LIBOBJ([strstr])
+#  fi
+File: ./m4/strtod.m4
+Hash: 803101b479ba543a87394c1ff647e72af6a1d42a70ad945e12d60d2fcc154cf6
+Copyright: 2002-2003, 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:
+## strtod.m4 serial 12
+#dnl Copyright (C) 2002-2003, 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_STRTOD],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_FUNC_STRTOD
+#  dnl Note: AC_FUNC_STRTOD does AC_LIBOBJ([strtod]).
+#  if test $ac_cv_func_strtod = no; then
+#    HAVE_STRTOD=0
+#    REPLACE_STRTOD=1
+#    gl_PREREQ_STRTOD
+File: ./m4/strtoimax.m4
+Hash: 040b0f333be709208b820f7cf49bf3a6512b2d99d922e802976249b50b5f694f
+Copyright: 2002, 2003, 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:
+## strtoimax.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 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.
+#
+#AC_DEFUN([gl_FUNC_STRTOIMAX],
+#[
+#  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
+#  AC_REQUIRE([AC_PROG_CPP])
+#  AC_REQUIRE([AC_PROG_EGREP])
+#
+#  AC_CACHE_CHECK([whether <inttypes.h> defines strtoimax as a macro],
+#    gl_cv_func_strtoimax_macro,
+#    [AC_EGREP_CPP([inttypes_h_defines_strtoimax], [#include <inttypes.h>
+File: ./m4/strtok_r.m4
+Hash: 2d55470147f9526bfa3957ea4a72c1bf623ea9380b89265fa31a24746dbe54f5
+Copyright: 2002, 2003, 2004, 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:
+## strtok_r.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 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_STRTOK_R],
+#[
+#  dnl The strtok_r() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#  AC_CHECK_FUNCS([strtok_r])
+#  if test $ac_cv_func_strtok_r = yes; then
+File: ./m4/strtol.m4
+Hash: 1f93c8aa4afa52a6f1c91e6a6ff17106a2e6139db4658524516c8ee31793bf23
+Copyright: 2002, 2003, 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:
+## strtol.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 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_STRTOL],
+#[
+#  AC_REPLACE_FUNCS([strtol])
+#])
+File: ./m4/strtoll.m4
+Hash: d0f856b5cd35656c32054ab66a5084a34e12ca0c10ccd48b50ff50928c6690f9
+Copyright: 2002, 2004, 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:
+## strtoll.m4 serial 6
+#dnl Copyright (C) 2002, 2004, 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.
+#
+#AC_DEFUN([gl_FUNC_STRTOLL],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  dnl We don't need (and can't compile) the replacement strtoll
+#  dnl unless the type 'long long int' exists.
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+#  if test "$ac_cv_type_long_long_int" = yes; then
+#    AC_REPLACE_FUNCS([strtoll])
+#    if test $ac_cv_func_strtoll = no; then
+File: ./m4/strtoul.m4
+Hash: fdf22d9455a3e2577c95316ab584023ae0c534bb7fb53cb935a0bfa05044d5fa
+Copyright: 2002, 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:
+## strtoul.m4 serial 4
+#dnl Copyright (C) 2002, 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_STRTOUL],
+#[
+#  AC_REPLACE_FUNCS([strtoul])
+#])
+File: ./m4/strtoull.m4
+Hash: 39cb14122cb4c6ad802ffe8d4af7ff5bf3ddd2789ae6cd2220d2f74adc772b5c
+Copyright: 2002, 2004, 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:
+## strtoull.m4 serial 6
+#dnl Copyright (C) 2002, 2004, 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.
+#
+#AC_DEFUN([gl_FUNC_STRTOULL],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  dnl We don't need (and can't compile) the replacement strtoull
+#  dnl unless the type 'unsigned long long int' exists.
+#  AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
+#  if test "$ac_cv_type_unsigned_long_long_int" = yes; then
+#    AC_REPLACE_FUNCS([strtoull])
+#    if test $ac_cv_func_strtoull = no; then
+File: ./m4/strtoumax.m4
+Hash: 5caaba51dce181aa188137ad40280074d7e3ef1070bdc5a0fbed47f94e5650a6
+Copyright: 2002, 2003, 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:
+## strtoumax.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 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.
+#
+#AC_DEFUN([gl_FUNC_STRTOUMAX],
+#[
+#  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
+#  AC_REQUIRE([AC_PROG_CPP])
+#  AC_REQUIRE([AC_PROG_EGREP])
+#
+#  AC_CACHE_CHECK([whether <inttypes.h> defines strtoumax as a macro],
+#    gl_cv_func_strtoumax_macro,
+#    [AC_EGREP_CPP([inttypes_h_defines_strtoumax], [#include <inttypes.h>
+File: ./m4/strverscmp.m4
+Hash: 95826714352d22b394477acec68e36e8c32470733556f372ccd56f7ce71375bc
+Copyright: 2002, 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:
+## strverscmp.m4 serial 7
+#dnl Copyright (C) 2002, 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_STRVERSCMP],
+#[
+#  dnl Persuade glibc <string.h> to declare strverscmp().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strverscmp])
+#  if test $ac_cv_func_strverscmp = no; then
+#    gl_PREREQ_STRVERSCMP
+File: ./m4/symlinkat.m4
+Hash: 90930f5c7ee0ce10502b307af1282f0c1bafcd6f976b6c951960b431fe7952ea
+Copyright: 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:
+## serial 2
+## See if we need to provide symlinkat/readlinkat replacement.
+#
+#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.
+#
+## Written by Eric Blake.
+#
+#AC_DEFUN([gl_FUNC_SYMLINKAT],
+#[
+#  AC_REQUIRE([gl_FUNC_OPENAT])
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+File: ./m4/sys_file_h.m4
+Hash: 69f49396e6a189edfc61c2bd435d53a891dc6abce8dac43f78387906ab67b383
+Copyright: 2008 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 replacement for <sys/file.h>.
+#
+## Copyright (C) 2008 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 Richard W.M. Jones.
+#
+#AC_DEFUN([gl_HEADER_SYS_FILE_H],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_FILE_H_DEFAULTS])
+#
+#  dnl Only flock is defined in a working <sys/file.h>.  If that
+#  dnl function is already there, we don't want to do any substitution.
+File: ./m4/sys_ioctl_h.m4
+Hash: f6a18a51ddc67c6c47b712c8f847e443beb6a918724a8234bac0d8132d08ebf6
+Copyright: 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:
+## sys_ioctl_h.m4 serial 3
+#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.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_SYS_IOCTL_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_SYS_IOCTL_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([sys/ioctl.h])
+File: ./m4/sys_select_h.m4
+Hash: 38fdb36f5c8f4a2ade525a2c92c5b92a56afd18f75d14a63fbfcaa0aea9c2bc1
+Copyright: 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_select_h.m4 serial 8
+#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_HEADER_SYS_SELECT],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#  AC_REQUIRE([gl_SYS_SELECT_H_DEFAULTS])
+#  AC_CACHE_CHECK([whether <sys/select.h> is self-contained],
+#    [gl_cv_header_sys_select_h_selfcontained],
+#    [
+#      dnl Test against two bugs:
+#      dnl 1. On many platforms, <sys/select.h> assumes prior inclusion of
+File: ./m4/sys_socket_h.m4
+Hash: 9e3fe619e71cd2142906cf6e71e9c7a811a7666b66bfd7b8d819f3bd0b440ee7
+Copyright: 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:
+## sys_socket_h.m4 serial 13
+#dnl Copyright (C) 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.
+#
+#dnl From Simon Josefsson.
+#
+#AC_DEFUN([gl_HEADER_SYS_SOCKET],
+#[
+#  AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS])
+#  AC_REQUIRE([AC_C_INLINE])
+#
+#  AC_CACHE_CHECK([whether <sys/socket.h> is self-contained],
+#    [gl_cv_header_sys_socket_h_selfcontained],
+File: ./m4/sys_stat_h.m4
+Hash: e14f36fc61a996000fc53de8648fe9a8614162802f0d0767f0935aa5e38381df
+Copyright: 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 13   -*- 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 Test whether <sys/stat.h> contains lstat and mkdir or must be substituted.
+#
+#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/sys_time_h.m4
+Hash: f4fa044be9686af6cc3dca73c362217c35b7df004df156448d42e93f50005c21
+Copyright: 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:
+## Configure a replacement for <sys/time.h>.
+#
+## Copyright (C) 2007 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 and Martin Lambers.
+#
+#AC_DEFUN([gl_HEADER_SYS_TIME_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the REPLACE_GETTIMEOFDAY=0 statement
+#  dnl below is expanded once only, before all REPLACE_GETTIMEOFDAY=1
+#  dnl statements that occur in other macros.
+#  AC_REQUIRE([gl_HEADER_SYS_TIME_H_BODY])
+File: ./m4/sys_times_h.m4
+Hash: 65330cd4e4102a96c194270ad63a84f51e0c2434500f54a1d994c4e4ef67d43e
+Copyright: 2008 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 replacement for <sys/times.h>.
+#
+## Copyright (C) 2008 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 Simon Josefsson.
+#
+#AC_DEFUN([gl_SYS_TIMES_H],
+#[
+#  AC_REQUIRE([gl_SYS_TIMES_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([sys/times.h])
+#  if test $ac_cv_header_sys_times_h = yes; then
+File: ./m4/sys_utsname_h.m4
+Hash: 6297d018e2ce6557cfb1b69a8ad181b4b150a4b66d7da9988fc8b4b9e11141c4
+Copyright: 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_utsname_h.m4 serial 1
+#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.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_SYS_UTSNAME_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_SYS_UTSNAME_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([sys/utsname.h])
+File: ./m4/sys_wait_h.m4
+Hash: 15694649678e6ed145b9468ef2af89fe024f914aa32d5e23f58210af6531261e
+Copyright: 2008 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_wait_h.m4 serial 1
+#dnl Copyright (C) 2008 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_SYS_WAIT_H],
+#[
+#  AC_REQUIRE([gl_SYS_WAIT_H_DEFAULTS])
+#
+#  gl_CHECK_NEXT_HEADERS([sys/wait.h])
+#  SYS_WAIT_H='sys/wait.h'
+#  AC_SUBST([SYS_WAIT_H])
+#])
+File: ./m4/sysexits.m4
+Hash: bffb1617076a6e661ddf76f19df8cd972e0227ffcd9875916f5f7a7cc4fcb59f
+Copyright: 2003, 2005, 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:
+## sysexits.m4 serial 4
+#dnl Copyright (C) 2003, 2005, 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.
+#
+#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_TRY_COMPILE([#include <sysexits.h>],
+#      [switch (0)
+#       {
+File: ./m4/tempname.m4
+Hash: a3bf3fdb7afc9ed7e1115ebd5f6c297f474cd2ac9b47043fa5921526007b166e
+Copyright: 2006-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:
+##serial 3
+#
+## Copyright (C) 2006-2007 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.
+#
+## glibc provides __gen_tempname as a wrapper for mk[ds]temp.  Expose
+## it as a public API, and provide it on systems that are lacking.
+#AC_DEFUN([gl_FUNC_GEN_TEMPNAME],
+#[
+#  AC_REQUIRE([AC_SYS_LARGEFILE])
+#
+#  AC_LIBOBJ([tempname])
+#  gl_PREREQ_TEMPNAME
+File: ./m4/thread.m4
+Hash: 966cea206c2dde9b0822e88fb5c7eb071d1e2a8b498b5f7584177992654e3b76
+Copyright: 2008 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:
+## thread.m4 serial 2
+#dnl Copyright (C) 2008 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_THREAD],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  AC_REQUIRE([AC_C_INLINE])
+#
+#  if test $gl_threads_api = posix; then
+#    gl_save_LIBS="$LIBS"
+#    LIBS="$LIBS $LIBMULTITHREAD"
+#    AC_CHECK_FUNCS([pthread_atfork])
+File: ./m4/threadlib.m4
+Hash: 0a3a72d652c01b057b2ec383380c48fb020f82e564e60ed9bd766a0d32066b2e
+Copyright: 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:
+## threadlib.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 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.
+#
+#dnl From Bruno Haible.
+#
+#dnl gl_THREADLIB
+#dnl ------------
+#dnl Tests for a multithreading library to be used.
+#dnl Defines at most one of the macros USE_POSIX_THREADS, USE_SOLARIS_THREADS,
+#dnl USE_PTH_THREADS, USE_WIN32_THREADS
+#dnl Sets the variables LIBTHREAD and LTLIBTHREAD to the linker options for use
+#dnl in a Makefile (LIBTHREAD for use without libtool, LTLIBTHREAD for use with
+File: ./m4/time_h.m4
+Hash: 09adfda92c4df94c5a482b3ec5b39361004444a90836892de7f938ea85e27569
+Copyright: 2000-2001, 2003-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:
+## Configure a more-standard replacement for <time.h>.
+#
+## Copyright (C) 2000-2001, 2003-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 and Jim Meyering.
+#
+#AC_DEFUN([gl_HEADER_TIME_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_HEADER_TIME_H_BODY])
+File: ./m4/time_r.m4
+Hash: 770d2efad291ac35edb3d39f8630a4709ef63528414495c9895426209a914244
+Copyright: 2003, 2006, 2007, 2008 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 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/timegm.m4
+Hash: 4596ca9d5a3d693c17a973d67f0516d289147d1ee01c7b528cc2f782dd26c491
+Copyright: 2003, 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:
+## timegm.m4 serial 6
+#dnl Copyright (C) 2003, 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_TIMEGM],
+#[
+#  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_MKTIME])
+#  if test $ac_cv_func_working_mktime = no; then
+#    # Assume that timegm is buggy if mktime is.
+#    AC_LIBOBJ([timegm])
+#    ac_cv_func_timegm=no
+#  else
+File: ./m4/timespec.m4
+Hash: a25be56d364ef5d14f369d901d2c05e5cbd2f43c14bc1268746e18e6f001c0a9
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 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:
+##serial 14
+#
+## Copyright (C) 2000, 2001, 2003, 2004, 2005, 2006, 2007 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.
+#
+#dnl From Jim Meyering
+#
+#AC_DEFUN([gl_TIMESPEC],
+#[
+#  dnl Prerequisites of lib/timespec.h.
+#  AC_REQUIRE([AC_C_INLINE])
+File: ./m4/tls.m4
+Hash: 697de033bdbad89c040faa77a813d232afeefae98bb7c79cd3211e305ae79e07
+Copyright: 2005, 2008 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:
+## tls.m4 serial 2 (gettext-0.18)
+#dnl Copyright (C) 2005, 2008 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 Bruno Haible.
+#
+#AC_DEFUN([gl_TLS],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#])
+File: ./m4/tm_gmtoff.m4
+Hash: 758ee2b8a8b4488ded650d22c745fbee1c698b5bbbbadab892035a0bbd133958
+Copyright: 2002, 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:
+## tm_gmtoff.m4 serial 3
+#dnl Copyright (C) 2002, 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_TM_GMTOFF],
+#[
+# AC_CHECK_MEMBER([struct tm.tm_gmtoff],
+#                 [AC_DEFINE([HAVE_TM_GMTOFF], [1],
+#                            [Define if struct tm has the tm_gmtoff member.])],
+#                 ,
+#                 [#include <time.h>])
+#])
+File: ./m4/tmpdir.m4
+Hash: 098577de87caf3dad7141f279bbfb44cd8b4a79600904bc59b19733b612ca9d3
+Copyright: 2001-2002, 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:
+## tmpdir.m4 serial 3
+#dnl Copyright (C) 2001-2002, 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.
+#
+## Prerequisites for lib/tmpdir.c
+#
+#AC_DEFUN([gt_TMPDIR],
+#[
+#  AC_CHECK_FUNCS([__secure_getenv])
+#])
+File: ./m4/tmpfile.m4
+Hash: a9f8b1f5f20e4f91f6a5a5c5ed38df62512f8d57a66bfc25276d50c2f40318ea
+Copyright: 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:
+## Check whether to use a replacement tmpfile() function.
+#
+## Copyright (C) 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 Ben Pfaff.
+#
+## The native Windows tmpfile function always tries to put the temporary
+## file in the root directory.  (This behaviour is even documented in
+## Microsoft's documentation!)  This often fails for ordinary users who
+## don't have the permissions to write in the root directory.
+##
+## We can't test for tmpfile even at runtime, since our test program
+File: ./m4/trunc.m4
+Hash: 360b254b79427391f8b53e897c7f92fb3ace5d5ad105180f038e50671ea0f446
+Copyright: 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:
+## trunc.m4 serial 2
+#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.
+#
+#AC_DEFUN([gl_FUNC_TRUNC],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare trunc().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether trunc() is declared.
+#  AC_CHECK_DECLS([trunc], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_trunc" = yes; then
+#    dnl Test whether trunc() can be used without libm.
+File: ./m4/truncf.m4
+Hash: c451a8be61a16dd51de9f147f9eea7b656aec20696e999962b9b2170aa973cd6
+Copyright: 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:
+## truncf.m4 serial 1
+#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.
+#
+#AC_DEFUN([gl_FUNC_TRUNCF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare truncf().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether truncf() is declared.
+#  AC_CHECK_DECLS([truncf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_truncf" = yes; then
+#    dnl Test whether truncf() can be used without libm.
+File: ./m4/truncl.m4
+Hash: 95d7249df03f9c1cbe96efe80cffba1e26271fab4a090c16e990b8f1375026af
+Copyright: 2007-2008 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:
+## truncl.m4 serial 2
+#dnl Copyright (C) 2007-2008 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_TRUNCL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#  dnl Persuade glibc <math.h> to declare truncl().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether truncl() is declared.
+#  AC_CHECK_DECLS([truncl], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_truncl" = yes; then
+File: ./m4/tsearch.m4
+Hash: 1fdebc81816c7417d4f8f53047196acb683d0e3178f9bf7a4200af674a5a179d
+Copyright: 2006-2008 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 3
+#dnl Copyright (C) 2006-2008 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/tzset.m4
+Hash: 25f9ec1e09c194a7e31b97f55483b93552e2448766dd5c96e62359f399656763
+Copyright: 2003, 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:
+## serial 4
+#
+## Copyright (C) 2003, 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.
+#
+## See if we have a working tzset function.
+## If so, arrange to compile the wrapper function.
+## For at least Solaris 2.5.1 and 2.6, this is necessary
+## because tzset can clobber the contents of the buffer
+## used by localtime.
+#
+## Written by Paul Eggert and Jim Meyering.
+File: ./m4/uintmax_t.m4
+Hash: 5569fad1774ab8b961af00e03c545e378179e3d4ca1e5c23b3579e3ef6e61670
+Copyright: 1997-2004, 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:
+## uintmax_t.m4 serial 12
+#dnl Copyright (C) 1997-2004, 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 Paul Eggert.
+#
+#AC_PREREQ([2.13])
+#
+## Define uintmax_t to 'unsigned long' or 'unsigned long long'
+## if it is not already defined in <stdint.h> or <inttypes.h>.
+#
+#AC_DEFUN([gl_AC_TYPE_UINTMAX_T],
+#[
+File: ./m4/ulonglong.m4
+Hash: 5de3995e758929606b49effa12a5e72f32bdadb3ffa4a434c39a5fdbfcc42f33
+Copyright: 1999-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:
+## ulonglong.m4 serial 10
+#dnl Copyright (C) 1999-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.
+File: ./m4/uname.m4
+Hash: 3c6482e00f6593d203a89f71ae22c02497f43ccfa98128c01c410a65baf0d9f1
+Copyright: 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:
+## uname.m4 serial 10
+#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_UNAME],
+#[
+#  AC_REQUIRE([gl_SYS_UTSNAME_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([uname])
+#  if test $ac_cv_func_uname = no; then
+#    HAVE_UNAME=0
+#    gl_PREREQ_UNAME
+#  fi
+#])
+File: ./m4/ungetc.m4
+Hash: 6d05898405c1b3e3c46040a9c38a59043c89a45cd3d411f28a20111f2483d280
+Copyright: 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:
+## ungetc.m4 serial 1
+#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_ONCE([gl_FUNC_UNGETC_WORKS],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#
+#  AC_CACHE_CHECK([whether ungetc works on arbitrary bytes],
+#    [gl_cv_func_ungetc_works],
+#    [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
+##include <stdio.h>
+#      ]], [FILE *f; long l;
+File: ./m4/unicodeio.m4
+Hash: 767bdadf5b3faabd031a93d59ca9ead2934926368aba57932cba97b9aa74fef0
+Copyright: 2002-2003 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:
+## unicodeio.m4 serial 2
+#dnl Copyright (C) 2002-2003 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_UNICODEIO],
+#[
+#  dnl No prerequisites of lib/unicodeio.c.
+#  :
+#])
+File: ./m4/unistd-safer.m4
+Hash: d917dcd19ae1fe7e0e446c7cf29c1db1361a3abc2b5fda15c5da446442ce7a72
+Copyright: 2002, 2005, 2006 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:
+##serial 8
+#dnl Copyright (C) 2002, 2005, 2006 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_UNISTD_SAFER],
+#[
+#  AC_CHECK_FUNCS_ONCE([pipe])
+#  AC_LIBOBJ([dup-safer])
+#  AC_LIBOBJ([fd-safer])
+#  AC_LIBOBJ([pipe-safer])
+#])
+File: ./m4/unistd_h.m4
+Hash: 390f7c7544789ef3626c1d1de31a7c38de0b022276ea3bc19dd159fda1869c65
+Copyright: 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 24
+#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/unlink-busy.m4
+Hash: ad70c286d0983ec8db389ea4785ef1730a651918d5fe5ffedda1c2810ef7d434
+Copyright: 2000, 2001, 2004, 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:
+##serial 11
+#
+#dnl From J. David Anglin.
+#
+#dnl HPUX and other systems can't unlink shared text that is being executed.
+#
+## Copyright (C) 2000, 2001, 2004, 2007 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([gl_FUNC_UNLINK_BUSY_TEXT],
+#[dnl
+#  AC_CACHE_CHECK([whether a running program can be unlinked],
+#    gl_cv_func_unlink_busy_text,
+File: ./m4/unlinkdir.m4
+Hash: de6356bceeff6f0516f22ebe8454b552888b3aa9c126c43968c65dc5d20824a8
+Copyright: 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:
+## serial 6
+#
+## Copyright (C) 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.
+#
+#AC_DEFUN([gl_UNLINKDIR],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CHECK_HEADERS_ONCE([priv.h])
+File: ./m4/unlocked-io.m4
+Hash: 7d036d1f045f2eecb342938a5e665fa8b4ab671900c00c44ea74f853e5cfca03
+Copyright: 1998-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:
+## unlocked-io.m4 serial 15
+#
+## Copyright (C) 1998-2006, 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.
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl See if the glibc *_unlocked I/O macros or functions are available.
+#dnl Use only those *_unlocked macros or functions that are declared
+#dnl (because some of them were declared in Solaris 2.5.1 but were removed
+#dnl in Solaris 2.6, whereas we want binaries built on Solaris 2.5.1 to run
+#dnl on Solaris 2.6).
+File: ./m4/uptime.m4
+Hash: a21b4be251dfc64d08f51f7f7c731e3c1b7316b82a9352318f3ac0248b8202e9
+Copyright: 1996, 1999-2001, 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:
+## serial 8
+#
+## Copyright (C) 1996, 1999-2001, 2004, 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_PREREQ([2.13])
+#
+#AC_DEFUN([gl_SYS_PROC_UPTIME],
+#[ dnl Require AC_PROG_CC to see if we're cross compiling.
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([for /proc/uptime], [gl_cv_have_proc_uptime],
+#  [gl_cv_have_proc_uptime=no
+#    test -f /proc/uptime \
+File: ./m4/userspec.m4
+Hash: 767025ad4c6d4041ef5a4fa50a0f59f305bf899b4e88261b263a58a11eecaa26
+Copyright: 2002-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:
+## serial 10
+#dnl Copyright (C) 2002-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_USERSPEC],
+#[
+#  AC_LIBOBJ([userspec])
+#
+#  dnl Prerequisites of lib/userspec.c.
+#  AC_CHECK_HEADERS_ONCE([sys/param.h])
+#])
+File: ./m4/utimbuf.m4
+Hash: 1cc7dfc2a7f30b77bc720ee587638964a5d095ca07f291a9157245265121a10d
+Copyright: 1998-2001, 2003-2004, 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:
+## serial 9
+#
+## Copyright (C) 1998-2001, 2003-2004, 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.
+#
+#dnl From Jim Meyering
+#
+#dnl Define HAVE_STRUCT_UTIMBUF if `struct utimbuf' is declared --
+#dnl usually in <utime.h>.
+#dnl Some systems have utime.h but don't declare the struct anywhere.
+File: ./m4/utime.m4
+Hash: daf708dbb1e4e20331f886285ee9bebbcba63a486ac5bd4d13d92c27f53b5d22
+Copyright: 1998, 2000-2001, 2003-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:
+## serial 9
+#
+#dnl From Jim Meyering
+#dnl Replace the utime function on systems that need it.
+#
+## Copyright (C) 1998, 2000-2001, 2003-2004, 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.
+#
+#dnl FIXME
+#
+#AC_DEFUN([gl_FUNC_UTIME],
+#[
+#  AC_REQUIRE([AC_FUNC_UTIME_NULL])
+File: ./m4/utimecmp.m4
+Hash: a8b3ec86a04cb02154cbad4b5fdeecc06dd7b93dc54d96458f9d210949e68241
+Copyright: 2004, 2005, 2006, 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:
+##serial 3
+#dnl Copyright (C) 2004, 2005, 2006, 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.
+#
+#AC_DEFUN([gl_UTIMECMP],
+#[
+#  AC_LIBOBJ([utimecmp])
+#
+#  dnl Prerequisites of lib/utimecmp.c.
+#  AC_REQUIRE([gl_FUNC_UTIMES])
+#  :
+#])
+File: ./m4/utimens.m4
+Hash: 68d63c14fa0327cf0e4c214194e62b6bbe553f441f81bd1d17d8c5597fe6fb88
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008 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 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software
+#dnl 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 serial 2
+#
+#AC_DEFUN([gl_UTIMENS],
+#[
+#  AC_LIBOBJ([utimens])
+#
+#  dnl Prerequisites of lib/utimens.c.
+#  AC_REQUIRE([gl_FUNC_UTIMES])
+#  AC_REQUIRE([gl_CHECK_TYPE_STRUCT_TIMESPEC])
+File: ./m4/utimes-null.m4
+Hash: 3d1576bcb95cbe1177f919d74755dc2272345e607205d917139059158a3724d3
+Copyright: 1998-1999, 2001, 2003-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:
+## serial 9
+#
+## Copyright (C) 1998-1999, 2001, 2003-2004, 2006, 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.
+#
+#dnl Shamelessly cloned from acspecific.m4's AC_FUNC_UTIME_NULL,
+#dnl then do case-insensitive s/utime/utimes/.
+#
+#AC_DEFUN([gl_FUNC_UTIMES_NULL],
+#[AC_CACHE_CHECK([whether utimes accepts a null argument], [ac_cv_func_utimes_null],
+#[rm -f conftest.data; > conftest.data
+File: ./m4/utimes.m4
+Hash: f0ce682e7fb31e73a0c02c54b4ea24a84f141f32e54af7498deef1f9dee7c4f6
+Copyright: 2003, 2004, 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:
+## Detect some bugs in glibc's implementation of utimes.
+#
+#dnl Copyright (C) 2003, 2004, 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.
+#
+## See if we need to work around bugs in glibc's implementation of
+## utimes from 2003-07-12 to 2003-09-17.
+## First, there was a bug that would make utimes set mtime
+## and atime to zero (1970-01-01) unconditionally.
+## Then, there was code to round rather than truncate.
+## Then, there was an implementation (sparc64, Linux-2.4.28, glibc-2.3.3)
+## that didn't honor the NULL-means-set-to-current-time semantics.
+## Finally, there was also a version of utimes that failed on read-only
+File: ./m4/vararrays.m4
+Hash: ccc97184c7bd4de12a6168086eff30eb1c15e473193a91d5a5e5d6a8824a9d40
+Copyright: 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 3
+#
+## 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/vasnprintf-posix.m4
+Hash: b48e0fece07a089a5f87d23a14cb5091c44b473d532c563041616c9dafcdc15a
+Copyright: 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:
+## vasnprintf-posix.m4 serial 13
+#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_VASNPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/vasnprintf.m4
+Hash: 1cd0c36a78c6078d18cdb67a1554a4ac9f773b68dac016c0cbfa06ca03453024
+Copyright: 2002-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:
+## vasnprintf.m4 serial 29
+#dnl Copyright (C) 2002-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.
+#
+#AC_DEFUN([gl_FUNC_VASNPRINTF],
+#[
+#  AC_CHECK_FUNCS_ONCE([vasnprintf])
+#  if test $ac_cv_func_vasnprintf = no; then
+#    gl_REPLACE_VASNPRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_VASNPRINTF],
+File: ./m4/vasprintf-posix.m4
+Hash: db9712da8b53f1bb3ae158ba8595f902cebc0533a5511d997ebbe7eff79aae9c
+Copyright: 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:
+## vasprintf-posix.m4 serial 13
+#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_VASPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/vasprintf.m4
+Hash: 15f05ac172c3ea6b1b2e8fdc74cd60991f82c845dcf820fcb5b868b38acbb0b5
+Copyright: 2002-2003, 2006-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:
+## vasprintf.m4 serial 6
+#dnl Copyright (C) 2002-2003, 2006-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.
+#
+#AC_DEFUN([gl_FUNC_VASPRINTF],
+#[
+#  AC_CHECK_FUNCS([vasprintf])
+#  if test $ac_cv_func_vasprintf = no; then
+#    gl_REPLACE_VASPRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_VASPRINTF],
+File: ./m4/vdprintf-posix.m4
+Hash: 8f5973dc5616cf37e7aec5dd9f4b90181762fdecd6864ebe71ba10e48fe33230
+Copyright: 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:
+## vdprintf-posix.m4 serial 2
+#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_VDPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/vdprintf.m4
+Hash: e1d6b72d4330fcfa0af92094cc075e09ba7fb9115bf9154641687e8310e4e1d8
+Copyright: 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:
+## vdprintf.m4 serial 1
+#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_VDPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([vdprintf])
+#  if test $ac_cv_func_vdprintf = no; then
+#    HAVE_VDPRINTF=0
+#    gl_REPLACE_VDPRINTF
+#  fi
+#])
+File: ./m4/version-etc.m4
+Hash: 14c2c6c298a204c97e8b5e47a299065d37b7c38ce4dc56125c443fb09a2cbdc1
+Copyright: 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:
+## version-etc.m4 serial 1
+## 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.
+#
+#dnl $1 - configure flag and define name
+#dnl $2 - human readable description
+#m4_define([gl_VERSION_ETC_FLAG],
+#[dnl
+#  AC_ARG_WITH([$1], [AS_HELP_STRING([--with-$1], [$2])],
+#    [dnl
+#      case $withval in
+#      yes|no) ;;
+#      *) AC_DEFINE_UNQUOTED(AS_TR_CPP([PACKAGE_$1]), ["$withval"], [$2]) ;;
+File: ./m4/vfprintf-posix.m4
+Hash: d1777edd2bd37a587f11a3a9aaff20710d8a239f5e4f42f49fb36342f5ec3619
+Copyright: 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:
+## vfprintf-posix.m4 serial 14
+#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_VFPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/visibility.m4
+Hash: d8e75ab55dddf6b27703fb08e77f2e0e05d58c0e53aff9968eaf8f6a78def9cd
+Copyright: 2005, 2008 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:
+## visibility.m4 serial 2 (gettext-0.18)
+#dnl Copyright (C) 2005, 2008 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 Bruno Haible.
+#
+#dnl Tests whether the compiler supports the command-line option
+#dnl -fvisibility=hidden and the function and variable attributes
+#dnl __attribute__((__visibility__("hidden"))) and
+#dnl __attribute__((__visibility__("default"))).
+#dnl Does *not* test for __visibility__("protected") - which has tricky
+#dnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on
+#dnl MacOS X.
+File: ./m4/vprintf-posix.m4
+Hash: 37a9b2f2e103f8396564a88abd0c5379afb40a6b46056d5afc1adce54162cbea
+Copyright: 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:
+## vprintf-posix.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_FUNC_VPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_FUNC_VFPRINTF_POSIX])
+#  if test $gl_cv_func_vfprintf_posix = no; then
+#    gl_REPLACE_VPRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_VPRINTF],
+File: ./m4/vsnprintf-posix.m4
+Hash: 411f99e3689d9c66c871e864c31df109b6fe645f6bef287b09871e54ff163299
+Copyright: 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:
+## vsnprintf-posix.m4 serial 14
+#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_VSNPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/vsnprintf.m4
+Hash: 78bc63b8400f070466502f7f592939004f0204329bf1936e08db566f9efb4a63
+Copyright: 2002-2004, 2007-2008 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:
+## vsnprintf.m4 serial 5
+#dnl Copyright (C) 2002-2004, 2007-2008 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_VSNPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  gl_cv_func_vsnprintf_usable=no
+#  AC_CHECK_FUNCS([vsnprintf])
+#  if test $ac_cv_func_vsnprintf = yes; then
+#    gl_SNPRINTF_SIZE1
+#    case "$gl_cv_func_snprintf_size1" in
+#      *yes)
+File: ./m4/vsprintf-posix.m4
+Hash: 5de43c845cf229240686251cffa6ebc95a7ff8c99776f41b84e9ab73fd5d27dd
+Copyright: 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:
+## vsprintf-posix.m4 serial 12
+#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_VSPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+File: ./m4/wait-process.m4
+Hash: e95987f7301300836022c3c272ea0fd0f42750837bde9c7077eea97dd7c54f4e
+Copyright: 2003, 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:
+## wait-process.m4 serial 4
+#dnl Copyright (C) 2003, 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_WAIT_PROCESS],
+#[
+#  dnl Prerequisites of lib/wait-process.c.
+#  AC_REQUIRE([gt_TYPE_SIG_ATOMIC_T])
+#  AC_CHECK_FUNCS([waitid])
+#])
+File: ./m4/warnings.m4
+Hash: 2ea3219129fd3e764decacbe54defb2ac59c220191cb3dc2e751955671739c87
+Copyright: 2008 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:
+## warnings.m4 serial 2
+#dnl Copyright (C) 2008 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 Simon Josefsson
+#
+## gl_AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH])
+## ----------------------------------------------------
+## Provide the functionality of AS_VAR_IF if Autoconf does not have it.
+#m4_ifdef([AS_VAR_IF],
+#[m4_copy([AS_VAR_IF], [gl_AS_VAR_IF])],
+#[m4_define([gl_AS_VAR_IF],
+#[AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])])
+File: ./m4/wchar.m4
+Hash: 82235dd92cbc686f19c162e681a3e2d2cd8712415ceb63502f96525e68b68801
+Copyright: 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:
+#dnl A placeholder for ISO C99 <wchar.h>, for platforms that have issues.
+#
+#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.
+#
+#dnl Written by Eric Blake.
+#
+## wchar.m4 serial 25
+#
+#AC_DEFUN([gl_WCHAR_H],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#  AC_CACHE_CHECK([whether <wchar.h> is standalone],
+File: ./m4/wchar_t.m4
+Hash: e144a04745a6906677eeb9b8f3c9fb793754a3c55452125a6e24a9668ceb77bc
+Copyright: 2002-2003, 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:
+## wchar_t.m4 serial 3 (gettext-0.18)
+#dnl Copyright (C) 2002-2003, 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 From Bruno Haible.
+#dnl Test whether <stddef.h> has the 'wchar_t' type.
+#dnl Prerequisite: AC_PROG_CC
+#
+#AC_DEFUN([gt_TYPE_WCHAR_T],
+#[
+#  AC_CACHE_CHECK([for wchar_t], [gt_cv_c_wchar_t],
+#    [AC_TRY_COMPILE([#include <stddef.h>
+#       wchar_t foo = (wchar_t)'\0';], ,
+File: ./m4/wcrtomb.m4
+Hash: 950cca49712f3c35b6801b3d14be1d94ecdfddaf783aa898b4c0a215c21d1a22
+Copyright: 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:
+## wcrtomb.m4 serial 4
+#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_FUNC_WCRTOMB],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_WCRTOMB=1
+#  fi
+File: ./m4/wcsnrtombs.m4
+Hash: f1714d805e97204ef9c59bd5306dfb11726dd669488be35000b946750fd6f03d
+Copyright: 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:
+## wcsnrtombs.m4 serial 2
+#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_FUNC_WCSNRTOMBS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_WCSNRTOMBS=1
+#  fi
+File: ./m4/wcsrtombs.m4
+Hash: c97f36290b6a78023cc47f8d507dcd18ceec4a4d68fbf704e743231b8d2eb7f1
+Copyright: 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:
+## wcsrtombs.m4 serial 4
+#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_FUNC_WCSRTOMBS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_WCSRTOMBS=1
+#  fi
+File: ./m4/wctob.m4
+Hash: d9b6ab0f44f04f22bde90b90ed5287b8f3503b07803bd2469f5e37e32682c1db
+Copyright: 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:
+## wctob.m4 serial 4
+#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_FUNC_WCTOB],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_CHECK_FUNCS_ONCE([wctob])
+#  if test $ac_cv_func_wctob = no; then
+#    HAVE_DECL_WCTOB=0
+#    gl_REPLACE_WCHAR_H
+#    AC_LIBOBJ([wctob])
+File: ./m4/wctype.m4
+Hash: b223622a4d75488360819355855d86340ef0e7f18d4a3fd37bd74f65b7ef14a8
+Copyright: 2006-2008 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 2
+#
+#dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
+#
+#dnl Copyright (C) 2006-2008 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_CHECK_FUNCS_ONCE([iswcntrl])
+File: ./m4/wcwidth.m4
+Hash: 454b784cd3681ceda96891b7832bf461581311bed5d7e6f8c98cbe7371e8da76
+Copyright: 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:
+## wcwidth.m4 serial 15
+#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_WCWIDTH],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#
+#  dnl Persuade glibc <wchar.h> to declare wcwidth().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gt_TYPE_WCHAR_T])
+File: ./m4/wint_t.m4
+Hash: 542edc258897a8065d2ea6d285047c9e3ff04da8728e2fc4c3ce004076b1bf5d
+Copyright: 2003, 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:
+## wint_t.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 2003, 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 Bruno Haible.
+#dnl Test whether <wchar.h> has the 'wint_t' type.
+#dnl Prerequisite: AC_PROG_CC
+#
+#AC_DEFUN([gt_TYPE_WINT_T],
+#[
+#  AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t],
+#    [AC_TRY_COMPILE([
+#/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
+File: ./m4/write-any-file.m4
+Hash: c5ed5eaed6e0fe94e459ff78fb113b0ff81091be83ecaaeef17f0dfe0ea6b5c4
+Copyright: 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:
+## Determine whether we can write any file.
+#
+## Copyright (C) 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.
+#
+#AC_DEFUN([gl_WRITE_ANY_FILE],
+#[
+#  AC_CHECK_HEADERS_ONCE([priv.h])
+#  AC_LIBOBJ([write-any-file])
+#])
+File: ./m4/write.m4
+Hash: c5c3bc26fbe2cb6fa61e259bcc8f1b0fdef708a454a07deb6712cb376c2d0b91
+Copyright: 2008 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:
+## write.m4 serial 1
+#dnl Copyright (C) 2008 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_WRITE],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  dnl This ifdef is just an optimization, to avoid performing a configure
+#  dnl check whose result is not used. It does not make the test of
+#  dnl GNULIB_UNISTD_H_SIGPIPE or GNULIB_SIGPIPE redundant.
+#  m4_ifdef([gl_SIGNAL_SIGPIPE], [
+#    gl_SIGNAL_SIGPIPE
+#    if test $gl_cv_header_signal_h_SIGPIPE != yes; then
+File: ./m4/xalloc.m4
+Hash: 5008bbce8cfeaf98f9413e19e47b1267a7d0d7d21ba9d97bc1bf984f234a4773
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+## xalloc.m4 serial 16
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_XALLOC],
+#[
+#  AC_LIBOBJ([xmalloc])
+#
+#  gl_PREREQ_XALLOC
+#  gl_PREREQ_XMALLOC
+#])
+#
+## Prerequisites of lib/xalloc.h.
+File: ./m4/xgetcwd.m4
+Hash: 3b5d09234ad0a99b1fce1a5067ecc3c715989640845dd5c38e94d491e4e94090
+Copyright: 2002, 2003, 2004, 2005, 2006 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:
+##serial 6
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_XGETCWD],
+#[
+#  AC_LIBOBJ([xgetcwd])
+#
+#  AC_REQUIRE([gl_FUNC_GETCWD])
+#])
+File: ./m4/xnanosleep.m4
+Hash: d11f4adf891d6c7746216e56ef22de12b2f4cdd9765e0f9d3630e52b02fae5f0
+Copyright: 2005, 2006 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:
+##serial 4
+#dnl Copyright (C) 2005, 2006 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_XNANOSLEEP],
+#[
+#  AC_LIBOBJ([xnanosleep])
+#])
+File: ./m4/xsize.m4
+Hash: 9d30e3c52072d3833efaf4d46c531c2b3f801281eb8aead4b3ae7ae011e2cff4
+Copyright: 2003-2004, 2008 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:
+## xsize.m4 serial 4
+#dnl Copyright (C) 2003-2004, 2008 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_XSIZE],
+#[
+#  dnl Prerequisites of lib/xsize.h.
+#  AC_REQUIRE([gl_SIZE_MAX])
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_CHECK_HEADERS([stdint.h])
+#])
+File: ./m4/xstrndup.m4
+Hash: 117f55c31df0fe5f1e79240d94a592eed4a47276060894633b84e8816a1d5056
+Copyright: 2003 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:
+## xstrndup.m4 serial 2
+#dnl Copyright (C) 2003 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_XSTRNDUP],
+#[
+#  gl_PREREQ_XSTRNDUP
+#])
+#
+## Prerequisites of lib/xstrndup.c.
+#AC_DEFUN([gl_PREREQ_XSTRNDUP], [
+#  :
+#])
+File: ./m4/xstrtod.m4
+Hash: 1ec2cd8d2c6b3de92b55a976bf17831b0daf8d2171c62cfad283954af9f4309f
+Copyright: 2002, 2003, 2005, 2006 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:
+##serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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.
+#
+## Prerequisites of lib/xstrtod.c.
+#AC_DEFUN([gl_XSTRTOD],
+#[
+#  AC_LIBOBJ([xstrtod])
+#])
+#
+## Prerequisites of lib/xstrtold.c.
+#AC_DEFUN([gl_XSTRTOLD],
+#[
+File: ./m4/xstrtol.m4
+Hash: ef06de197a5a3ac2001bb343095937dc6980e544003adc0f77f3d9f2be17fb82
+Copyright: 2002, 2003, 2004, 2005, 2006, 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:
+##serial 10
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+#dnl 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_XSTRTOL],
+#[
+#  AC_LIBOBJ([xstrtol])
+#  AC_LIBOBJ([xstrtoul])
+#  AC_LIBOBJ([xstrtol-error])
+#])
+File: ./m4/xvasprintf.m4
+Hash: dae7786d5d9ab5954cee5d5c0847bed861d04af2a98ba67c5945d8085c9c85d0
+Copyright: 2006 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:
+## xvasprintf.m4 serial 1
+#dnl Copyright (C) 2006 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_XVASPRINTF],
+#[
+#  dnl Prerequisites of lib/xvasprintf.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+File: ./m4/yesno.m4
+Hash: b0dfeda80afab2a3259bde0be3a8994252fd438782e68ef024dfee9eae084ae9
+Copyright: 2002, 2003, 2005, 2006 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:
+## yesno.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 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_YESNO],
+#[
+#  AC_LIBOBJ([yesno])
+#
+#  dnl No prerequisites of lib/yesno.c.
+#  :
+#])
+File: ./m4/yield.m4
+Hash: 55ae2c6e8e758bd817c625c92a268f6d9e9eded98c0334cd4951f7f16c833c48
+Copyright: 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:
+## yield.m4 serial 2
+#dnl Copyright (C) 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_YIELD],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  dnl On some systems, sched_yield is in librt, rather than in libpthread.
+#  YIELD_LIB=
+#  if test $gl_threads_api = posix; then
+#    dnl Solaris has sched_yield in librt, not in libpthread or libc.
+#    AC_CHECK_LIB([rt], [sched_yield], [YIELD_LIB=-lrt],
+#      [dnl Solaris 2.5.1, 2.6 has sched_yield in libposix4, not librt.
+
+######################################################################
+## UPTOHERE
+######################################################################
+File: ./posix-modules
+Hash: a5ccaf8a1eb82ecf46eb6b2aa5c191573ba82514eb2a06faae04e262348940c7
+Copyright: 2002-2008 Free Software Foundation, Inc.
+License: 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 (C) 2002-2008 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
+File: ./tests/locale/fr/LC_MESSAGES/test-quotearg.mo
+Hash: aa0b83acbe74a54fa3cd8a775c76808e83114c0a544170c7390bce7ef812a035
+Copyright:
+License:
+#Header:
+File: ./tests/locale/fr/LC_MESSAGES/test-quotearg.po
+Hash: 78381df0a60b4cf5be4ba6df357926269fa34959f18832cdf96c0badc79895e4
+Copyright:
+License:
+#Header:
+## Message catalog that maps the ASCII replacements for single-quote characters
+## to real single-quote characters.
+## The header entry is commented out on purpose, so that gettext() performs no
+## no character set conversion from the PO file's encoding to the locale
+## encoding. This allows us to use the same PO file in various locales.
+##msgid ""
+##msgstr ""
+##"Project-Id-Version: GNU gnulib\n"
+##"PO-Revision-Date: 2009-01-26 01:02+01:00\n"
+##"Last-Translator: Eric Blake <ebb9@byu.net>\n"
+##"Language-Team: Undetermined <und@li.org>\n"
+##"MIME-Version: 1.0\n"
+##"Content-Type: text/plain; charset=UTF-8\n"
+##"Content-Transfer-Encoding: 8bit\n"
+File: ./tests/nan.h
+Hash: 0e920a53922496135430d09f3bfebfc1f03f63142e1f0ff761e842e96d506a56
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Macros for not-a-number.
+#   Copyright (C) 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.
+#
+#   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-alignof.c
+Hash: 8bf8f28addd7565ad3f4256848a2aed22f6b4d89ba5b501f5d3e45273b84af36
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <alignof.h>.
+#   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: ./tests/test-alloca-opt.c
+Hash: 7be92bd4805798798cc208871e587c60cff48c8fe695b08405cf2dcc866ddbfc
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of optional automatic memory allocation.
+#   Copyright (C) 2005, 2007 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: ./tests/test-arcfour.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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: ./tests/test-arctwo.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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: ./tests/test-argmatch.c
+Hash: 374d3cdd98263ea28ad0f3d8c21f8aaf953562d377316a56f32a69534d13603b
+Copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of exact or abbreviated match search.
+#   Copyright (C) 1990, 1998-1999, 2001-2008 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: ./tests/test-argp-2.sh
+Hash: aa582c3a737c286f43630868ea734856d5d74809aed1e967403b6d1e21a96ec6
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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
+## Test suite for argp.
+## Copyright (C) 2006-2008 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-argp-version-etc-1.sh
+Hash: 14124a44a2d4160fc8d3bde7bef3491c53725766368df8d5b97c5473869753bd
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for argp-version-etc.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-argp-version-etc.c
+Hash: 9894dd1ed11fe0f5567b33d83bddb190020bbbb37e5792cd8a76a9145eb3e7cc
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test suite for argp-version-etc.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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: ./tests/test-argp.c
+Hash: 3b0ecdaec3be7ac59ab04ba51095836c4843d5fe2016294aef19667d894b0503
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test suite for argp.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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: ./tests/test-argv-iter.c
+Hash: 87ef6b17b9a78fc466aa9cc85627af6f6e0ac63b0d7c82998d4dab47a9bd298f
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test argv iterator
+#   Copyright (C) 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,
+#   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-arpa_inet.c
+Hash: 79ac8a737e1a83e3bad62ce1868e706a2b08bf46afa32c67681e91beb53462a1
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <arpa/inet.h> substitute.
+#   Copyright (C) 2007 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: ./tests/test-array-mergesort.c
+Hash: f9c4ef4dc591cbeac70eba11e9533d59181f12cf12d362e00782f45ecd9c36ed
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test of stable-sorting of an array using mergesort.
+#   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 Lesser 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./tests/test-array_list.c
+Hash: e03fc7928bfbe8781c744e1c21b70a907264b62c59bce976a7ac04694d5ff6a2
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./tests/test-array_oset.c
+Hash: c0bae0da40c7a22d6504b362bb30545716f1f9ad8bd5ca4a817a809f88197808
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ordered set data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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: ./tests/test-atexit.c
+Hash: 03e140710061dad22ceba20a744340059a599decc42a1f0a57061c370b674eeb
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of execution of program termination handlers.
+#   Copyright (C) 2007 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: ./tests/test-atexit.sh
+Hash: e693dded1c3bbe595a21498a71264cec8bb24a8356518618974847660d760774
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-atexit.tmp"
+## Check that an atexit handler is called when main() returns normally.
+#echo > t-atexit.tmp
+#./test-atexit${EXEEXT}
+#if test -f t-atexit.tmp; then
+#  exit 1
+#fi
+#
+## Check that an atexit handler is called when the program is left
+## through exit(0).
+File: ./tests/test-avltree_list.c
+Hash: 7eda006f64201339fc1716ebf20c065d5bdad5b0c385ae538ed09804b9100628
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-avltree_oset.c
+Hash: 30f270cd2b85bb909eaa7bbd80590b7f31be418ab29815c404aa0266290f320a
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ordered set data type implementation.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-avltreehash_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-base64.c
+Hash: f1a00fd1ea70356a96758211f9ee6ac4b85a24414ac54c1d218c21c6df7f8a15
+Copyright: 2004, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Self tests for base64.
+#   Copyright (C) 2004, 2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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: ./tests/test-binary-io.c
+Hash: c45b392e94b4c908c583df305c095c968079bb2bbe726a7feefc0c7400de5a58
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of binary mode I/O.
+#   Copyright (C) 2005, 2007-2008 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: ./tests/test-binary-io.sh
+Hash: 1ed5b40114bb55012cd28394883f8711c6a892ec24cc5ae55877736ff7753a9a
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-bin-out1.tmp t-bin-out2.tmp"
+#./test-binary-io${EXEEXT} > t-bin-out1.tmp || exit 1
+#
+#rm -fr $tmpfiles
+#
+#exit 0
+File: ./tests/test-bitrotate.c
+Hash: b31c900c0b50eeae92b228ab5590bb3f390daf91535632322fe28d791eb1e0b1
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <bitrotate.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-btowc.c
+Hash: 5ebcafef18833867faa6529b403f9ea8209c5b226325a645d7f4213d0daf22c1
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion of unibyte character to wide character.
+#   Copyright (C) 2008 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: ./tests/test-btowc1.sh
+Hash: b4bac8f44ded39802e8ffbefa260cde10c90ae2f9cb7a3639bcf747a93fe871e
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-btowc${EXEEXT} 1
+File: ./tests/test-btowc2.sh
+Hash: 0cc0919cbfb0a866d644d13cc08068596b5dac38fb9fe437415b812d0c3b0370
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-btowc${EXEEXT} 2
+File: ./tests/test-byteswap.c
+Hash: 54ff0c61e08753f6557e58cbd5a9ec794ca5f2e7f51c605f4188f2803a5da67f
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <byteswap.h> substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-c-ctype.c
+Hash: 13becd45e283e22f97fac9aa9901241affa9a90f9e2e0a10efd1267cb9bada9e
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of character handling in C locale.
+#   Copyright (C) 2005, 2007-2008 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: ./tests/test-c-stack.c
+Hash: 3b31d9428c61805262bd02ba033b43f2e82e1152a2cc23f48bae221a7b86dce1
+Copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of c-stack module.
+#   Copyright (C) 2002, 2004, 2006, 2008 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: ./tests/test-c-stack.sh
+Hash: 5ff4f37644ece982d306be694f3a8f1b7ab0be3f227b9134ed02bf92044cfd94
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-c-stack.tmp"
+#./test-c-stack${EXEEXT} 2> t-c-stack.tmp
+#case $? in
+#  77) cat t-c-stack.tmp >&2; (exit 77); exit 77 ;;
+#  1) ;;
+#  *) (exit 1); exit 1 ;;
+#esac
+#if grep 'stack overflow' t-c-stack.tmp >/dev/null ; then
+#  :
+#else
+File: ./tests/test-c-stack2.sh
+Hash: 0f27101d5e51c1531872dbbbfbb5b506368d7d6a144a87856a97f8c6ae1f4ab4
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-c-stack2.tmp"
+#
+## Sanitize exit status within a subshell, since some shells fail to
+## redirect stderr on their message about death due to signal.
+#(./test-c-stack${EXEEXT} 1; exit $?) 2> t-c-stack2.tmp
+#
+#case $? in
+#  77) if grep 'stack overflow' t-c-stack2.tmp >/dev/null ; then
+#      if test -z "$LIBSIGSEGV"; then
+#        echo 'cannot tell stack overflow from crash; consider installing libsigsegv' >&2
+File: ./tests/test-c-strcase.sh
+Hash: 08c6d116921579362a23059ad95ba47ee824ef9404b810f66d92b225af9669da
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in the C locale.
+#./test-c-strcasecmp${EXEEXT} || exit 1
+#./test-c-strncasecmp${EXEEXT} || exit 1
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  LC_ALL=$LOCALE_FR ./test-c-strcasecmp${EXEEXT} locale || exit 1
+#  LC_ALL=$LOCALE_FR ./test-c-strncasecmp${EXEEXT} locale || exit 1
+#fi
+#
+## Test in a Turkish UTF-8 locale.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+File: ./tests/test-c-strcasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 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: ./tests/test-c-strcasestr.c
+Hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007, 2008 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: ./tests/test-c-strncasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 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: ./tests/test-c-strstr.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-canonicalize-lgpl.c
+Hash: 75c8baa24049fa693e9d21c4e974cbf52f43450a5b050bec610517bc05fe9464
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of execution of program termination handlers.
+#   Copyright (C) 2007-2008 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: ./tests/test-canonicalize-lgpl.sh
+Hash: 81afe45f5b4980a73878cb5e648cd582ecf66655103424ffe60cb82e671243eb
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-can-lgpl.tmp ise"
+#mkdir t-can-lgpl.tmp
+#test "x$HAVE_SYMLINK" = xyes \
+#  && ln -s t-can-lgpl.tmp/ket ise \
+#  || { echo "Skipping test: symbolic links not supported on this filesystem"
+#       rm -fr $tmpfiles
+#       exit 77
+#     }
+#(cd t-can-lgpl.tmp \
+# && ln -s bef plo \
+File: ./tests/test-canonicalize.c
+Hash: 7c61f923516c2bb3723a7449064aadf6b2ecf9568d3e1e05f1869841160852ad
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of execution of file name canonicalization.
+#   Copyright (C) 2007-2008 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: ./tests/test-canonicalize.sh
+Hash: 179eb3794b8e41c6c38fb9483fc9591a1a45870367cf8694ab22293d2a6fb124
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-can.tmp ise"
+#mkdir t-can.tmp
+#test "x$HAVE_SYMLINK" = xyes \
+#  && ln -s t-can.tmp/ket ise \
+#  || { echo "Skipping test: symbolic links not supported on this filesystem"
+#       rm -fr $tmpfiles
+#       exit 77
+#     }
+#(cd t-can.tmp \
+# && ln -s bef plo \
+File: ./tests/test-carray_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-ceilf1.c
+Hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards positive infinity.
+#   Copyright (C) 2007-2008 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: ./tests/test-ceilf2.c
+Hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards positive infinity.
+#   Copyright (C) 2007-2008 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: ./tests/test-ceill.c
+Hash: e09b1df767b4364cee38177843c6dcd444e346b8bb5b5161b90d8acec2dbf97b
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards positive infinity.
+#   Copyright (C) 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.
+#
+#   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-closein.c
+Hash: 60b704da91782d85057f15589b9adc2d33e1d034e212d4fe256a6e2bc65ffab7
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of closein module.
+#   Copyright (C) 2007, 2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-closein.sh
+Hash: 24747fa1e687723c702708fb4c239cf6e54f59d0a1ba915784eb47e86e4c29ad
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#p=t-closein-
+#tmpfiles="${p}in.tmp ${p}xout.tmp ${p}out1.tmp ${p}out2.tmp"
+#
+#echo Hello world > ${p}in.tmp
+#echo world > ${p}xout.tmp
+#
+## Test with seekable stdin; followon process must see remaining data
+#(./test-closein${EXEEXT}; cat) < ${p}in.tmp > ${p}out1.tmp || exit 1
+#cmp ${p}out1.tmp ${p}in.tmp || exit 1
+File: ./tests/test-cond.c
+Hash: cdf0a1afb208f062d159f0bae1e25a2c661d41e33bae74c541e2bd6700dbd280
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of condition variables in multithreaded situations.
+#   Copyright (C) 2008 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: ./tests/test-copy-acl.c
+Hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of copying of files.
+#   Copyright (C) 2008 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: ./tests/test-copy-acl.sh
+Hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+#test "$USE_ACL" = 0 &&
+#  {
+#    echo "Skipping test: insufficient ACL support"
+#    exit 77
+#  }
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+File: ./tests/test-copy-file.c
+Hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of copying of files.
+#   Copyright (C) 2008 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: ./tests/test-copy-file.sh
+Hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+#func_tmpdir ()
+#{
+#  # Use the environment variable TMPDIR, falling back to /tmp. This allows
+#  # users to specify a different temporary directory, for example, if their
+#  # /tmp is filled up or too small.
+#  : ${TMPDIR=/tmp}
+File: ./tests/test-count-one-bits.c
+Hash: 0a1addad31c87ba1dc9b2149bec84703e74bf936dc6807f45f0df6c679c99eba
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2007-2008 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
+# * along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./tests/test-crc.c
+Hash: e926964a3909208530797cd9796ec1651f592cdf9925dcc36e6e5a566968712f
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005, 2006, 2007 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
+# * along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./tests/test-des.c
+Hash: 2be8e95b0dea714ec5eea7bb03ba88c5768d2dc5376db963fa25bfaae842c979
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005, 2007 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-dirent-safer.c
+Hash: 5a22d0608d61b123ddda55784e14d7d257b9110344b8e19243968d9fa0fd2eff
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test that directory streams leave standard fds alone.
+#   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: ./tests/test-dirname.c
+Hash: 502e96f62d9a5b6ce322bbae2e2710d9e0d9865dbc4afa1e08fe7abf01fea73e
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test the gnulib dirname module.
+#   Copyright (C) 2005, 2006, 2007 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: ./tests/test-dprintf-posix.c
+Hash: e6f0b4694e38d2d1e76dc966dd73d4afb089176883b07410a1b7f22f1e133b33
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible dprintf() function.
+#   Copyright (C) 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.
+#
+#   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-dprintf-posix.sh
+Hash: 87cd228811d69c325ed0768128a0b3f461e85a1cf16115f64a097d662d3f21d1
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-dprintf-posix.tmp t-dprintf-posix.out"
+#./test-dprintf-posix${EXEEXT} > t-dprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-dprintf-posix.tmp > t-dprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-dprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+File: ./tests/test-dup2.c
+Hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test duplicating file descriptors.
+#   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: ./tests/test-dup3.c
+Hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test duplicating file descriptors.
+#   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: ./tests/test-echo.sh
+Hash: 167c0f782ed61e0c577c8644fe6afd5a8c987ce1f93ba3f28228fe90928fddfe
+Copyright:
+License:
+#Header:
+##! /bin/sh
+#
+## func_exit STATUS
+## exit with status
+#func_exit ()
+#{
+#  (exit $1); exit $1
+#}
+#
+## func_fatal_error message
+## outputs to stderr a fatal error message, and terminates the program.
+#func_fatal_error ()
+#{
+#  echo "test-echo.sh: *** $1" 1>&2
+#  echo "test-echo.sh: *** Stop." 1>&2
+File: ./tests/test-environ.c
+Hash: 7f9aff3986d989fd5967abe2d2b072d678411dd664064aef0639f7a7602921bd
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of environ variable.
+#   Copyright (C) 2008 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: ./tests/test-errno.c
+Hash: ca54e2c0451c2ff331290635dc29a1c8f47a42e28a5e85dec52c78e70fa8e810
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <errno.h> substitute.
+#   Copyright (C) 2008 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: ./tests/test-exclude.c
+Hash: 8ebd7047d8c758e1bb24cb360d2ab93d441a88f10b84384950d69c2977c4165d
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test suite for exclude.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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: ./tests/test-exclude1.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-exclude2.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-exclude3.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-exclude4.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-exclude5.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-exclude6.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-exclude7.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-fbufmode.c
+Hash: f8bb902cbd6174946430fea20f8b499d96ef441a74fe87b603adc43f53b24ba9
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fbufmode() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-fchdir.c
+Hash: 1ede59e2649f54965b96b11e3defba44f756e66e2f0c750d5f950f4dbe196fa7
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test changing to a directory named by a file descriptor.
+#   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: ./tests/test-fcntl-h.c
+Hash: 356ce47d3e2061b396a00244416fae41a78a4ff320458994f76699c2d5b742d2
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <fcntl.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-fcntl-safer.c
+Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a file descriptor.
+#   Copyright (C) 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.
+#
+#   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-fdopendir.c
+Hash: 9847782c540349bedfe816a98eff2e2a2b21de374b5eb0bbaa3f59cbb61ae561
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test opening a directory stream from a file descriptor.
+#   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: ./tests/test-fflush.c
+Hash: 69eca960097ee5c280d159ba1477c6fdf640149e0e14e210b536524114a79618
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible fflush() function.
+#   Copyright (C) 2007 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: ./tests/test-fflush2.c
+Hash: 0cb46425ac00337c0a55933b576d483da8c84792991892297731d9ffc746f4bd
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible fflush() function.
+#   Copyright (C) 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,
+#   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-fflush2.sh
+Hash: 9d3df2d637b481f1d5f1437b111dc2061bcf8e995843af8856817103951b1483
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Execute the test only with seekable input stream.
+## The behaviour of fflush() on a non-seekable input stream is undefined.
+#./test-fflush2${EXEEXT} 1 < "$srcdir/test-fflush2.sh" || exit $?
+#./test-fflush2${EXEEXT} 2 < "$srcdir/test-fflush2.sh" || exit $?
+##cat "$srcdir/test-fflush2.sh" | ./test-fflush2${EXEEXT} || exit $?
+#
+#exit 0
+File: ./tests/test-file-has-acl.c
+Hash: 6c2949f3e460929b2f8bf6c01aed469b5cc37a1eb1233352638770c3930df5df
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test for presence of ACL.
+#   Copyright (C) 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,
+#   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-file-has-acl.sh
+Hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+#test "$USE_ACL" = 0 &&
+#  {
+#    echo "Skipping test: insufficient ACL support"
+#    exit 77
+#  }
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+File: ./tests/test-filenamecat.c
+Hash: 2421876d5280739ca72e375a556c1af16509b646f18f3217c4a71c9539b47234
+Copyright: 1996-2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of concatenation of two arbitrary file names.
+#
+#   Copyright (C) 1996-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.
+#
+#   You should have received a copy of the GNU General Public License
+File: ./tests/test-filevercmp.c
+Hash: e9a609c14b8dce43bffbf6d67ec08a74092aa14c279914cd27cf603657ead587
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of filevercmp() function.
+#   Copyright (C) 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-flock.c
+Hash: ed2f3659a200c467c8c3c35b233e01ef87c935180aed9e91946bce9883ea62fe
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Test of flock() function.
+#   Copyright (C) 2008 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-floorf1.c
+Hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards negative infinity.
+#   Copyright (C) 2007-2008 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: ./tests/test-floorf2.c
+Hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards negative infinity.
+#   Copyright (C) 2007-2008 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: ./tests/test-floorl.c
+Hash: 8dd61603c1d098520aa003282269b173ff24e36a22c995a82098236b60c0bd12
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards negative infinity.
+#   Copyright (C) 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.
+#
+#   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-fnmatch.c
+Hash: 0949276b897ba2ca32389bb684582366b42e011338d888e27529fe47643863a0
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fnmatch string matching 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 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: ./tests/test-fopen-safer.c
+Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a file stream.
+#   Copyright (C) 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.
+#
+#   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-fopen.c
+Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a file stream.
+#   Copyright (C) 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.
+#
+#   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-fopen.h
+Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a file stream.
+#   Copyright (C) 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.
+#
+#   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-fpending.c
+Hash: f674acf1725bc698a2a895260a0ed04e4e7d75079bc902bc25df4eda4626648c
+Copyright: 2004, 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Ensure that __fpending works.
+#
+#   Copyright (C) 2004, 2007-2008 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
+File: ./tests/test-fpending.sh
+Hash: db7046a61b7536849f3d58ac4a230b874a449d61a4f33331d2a39e3eb40cf26f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfile=
+#trap 'rm -fr $tmpfile' 1 2 3 15
+#
+#tmpfile=test-fpending.t
+#
+#./test-fpending${EXEEXT} > $tmpfile || exit 1
+#
+#rm -fr $tmpfile
+#
+#exit 0
+File: ./tests/test-fprintf-posix.c
+Hash: 745ab000bd06f41a498df49ee0daf9fa7feaa93b9f16156e4b958405becd413b
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible fprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-fprintf-posix.h
+Hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vsprintf() and sprintf() functions.
+#   Copyright (C) 2007-2008 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: ./tests/test-fprintf-posix.sh
+Hash: 99530f369d42274f641c5404f05d6eac54cef4816643f576b94631d3bd50e8ab
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-fprintf-posix.tmp t-fprintf-posix.out"
+#./test-fprintf-posix${EXEEXT} > t-fprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-fprintf-posix.tmp > t-fprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-fprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+File: ./tests/test-fprintf-posix2.c
+Hash: 61c448e81f453607a13ca6af87bb998cbde812213f3c001d9ad5bcff9cfe6f57
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible fprintf() function.
+#   Copyright (C) 2007 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: ./tests/test-fprintf-posix2.sh
+Hash: 57de5c6be9adb4eb8e8cc416f2c47f934f82f4d3ce6256ce7e72fdfd6a727377
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test out-of-memory handling.
+#
+#(./test-fprintf-posix2${EXEEXT} 0
+# result=$?
+# if test $result != 77 && test $result != 78; then result=1; fi
+# exit $result
+#) 2>/dev/null
+#malloc_result=$?
+#if test $malloc_result = 77; then
+#  echo "Skipping test: getrlimit and setrlimit don't work"
+#  exit 77
+#fi
+File: ./tests/test-fpurge.c
+Hash: fc4f811164270032bce572b9c4f9537ea36963aa67e630a450c0258599c8ddec
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fpurge() function.
+#   Copyright (C) 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.
+#
+#   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-freadable.c
+Hash: 8f818a6a890d5569df82559a4e62b02dfbceff150985e779e219669eebf9ec5a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of freadable() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-freadahead.c
+Hash: 9833934459a057c2572f209afac01879e5ca8a3efda95d6790d17ab9938d1917
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of freadahead() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-freadahead.sh
+Hash: 7d4e9892370ff589533c590bd88ec5f6aea65ce8126c798ab48f96d87cc0de4f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-freadahead${EXEEXT} 0 < "$srcdir/test-freadahead.sh" || exit 1
+#./test-freadahead${EXEEXT} 5 < "$srcdir/test-freadahead.sh" || exit 1
+#exit 0
+File: ./tests/test-freading.c
+Hash: 36417f8adf8660daefb24719abfcd2d6df61a952656fe82370e243753bce4bd6
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of freading() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-freadptr.c
+Hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of freadptr() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-freadptr.sh
+Hash: d77d62afd49fb9b006aa3f1b2e41fb246f8f4e6ed232637b8c5efb02e31f6e9d
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-freadptr${EXEEXT} 5 < "$srcdir/test-freadptr.sh" || exit 1
+#cat "$srcdir/test-freadptr.sh" | ./test-freadptr${EXEEXT} 5 || exit 1
+#exit 0
+File: ./tests/test-freadptr2.c
+Hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of freadptr() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-freadptr2.sh
+Hash: 9e8bf4b4fdad153f5bcaf5d3d9a51c2b362cc5e21262c769e87e36bf29f6f3d3
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-freadptr2${EXEEXT} 0 < "$srcdir/test-freadptr2.sh" || exit 1
+#./test-freadptr2${EXEEXT} 5 < "$srcdir/test-freadptr2.sh" || exit 1
+#exit 0
+File: ./tests/test-freadseek.c
+Hash: dd89379556b28cba841ae08e74f0d92b1739c31a7e399dcdec050f4e73a51430
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of freadseek() function.
+#   Copyright (C) 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.
+#
+#   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-freadseek.sh
+Hash: 8c922bdee150c36bbbc68d2273511885bd4f54145ec4e0e0b74333e9ab68c5e1
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-freadseek${EXEEXT} 5 19 6 7 18 9 19 < "$srcdir/test-freadseek.sh" || exit 1
+#cat "$srcdir/test-freadseek.sh" | ./test-freadseek${EXEEXT} 5 19 6 7 18 9 19 || exit 1
+#exit 0
+File: ./tests/test-freopen.c
+Hash: 1794fac0885679928991ce38c01ee4e5e23331ca73e89de6fa05c0d731ac9ae6
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a file stream.
+#   Copyright (C) 2007-2008 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: ./tests/test-frexp.c
+Hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of splitting a double into fraction and mantissa.
+#   Copyright (C) 2007-2008 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: ./tests/test-frexpl.c
+Hash: 06e5c7a95b4f9162db1d74f609c89b24736a09affac663df79cce627cac4355a
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of splitting a 'long double' into fraction and mantissa.
+#   Copyright (C) 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.
+#
+#   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-fseek.c
+Hash: ae3126d4ce719f8e50ae5bd6defb067f936333ddd967e018d9d63614e1510ba7
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fseek() function.
+#   Copyright (C) 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,
+#   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-fseek.sh
+Hash: a221109e451414ff3596a9e2fc85ecad8dc9a4b5d41c4be22ca4e8d4bdaaedcf
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-fseek${EXEEXT} 1 < "$srcdir/test-fseek.sh" || exit 1
+#echo hi | ./test-fseek${EXEEXT} || exit 1
+#exit 0
+File: ./tests/test-fseek2.sh
+Hash: 9312e62b8100ef1a5c959e559f4347907430ddca9ad4854cd611110b0768ad4d
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#exec ./test-fseek${EXEEXT} 1 2 < "$srcdir/test-fseek2.sh"
+File: ./tests/test-fseeko.c
+Hash: 1560dd162ef0b3cfb7b9b2202b21bf9933c216776fc89f20361e521f162b3ce6
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fseeko() function.
+#   Copyright (C) 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,
+#   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-fseeko.sh
+Hash: 5d1445019d710edf18f8405db195d0e08c95a9f8bb20b59f25e5f0d22e19dba8
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-fseeko${EXEEXT} 1 < "$srcdir/test-fseeko.sh" || exit 1
+#echo hi | ./test-fseeko${EXEEXT} || exit 1
+#exit 0
+File: ./tests/test-fseeko2.sh
+Hash: 4c322333a62415b01f183b120936fc72916ad98c98b42ee36bc50c14d8651559
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#exec ./test-fseeko${EXEEXT} 1 2 < "$srcdir/test-fseeko2.sh"
+File: ./tests/test-fseterr.c
+Hash: 9573252bfae2fe4f10686e73eb86cc0d662f2e25a23b7a4f70036ae38ca30ddf
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test setting the error indicator of a stream.
+#   Copyright (C) 2007 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: ./tests/test-fstrcmp.c
+Hash: a7b983fc8ba0e4d673899f2631eae4461eeb11be8a5a01a6f57ff6790dde39f9
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fuzzy string comparison.
+#   Copyright (C) 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.
+#
+#   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-fsync.c
+Hash: c3f28d94e1d2539f92e889ad3322fbc9b5fcb9c406f9840452cf355766627792
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Test of fsync() function.
+#   Copyright (C) 2008 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-ftell.c
+Hash: b7573164fb69e7149847239bf7ceb7db79f453822f1cbda04e22a52283b3281d
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ftell() function.
+#   Copyright (C) 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,
+#   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-ftell.sh
+Hash: 86795dd7b612958804e50342aecbc2d23222542142f4e6a6408e4f10a1f6a2dc
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-ftell${EXEEXT} 1 < "$srcdir/test-ftell.sh" || exit 1
+#echo hi | ./test-ftell${EXEEXT} || exit 1
+#exit 0
+File: ./tests/test-ftell2.sh
+Hash: 9290b195ad04a0d882c97eea29fb2ce8c5a4a9eedd6b43841d516a027908ccd2
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#exec ./test-ftell${EXEEXT} 1 2 < "$srcdir/test-ftell2.sh"
+File: ./tests/test-ftello.c
+Hash: e34687ed84f4523c387c8408a168176c62b7e3da1d7e5c51fd2dbfdd11b61cf9
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ftello() function.
+#   Copyright (C) 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,
+#   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-ftello.sh
+Hash: 3fecd8a2adefe6f15a998f136266ef37222cf6273ba1da4cce7d097635bde45e
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#./test-ftello${EXEEXT} 1 < "$srcdir/test-ftello.sh" || exit 1
+#echo hi | ./test-ftello${EXEEXT} || exit 1
+#exit 0
+File: ./tests/test-ftello2.sh
+Hash: d6d309f9866760abce0c773c476943b19b6201596ed4ce4b3163ca3c5510c760
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#exec ./test-ftello${EXEEXT} 1 2 < "$srcdir/test-ftello2.sh"
+File: ./tests/test-func.c
+Hash: bc81ef2fd91ed0c929de4c4958fe9d6af9f4b08a310f02929b7244bc9c3821db
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test whether __func__ is available
+#   Copyright (C) 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,
+#   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-fwritable.c
+Hash: 319d6c836c355f4f63122cc2f7ba0756183810d27488a8e5a4f09305d31c19d9
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fwritable() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-fwriting.c
+Hash: 499f0954d31a94d7067eb0be27b75766f56ab69c0494e2845759fb24d1703f4e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of fwriting() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-gc-arcfour.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-arctwo.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-des.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-hmac-md5.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-hmac-sha1.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-md2.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-md4.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-md5.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-pbkdf2-sha1.c
+Hash: 7799cf357547a841ccf3afeb7e5d9143abc19ee0a898cb087d2de1bb492bae59
+Copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2002, 2003, 2004, 2005, 2007  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 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+# * along with this program; if not, write to the Free Software
+File: ./tests/test-gc-rijndael.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc-sha1.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-gc.c
+Hash: 8cb1d73b6c4bd47920f369b94539807ae13559bf31d128fea4584223d60675a0
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005, 2006 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-getaddrinfo.c
+Hash: 97815c6bb90ea2860ebdfcd9dfc8554dcbfa522d7aa8ba38ddecbc126e096a8d
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test the getaddrinfo module.
+#
+#   Copyright (C) 2006-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
+File: ./tests/test-getdate.c
+Hash: 935427c30258eb6e5a9b394cc5d96c1427d7abe260fe0b81fe448b30a4171ba3
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of getdate() function.
+#   Copyright (C) 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-getdelim.c
+Hash: c90cc89f32a451ccbfe0910eb584fd389f60f2b051affa2dbe2bdc9d80097081
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of getdelim() function.
+#   Copyright (C) 2007-2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-getdtablesize.c
+Hash: 434e5606cbd9d33002d0e279a6af31645a13f37bf9492b61df63bdd7fac591ce
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of getdtablesize() function.
+#   Copyright (C) 2008 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: ./tests/test-gethostname.c
+Hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008, 2009 Free Software Foundation
+# * Written by Simon Josefsson.
+# *
+# * 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: ./tests/test-getline.c
+Hash: 324eb53650a3b992efd3fc0cce526be56e493dac9a686c8f32b40a845358556d
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of getline() function.
+#   Copyright (C) 2007-2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-getndelim2.c
+Hash: ad18c635ec03c40547062fe271ebb6703e1d91c537b7adf63937c9ae962c1913
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of getndelim2() function.
+#   Copyright (C) 2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-getopt.c
+Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of command line argument processing.
+#   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: ./tests/test-getopt.h
+Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of command line argument processing.
+#   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: ./tests/test-getopt_long.h
+Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of command line argument processing.
+#   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: ./tests/test-getpass.c
+Hash: 9a0c1937fde38c70927a4eeb336d442bd6127bc5eb69e09a5cd4deb09e2fc195
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Test getpass implementation.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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: ./tests/test-gettimeofday.c
+Hash: 5b419f77d9b7e6e89f7289f386cd548243e4e4adc21e9a52d41d21a027fdf8ee
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005, 2007 Free Software Foundation
+# * Written by Jim Meyering.
+# *
+# * 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: ./tests/test-glob.c
+Hash: 90a78aa60a23cad4495713152d6c476d4e43d510a6392ab6368173e374d14d04
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of glob/globfree functions.
+#   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: ./tests/test-hash.c
+Hash: a74fab88b5cf12f0e0d435a4a5e3fd5e55078cae553004def0998b9222616a24
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2009 Free Software Foundation
+# * Written by Jim Meyering
+# *
+# * 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: ./tests/test-hmac-md5.c
+Hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005 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
+# * along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./tests/test-hmac-sha1.c
+Hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005 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
+# * along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+File: ./tests/test-i-ring.c
+Hash: 6f100cd5549d218db3fc88df418a556f9aac62f0bcf54163da4ad21c84ccb129
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the simple ring buffer.
+#   Copyright (C) 2006-2008 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: ./tests/test-iconv-utf.c
+Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of character set conversion.
+#   Copyright (C) 2007-2008 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: ./tests/test-iconv.c
+Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of character set conversion.
+#   Copyright (C) 2007-2008 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: ./tests/test-iconvme.c
+Hash: d82c108598a30a83eb25992c35c31945f938c62e30203a312361e842c432d069
+Copyright: 2004, 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Recode strings between character sets, using iconv.
+#   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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: ./tests/test-idpriv-drop.c
+Hash: 887a2d06234e0105a076274b1c0cb5a4b97b25977378f755f305ead016dae39e
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of dropping uid/gid privileges of the current process permanently.
+#   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: ./tests/test-idpriv-drop.sh
+Hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+## The user's original uid and gid.
+#uid=`$ID -u`
+#gid=`$ID -g`
+#
+#if test `$ID -u` = 0; then
+#  # No need to ask for a password.
+File: ./tests/test-idpriv-drop.su.sh
+Hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+Copyright:
+License:
+#Header:
+##!/bin/sh
+## This script must be run as superuser.
+#
+#origuid=$1
+#origgid=$2
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+#if test `$ID -u` != 0; then
+#  echo "Skipping test: not superuser"
+File: ./tests/test-idpriv-droptemp.c
+Hash: 036d78805f967b4753cdba6e50cac8854f7b24390bbf73b5a2d7f0fd6e1c903c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of dropping uid/gid privileges of the current process temporarily.
+#   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: ./tests/test-idpriv-droptemp.sh
+Hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+## The user's original uid and gid.
+#uid=`$ID -u`
+#gid=`$ID -g`
+#
+#if test `$ID -u` = 0; then
+#  # No need to ask for a password.
+File: ./tests/test-idpriv-droptemp.su.sh
+Hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+Copyright:
+License:
+#Header:
+##!/bin/sh
+## This script must be run as superuser.
+#
+#origuid=$1
+#origgid=$2
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+#if test `$ID -u` != 0; then
+#  echo "Skipping test: not superuser"
+File: ./tests/test-inttypes.c
+Hash: 8ca6a2b71d7f538cc79e407439bcd512ffca9203636f7cb336cd8c0d12d322fa
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <inttypes.h> substitute.
+#   Copyright (C) 2006-2007 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: ./tests/test-isfinite.c
+Hash: 192e0aefe852ad279cf33f30acbf1e6a5a685ea90a52bda5174baf39c06cd339
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isfinite() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isinf.c
+Hash: 467c934361d927c8eb3bb47ae9844379ca009c7ebc4845dd28e567813ab1efcb
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isinf() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnan.c
+Hash: f1159b7f32f37a46e32fc884afa11c72818e02511e9332ee213bd99ffe3319f8
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnand() substitute.
+#   Copyright (C) 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.
+#
+#   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-isnand-nolibm.c
+Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnand() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnand.c
+Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnand() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnand.h
+Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnand() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnanf-nolibm.c
+Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnanf() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnanf.c
+Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnanf() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnanf.h
+Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnanf() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnanl-nolibm.c
+Hash: d24217e860acd20ff34dacb3bc316ab34a3af4a1d47241da882a51348e4bc34b
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnanl() substitute.
+#   Copyright (C) 2007 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: ./tests/test-isnanl.c
+Hash: a6dad044535d0b8182f8331618c092ddc94769e6aee495678f102047711f05e7
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnanl() substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-isnanl.h
+Hash: 1ccd58e1e4f6b9d59404fddbe589f2e34e40ea508081a567040c100b60b197c3
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of isnanl() substitute.
+#   Copyright (C) 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.
+#
+#   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-ldexpl.c
+Hash: 7ee31a7a49ffebce6a7c8f0225d169567e0be429e67a89882ae1670f5ae9075c
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of multiplying a 'long double' by a power of 2.
+#   Copyright (C) 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.
+#
+#   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-link.c
+Hash: 26cc2a58a305192996a7e8ee065b4bf8254c9b13d4e9f4efbe3c77777e2fc065
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/* Test of link() 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-link.sh
+Hash: 1b15e579dd41f894ef55727093cb2490e586dd857fcd726339f4a59203a8fa68
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles="test-link-a.txt test-link-b.txt test-link-c.txt"
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+## Create a file.
+#echo "hello" > test-link-a.txt || exit 1
+#
+## Use link() to create a new name for it.
+#./test-link${EXEEXT} test-link-a.txt test-link-b.txt
+#case $? in
+#  0) ;;
+#  77)
+#    echo "Skipping test: hard links are not supported on this file system"
+#    rm -fr $tmpfiles
+File: ./tests/test-linked_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-linkedhash_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-locale.c
+Hash: 13e3a273bd14c7064068652cb01722dab29c3661de434218afc58cf29f5900d8
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <locale.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-localename.c
+Hash: 7695c1b31209fab6aba6c16e3b612f606d1eae1b0720f1781148cab7fd964e7e
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of gl_locale_name function.
+#   Copyright (C) 2007, 2008 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: ./tests/test-lock.c
+Hash: b995e7ccbf41d3f3ae5e9ed223ede35060a5c1ac152baaf9793fd8bd43210b93
+Copyright: 2005, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locking in multithreaded situations.
+#   Copyright (C) 2005, 2008 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: ./tests/test-lseek.c
+Hash: 67b2fb2011956d378309801b9f809b54658434eb8b2a5c6a77b87090bfbfa9ef
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of lseek() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-lseek.sh
+Hash: 103b304131e87f84ebdf7fe51ddbca5d1de74d1b231c0e8d0f1f74edb60aacf4
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles=t-lseek.tmp
+## seekable files
+#./test-lseek${EXEEXT} 0 < "$srcdir/test-lseek.sh" > t-lseek.tmp || exit 1
+#
+## pipes
+#echo hi | ./test-lseek${EXEEXT} 1 | cat || exit 1
+#
+## closed descriptors
+#./test-lseek${EXEEXT} 2 <&- >&- || exit 1
+File: ./tests/test-lstat.c
+Hash: 9cafdb021e073473c5f16a5b4f74a2ac31579de14aadebbdef5a0f625250d0e8
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of lstat() function.
+#   Copyright (C) 2008 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: ./tests/test-malloca.c
+Hash: 687b864c60a0a939b2d06d15f71bedc6640551c5a46b9d97cf954b7b9dad01aa
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of safe automatic memory allocation.
+#   Copyright (C) 2005, 2007 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: ./tests/test-math.c
+Hash: 5e0b0077a9753a2a6ab13b7d12ba7a95c37cc998e3886d96a0c15b55bd951f48
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <math.h> substitute.
+#   Copyright (C) 2007, 2008 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: ./tests/test-mbmemcasecmp.c
+Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive memory area comparison function.
+#   Copyright (C) 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.
+#
+#   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-mbmemcasecmp.h
+Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive memory area comparison function.
+#   Copyright (C) 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.
+#
+#   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-mbmemcasecmp1.sh
+Hash: 7304bc74f3d3a258e8210ea8a863f27aab54802b024dabb25a34b9549960b9f5
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbmemcasecmp${EXEEXT} 1
+File: ./tests/test-mbmemcasecmp2.sh
+Hash: d16fd0422c4a2d96385d5b90b9c0f2c8f969de1dd4a33c5bb02fa4ac381f6f4d
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbmemcasecmp${EXEEXT} 2
+File: ./tests/test-mbmemcasecmp3.sh
+Hash: eb492e8155da1b1de4e2250f06e478962793d6cabe9a519fd2384d15110677e7
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbmemcasecmp${EXEEXT} 3
+File: ./tests/test-mbmemcasecoll.c
+Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive memory area comparison function.
+#   Copyright (C) 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.
+#
+#   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-mbmemcasecoll1.sh
+Hash: faed7a5be2e3810c0ffc7a90a52082c8f5cf3db405497a7e9010d2c719231ff6
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbmemcasecoll${EXEEXT} 1
+File: ./tests/test-mbmemcasecoll2.sh
+Hash: f4fab277f9f292c7d753f3600aff43593c48069a4a3f6265958aa87a8c312491
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbmemcasecoll${EXEEXT} 2
+File: ./tests/test-mbmemcasecoll3.sh
+Hash: 331ac5a20f06f5d44432e5fa4396101952cb6e60bbaf36beee49e11ca7933770
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbmemcasecoll${EXEEXT} 3
+File: ./tests/test-mbrtowc.c
+Hash: 9e6ff6c6e393938dfae1ad3aa59b09a1aff3de7914e1d9b850ea0c62a2865a0a
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion of multibyte character to wide character.
+#   Copyright (C) 2008 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: ./tests/test-mbrtowc1.sh
+Hash: aa376c39dd66d55e6cbbc2acb3c88909aef3ab2b5dd2b88b64237d1a5113a325
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbrtowc${EXEEXT} 1
+File: ./tests/test-mbrtowc2.sh
+Hash: d05e570292161c8c07a2800cbb86f2f1daad410c45f9cc4d75885cb775ef3edd
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbrtowc${EXEEXT} 2
+File: ./tests/test-mbrtowc3.sh
+Hash: a961e18d55829ef9ae6b5b67be607ed9c09ad44805d1958dec5a216b8b2d4dd2
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-mbrtowc${EXEEXT} 3
+File: ./tests/test-mbrtowc4.sh
+Hash: edcefd4d5f047e46e09c57c8f49fd8a5acf6198d6e1457b0b0f8d0a35c8acb36
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbrtowc${EXEEXT} 4
+File: ./tests/test-mbscasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbscasecmp.sh
+Hash: c400cba3bdc37f57ff59514590ef1c1ffb525def25363dc057cb795350258088
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbscasecmp${EXEEXT}
+File: ./tests/test-mbscasestr1.c
+Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbscasestr2.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbscasestr2.sh
+Hash: 7625b9217b1cb7efd0991f90f4f63de80e96364a81c197d42ff0ea48ff92474a
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbscasestr2${EXEEXT}
+File: ./tests/test-mbscasestr3.c
+Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbscasestr3.sh
+Hash: 7bea28d4bcddc0db1d408f47ea4d152507a19397c06a739f5f996b2dcbb95f8c
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbscasestr3${EXEEXT}
+File: ./tests/test-mbscasestr4.c
+Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbscasestr4.sh
+Hash: 7499e59252f59878b81950d351ed8786d455589a88cd005e7ff98abd521ae4b7
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbscasestr4${EXEEXT}
+File: ./tests/test-mbschr.c
+Hash: e5d6bd10ed694e87f1e1f158fda3d9e3bfe798703c35c003123ad801a988cd9e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching a string for a character.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbschr.sh
+Hash: 7a680a0884655b6591b91b98d2e0192e1defe778a12f3a5bf271aa6a761692a5
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbschr${EXEEXT}
+File: ./tests/test-mbscspn.c
+Hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching a string for a character among a given set of characters.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbscspn.sh
+Hash: 15cc680a7cb6f0f0f80715a88a5c62b67c5ae2c99589420be9f5a7312d252e3a
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbscspn${EXEEXT}
+File: ./tests/test-mbsinit.c
+Hash: 0a0f9a89e23f44ce8d21a21ec2345e1f3022ba9e3e35e2705f7347e5d3da89c9
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test for initial conversion state.
+#   Copyright (C) 2008 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: ./tests/test-mbsinit.sh
+Hash: 104168895eecfbae80f96f8abd4c73822d9dcb2ce305f8020a0424fe2d55a660
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsinit${EXEEXT}
+File: ./tests/test-mbsncasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbsncasecmp.sh
+Hash: 50eadc9df534559ed5509be4a6af2522252ace74a00646bceff01daa139b622d
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbsncasecmp${EXEEXT}
+File: ./tests/test-mbsnrtowcs.c
+Hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion of string to wide string.
+#   Copyright (C) 2008 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: ./tests/test-mbsnrtowcs1.sh
+Hash: 5db850b49c6897a60588a348aadf7f5ad696f27f58876613cb686088e82065ad
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbsnrtowcs${EXEEXT} 1
+File: ./tests/test-mbsnrtowcs2.sh
+Hash: c861368b11ee095bb6d9f0229cc3a369b8a0244e453dc686b3540a954bc1b155
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsnrtowcs${EXEEXT} 2
+File: ./tests/test-mbsnrtowcs3.sh
+Hash: a8194d6aefb2a02a416354be9e9474c0c19403adf757cb21204119931c188056
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-mbsnrtowcs${EXEEXT} 3
+File: ./tests/test-mbsnrtowcs4.sh
+Hash: db2098f520d0c8aeebc9ec8e24bcb668e5ce3afd425e13c07d4bd7c3a7ab51d6
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsnrtowcs${EXEEXT} 4
+File: ./tests/test-mbspbrk.c
+Hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching a string for a character among a given set of characters.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbspbrk.sh
+Hash: b68f5c5e76fdb5ff39f3a4b137f26afec83fbedd80132cb547663c5113395523
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbspbrk${EXEEXT}
+File: ./tests/test-mbspcasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbspcasecmp.sh
+Hash: 0dc0b806a5fc1a9d2110db05246da688cf15390dc3d79948a5d6a2bbf2040af3
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbspcasecmp${EXEEXT}
+File: ./tests/test-mbsrchr.c
+Hash: 336d238f34950347720810d4eba15e4d22a9aa84098f3ec41fd2856d8aedf6d7
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching a string for the last occurrence of a character.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbsrchr.sh
+Hash: f8f59a2913930da2af1851dc24468f2921742b6091b86a65e284b38b418a1397
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsrchr${EXEEXT}
+File: ./tests/test-mbsrtowcs.c
+Hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion of string to wide string.
+#   Copyright (C) 2008 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: ./tests/test-mbsrtowcs1.sh
+Hash: fb24fa64654c7d2c588311970717aea290a3291349f8a5611aaa761713119cc6
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbsrtowcs${EXEEXT} 1
+File: ./tests/test-mbsrtowcs2.sh
+Hash: 8d030f6028e543b4d93dfb8f14b84edd1541dc11d65ce84d512191a78bc1b4fe
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsrtowcs${EXEEXT} 2
+File: ./tests/test-mbsrtowcs3.sh
+Hash: b23b005a9360d7365bfc10ca426905259d2d38be17a55283e063f01a62ec8332
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-mbsrtowcs${EXEEXT} 3
+File: ./tests/test-mbsrtowcs4.sh
+Hash: 207d7ee682369340ed853b46675579d3be4a2707c2299493f560022e518ab334
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsrtowcs${EXEEXT} 4
+File: ./tests/test-mbsspn.c
+Hash: 2708b6a1359116604ffd1f0488e510bef6ee687588f481e0cad37ed0ec848913
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching a string for a character outside a given set of characters.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbsspn.sh
+Hash: e0bd7e62a91c072db88164046ecd6f42c88ce44a634a76eb1c83c248831dd936
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsspn${EXEEXT}
+File: ./tests/test-mbsstr1.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbsstr2.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbsstr2.sh
+Hash: 1d805ef1e6eab2c44e8668fa623a5d246869cb3f39a685c4a3135996e45ead77
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsstr2${EXEEXT}
+File: ./tests/test-mbsstr3.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 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: ./tests/test-mbsstr3.sh
+Hash: 880ac90918e954ae500cce18004a2592619063b0cb6de41740f197f38df9d415
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsstr3${EXEEXT}
+File: ./tests/test-md2.c
+Hash: abf2f70a1887b653b034add8c99c0436a2e3751e63f73929660b24930fa9f795
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 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 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+# * along with this program; if not, write to the Free Software
+File: ./tests/test-md4.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-2+
+  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, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+#Header:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * This program is free software; you can redistribute it and/or modify
+# * it under the terms of the GNU General Public License as published by
+# * the Free Software Foundation; either version 2, or (at your option)
+# * any later version.
+# *
+# * This program is distributed in the hope that it will be useful,
+# * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# * GNU General Public License for more details.
+# *
+# * You should have received a copy of the GNU General Public License
+File: ./tests/test-md5.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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: ./tests/test-memchr.c
+Hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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: ./tests/test-memchr2.c
+Hash: 8d79550f65f0123da4f6be14234e0fe15616b4ddea78f81d77dd51fd37973be6
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Eric Blake
+# *
+# * 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: ./tests/test-memcmp.c
+Hash: e18a4806f468c3a8e062e5dce871b138ea023af8f3f3aecc2830380fc2d28f6c
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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: ./tests/test-memmem.c
+Hash: 382e52373b1850a70886e1a8b5e6036b56dc71e1a7308522c9bc833e27a18406
+Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2004, 2007-2009 Free Software Foundation
+# * Written by Bruno Haible and Eric Blake
+# *
+# * 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: ./tests/test-memrchr.c
+Hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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: ./tests/test-netdb.c
+Hash: cf4bf72aa3b66b389ba6ec0da06aefe83c95f0654339a77a8704612bb9599120
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <netdb.h> substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-netinet_in.c
+Hash: a848df8c2e882b20250b3a4d479e8fada3d528f8fce8c5627355d6304c80b4dc
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <netinet/in.h> substitute.
+#   Copyright (C) 2007 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: ./tests/test-obstack-printf.c
+Hash: 9feff5ec7cbb16735b6c9d63f6b8c2bd3d3f4c5553f9b996be3f8cfe4240e4c4
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of obstack_printf() and obstack_vprintf() functions.
+#   Copyright (C) 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,
+#   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-open.c
+Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a file descriptor.
+#   Copyright (C) 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.
+#
+#   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-open.h
+Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a file descriptor.
+#   Copyright (C) 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.
+#
+#   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-openat-safer.c
+Hash: d06869d5a44b4d7270af94cdbbb1d4190957d4292c3af8b9564002d4e4d1c985
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test that openat_safer leave standard fds alone.
+#   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: ./tests/test-parse-duration.c
+Hash: 35362dc2615751df013220bee2763c001ae65724f6a65a56708d422de57273a8
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of parsing durations.
+#   Copyright (C) 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,
+#   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-parse-duration.sh
+Hash: 2fe603e83804acfadc681a8ed77a25f4146601c1502c37ef8ee8714cfba3919b
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#prog=test-parse-duration
+#
+#exe=`pwd`/${prog}${EXEEXT}
+#nl='
+#'
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+#func_tmpdir ()
+File: ./tests/test-perror.c
+Hash: 63d18ff5d46be6478f9569c7270da67595712bcaf5d1057c6948359c2cc04bf5
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of perror() function.
+#   Copyright (C) 2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-perror.sh
+Hash: 83349ba638f6ffc10680f2e78e438f0e6f20a812237b89ded57d8b48a10ffc79
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+## Test NULL prefix. Result should not contain a number.
+#tmpfiles="$tmpfiles t-perror.tmp"
+#./test-perror${EXEEXT} 2>&1 >/dev/null | LC_ALL=C tr -d '\r' > t-perror.tmp
+#if grep '[0-9]' t-perror.tmp > /dev/null; then
+#  rm -fr $tmpfiles; exit 1
+#fi
+#
+## Test empty prefix. Result should be the same.
+#tmpfiles="$tmpfiles t-perror1.tmp"
+#./test-perror${EXEEXT} '' 2>&1 >/dev/null | LC_ALL=C tr -d '\r' > t-perror1.tmp
+File: ./tests/test-pipe-filter-gi1.c
+Hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of filtering of data through a subprocess.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009.
+#
+#   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: ./tests/test-pipe-filter-gi1.sh
+Hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Find a 'tr' program that supports character ranges in the POSIX syntax.
+## Solaris /usr/bin/tr does not.
+#if test -f /usr/xpg6/bin/tr; then
+#  TR=/usr/xpg6/bin/tr
+#else
+#  if test -f /usr/xpg4/bin/tr; then
+#    TR=/usr/xpg4/bin/tr
+#  else
+#    TR=tr
+#  fi
+#fi
+#
+## A small file.
+File: ./tests/test-pipe-filter-gi2-child.c
+Hash: 00ffadb86a75c8f0e27d3d9e7c2c7061b6f4fd0bf9f0ab3ea26323aa6824c621
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Child program invoked by test-pipe-filter-gi2-main.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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: ./tests/test-pipe-filter-gi2-main.c
+Hash: c786b65d8861d3f3889afb7eb1b454ce25bce48f093eee46d8d331939cc7ba71
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test harness for pipe-filter-gi.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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: ./tests/test-pipe-filter-gi2.sh
+Hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+#
+## pipe-filter test driver.
+##
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+##
+## 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
+File: ./tests/test-pipe-filter-ii1.c
+Hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of filtering of data through a subprocess.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009.
+#
+#   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: ./tests/test-pipe-filter-ii1.sh
+Hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Find a 'tr' program that supports character ranges in the POSIX syntax.
+## Solaris /usr/bin/tr does not.
+#if test -f /usr/xpg6/bin/tr; then
+#  TR=/usr/xpg6/bin/tr
+#else
+#  if test -f /usr/xpg4/bin/tr; then
+#    TR=/usr/xpg4/bin/tr
+#  else
+#    TR=tr
+#  fi
+#fi
+#
+## A small file.
+File: ./tests/test-pipe-filter-ii2-child.c
+Hash: bac3649c854de7b46c60ca030b7a379e4abe24edddb70e3dc6e6cf9f1bfc7e8c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Child program invoked by test-pipe-filter-ii2-main.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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: ./tests/test-pipe-filter-ii2-main.c
+Hash: 8c157d6df939e6d434fec71cdf844cfe366d062d871530d04c05a4f12ae9559d
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test harness for pipe-filter-ii.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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: ./tests/test-pipe-filter-ii2.sh
+Hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+#
+## pipe-filter test driver.
+##
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+##
+## 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
+File: ./tests/test-pipe.c
+Hash: 87b0ce6f07c7dc998dccca7755d36b68474a4fa9fa1c5479346bbd2a228eeaf9
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of create_pipe_bidi/wait_subprocess.
+#   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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-pipe.sh
+Hash: 5dbadef404d16dd74e75f251acc266a81438820ea0ab58d558a96804b6d1dd30
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#st=0
+#for i in 0 1 2 3 4 5 6 7 ; do
+#  ./test-pipe${EXEEXT} $i \
+#    || { echo test-pipe.sh: iteration $i failed >&2; st=1; }
+#done
+#exit $st
+File: ./tests/test-pipe2.c
+Hash: 73c73a849418178f4ce6c9ad2e85a4a66257efbeeb4c1848901ab0c3bcd6a2cd
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of pipe2.
+#   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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-poll.c
+Hash: 7970e5d5d232352391d076f73881bb98e1eaa9346930e8f191a49ce549b152eb
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of poll() function.
+#   Copyright (C) 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-popen-safer.c
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a subcommand stream.
+#   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: ./tests/test-popen-safer2.c
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a subcommand stream.
+#   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: ./tests/test-popen.c
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a subcommand stream.
+#   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: ./tests/test-popen.h
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of opening a subcommand stream.
+#   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: ./tests/test-posix_spawn1.c
+Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of posix_spawn() function.
+#   Copyright (C) 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,
+#   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-posix_spawn1.in.sh
+Hash: 7e7d5c66755ac83d083956f83bfe65ca2c9536cd8b0bd4555a6ba2a03e118aae
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#echo "Halle Potta"
+File: ./tests/test-posix_spawn2.c
+Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of posix_spawn() function.
+#   Copyright (C) 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,
+#   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-posix_spawn2.in.sh
+Hash: 781d49e1169694f7f7b1db78fc097258bfd1c59d1af21f695f2159606a696251
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#read line
+#test "$line" = "Halle Potta"
+File: ./tests/test-posix_spawn3.c
+Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of posix_spawn() function.
+#   Copyright (C) 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,
+#   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-printf-frexp.c
+Hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of splitting a double into fraction and mantissa.
+#   Copyright (C) 2007-2008 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: ./tests/test-printf-frexpl.c
+Hash: d9ae7fb6f3efade21dd6bd4f8e39296b78ebe14a2b6904928a9ef5f08847f210
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of splitting a 'long double' into fraction and mantissa.
+#   Copyright (C) 2007-2008 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: ./tests/test-printf-posix.c
+Hash: e0609f5e2368ee405f7f4a205a106a397a6c889e06ede598f31189fd2786ea64
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible printf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-printf-posix.h
+Hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vsprintf() and sprintf() functions.
+#   Copyright (C) 2007-2008 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: ./tests/test-printf-posix.output
+Hash: 213315ade646809669a3e177d40a9b01d9430eb55ba1cd18dbc5b5e154433a5a
+Copyright:
+License:
+#Header:
+#12345671 33
+#12345672 33
+#12345673 33
+#0x0p+0 33
+#inf 33
+#-inf 33
+#       inf 33
+#12.750000 33
+#1234567.000000 33
+#-0.031250 33
+#0.000000 33
+#00001234.000000 33
+#1234 33
+#999.95 33
+#1000.00 33
+File: ./tests/test-printf-posix.sh
+Hash: 239e312ff4456b546521d2f0bd0ef84e7286d685ba3477b95b13b0f8aa071f84
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-printf-posix.tmp t-printf-posix.out"
+#./test-printf-posix${EXEEXT} > t-printf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-printf-posix.tmp > t-printf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-printf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+File: ./tests/test-printf-posix2.c
+Hash: f0fff3bfac69b0e70b8370a65b5668bb8c0049c0bd3c7d673c22591f45effae1
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible printf() function.
+#   Copyright (C) 2007 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: ./tests/test-printf-posix2.sh
+Hash: 5c422546366bb292df14233c6829abd4a7154bbc5b7dbf1b21fe2dd4601b8f6f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test out-of-memory handling.
+#
+#(./test-printf-posix2${EXEEXT} 0
+# result=$?
+# if test $result != 77 && test $result != 78; then result=1; fi
+# exit $result
+#) 2>/dev/null
+#malloc_result=$?
+#if test $malloc_result = 77; then
+#  echo "Skipping test: getrlimit and setrlimit don't work"
+#  exit 77
+#fi
+File: ./tests/test-priv-set.c
+Hash: 459b0d2a4e2ca34dd43609ddf4f6fc9da4ac8485be1f363e50eac88501417fcc
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test the priv-set module.
+#   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: ./tests/test-quotearg.c
+Hash: 104703e4201fb5c043c5e3504cebdaf76bee31f82635cd179c12eb576cb8e015
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of quotearg family of functions.
+#   Copyright (C) 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-quotearg.sh
+Hash: 7e0d01aab336e5acc014edc2ff951d5234d4e4bad05e5680cca7931c706e5172
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Choose an existing locale. The locale encoding does not matter; see the
+## comment in test-quotearg.po.
+#if test $LOCALE_FR_UTF8 != none; then
+#  locale=$LOCALE_FR_UTF8
+#else
+#  if test $LOCALE_FR != none; then
+#    locale=$LOCALE_FR
+#  else
+#    locale=none
+#  fi
+#fi
+#
+#LOCALE=$locale LOCALEDIR="$srcdir/locale" \
+File: ./tests/test-random_r.c
+Hash: 6a99ec02e3274e3054358cfae33be3f646de66a86a4c1190e2459dd79154f0c5
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test random_r.
+#   Copyright (C) 2008 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: ./tests/test-rawmemchr.c
+Hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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: ./tests/test-rbtree_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-rbtree_oset.c
+Hash: e04eacd107bad187ffb5fdb4d4955f66622e0e7f6cee9eb82e80d40657f6cffb
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ordered set data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-rbtreehash_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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: ./tests/test-read-file.c
+Hash: fe25f8bab073df345c729dec8f6148396d6926783db8a074ab9b9f120ebacd68
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2006-2007 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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: ./tests/test-rijndael.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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: ./tests/test-round1.c
+Hash: d481632fac56dafed412331dc1d3c962088c31ca9c3b36086d3667160fd6d480
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 2007-2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-round2.c
+Hash: 78cd3c59fce9fcf77a9e67787f5add6ab91b27cb39939cec7db1472ba23e07da
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 2007-2008 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: ./tests/test-roundf1.c
+Hash: 3d1da36b9e0486cd4e508d505e52d43a8e69194525626087e0570a15fb56bd69
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 2007, 2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-roundf2.c
+Hash: 2b662978b800617f406056d17c4f610c9ac9a637fe6b41e53db7b8728d9a3386
+Copyright:
+License:
+#Header:
+##define USE_FLOAT
+##include "test-round2.c"
+File: ./tests/test-roundl.c
+Hash: 78692de38971d672500f95f537d99c3625af5e163292a68f569e9b1c0db3deba
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-safe-alloc.c
+Hash: 06fa48a371192b3703bb2e5e10ccd93a9034d93b7dcff205253b40547dc5f425
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser 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:
+#/*
+# * Test the safe-alloc macros
+# *
+# * Copyright (C) 2009 Free Software Foundation, Inc.
+# *
+# * This library is free software; you can redistribute it and/or
+# * modify it under the terms of the GNU Lesser General Public
+# * License as published by the Free Software Foundation; either
+# * version 2.1 of the License, or (at your option) any later version.
+# *
+# * This library 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
+# * Lesser General Public License for more details.
+# *
+File: ./tests/test-sameacls.c
+Hash: 1df2ca38b822fca6b61b6dc422c4b420e8b7ef60e85c53952d92ac21156b8c65
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test whether two files have the same ACLs.
+#   Copyright (C) 2008 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: ./tests/test-sched.c
+Hash: a1d056a4d72baa204719a7171a5f9cb61426312897c83f8d72c0d329008fe2a6
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sched.h> substitute.
+#   Copyright (C) 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,
+#   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-search.c
+Hash: a75b46b1de8003eaa9822f8ee5de3e28bfd9dfa3808094ed1476e96a9f8b0d9b
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <search.h> substitute.
+#   Copyright (C) 2007 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: ./tests/test-select-fd.c
+Hash: c39dad9c674c2b86a8b6fabc120a1231d76298f5616852e8ca555a36d57dd057
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of select() substitute, reading or writing from a given file descriptor.
+#   Copyright (C) 2008 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: ./tests/test-select-in.sh
+Hash: 900e4c2984ffcf50df1cf8f155327f6fc7f9fb45b05e89a8e6117c6615fa0bef
+Copyright:
+License:
+#Header:
+##!/bin/sh
+## Test select() on file descriptors opened for reading.
+#
+## This test is known to fail on Solaris 2.6 and older, due to its handling
+## of /dev/null.
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-select-in.tmp"
+#
+## Regular files.
+#
+#rm -f t-select-in.tmp
+#./test-select-fd${EXEEXT} r 0 t-select-in.tmp < ./test-select-fd${EXEEXT}
+File: ./tests/test-select-out.sh
+Hash: 81a7eb6dd45c11e05d7d72c30afe3a86103b6f785beccfede7592fbece606a1f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+## Test select() on file descriptors opened for writing.
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-select-out.out t-select-out.tmp"
+#
+## Regular files.
+#
+#rm -f t-select-out.tmp
+#./test-select-fd${EXEEXT} w 1 t-select-out.tmp > t-select-out.out
+#test `cat t-select-out.tmp` = "1" || exit 1
+#
+## Pipes.
+File: ./tests/test-select-stdin.c
+Hash: 2233f158677785767dc09bb2110060927bc2c348fc26ffc95bc44b538dd69287
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of select() substitute, reading from stdin.
+#   Copyright (C) 2008 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: ./tests/test-select.c
+Hash: 919c5a7db661553ac0cd6de0a423e3fc6d9c988e0a86fa524fae055862fd6ec8
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of select() substitute.
+#   Copyright (C) 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,
+#   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-set-mode-acl.c
+Hash: cd6ee6081a51d9b3f3794b017a6b074ff3bc14d6825fd5f251c5fd2d46841250
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of setting an ACL equivalent to a mode.
+#   Copyright (C) 2008 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: ./tests/test-set-mode-acl.sh
+Hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+#func_tmpdir ()
+#{
+#  # Use the environment variable TMPDIR, falling back to /tmp. This allows
+#  # users to specify a different temporary directory, for example, if their
+#  # /tmp is filled up or too small.
+#  : ${TMPDIR=/tmp}
+File: ./tests/test-sha1.c
+Hash: e18f52207f18a229817e86984ad67f9af48bc951d8a18ad1ba9665584fa5d716
+Copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc.
+# * Written by Simon Josefsson
+# *
+# * 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: ./tests/test-sigaction.c
+Hash: 26868ca82f9158a85f3775c877b40da4441122e03a940c9d02dfc347ff66b161
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sigaction() function.
+#   Copyright (C) 2008 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: ./tests/test-signal.c
+Hash: a2a63d1070f8da740d3d59dd751aef9681d8f4a1b47d41d92c5258448a7902a0
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <signal.h> substitute.
+#   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: ./tests/test-signbit.c
+Hash: fa9d9d09e834d032dab7e5344a9125bc3a844d179a74b3eac76bc464ca94566e
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of signbit() substitute.
+#   Copyright (C) 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,
+#   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-sigpipe.c
+Hash: 8babbc5c4c5cf6baadd089082b26b393e84a3d336446bdf26c6170bb3b86fd55
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of SIGPIPE handling.
+#   Copyright (C) 2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-sigpipe.sh
+Hash: d27845fc8088e77081e32717c8dd8327ed122194c62751c93ef8faff8ee9218c
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+## Test signal's default behaviour.
+#tmpfiles="$tmpfiles t-sigpipeA.tmp"
+#./test-sigpipe${EXEEXT} A 2> t-sigpipeA.tmp | head -1 > /dev/null
+#if test -s t-sigpipeA.tmp; then
+#  LC_ALL=C tr -d '\r' < t-sigpipeA.tmp
+#  rm -fr $tmpfiles; exit 1
+#fi
+#
+## Test signal's ignored behaviour.
+#tmpfiles="$tmpfiles t-sigpipeB.tmp"
+File: ./tests/test-sleep.c
+Hash: c4c76435bbec1e1ae7a9b8292a1bf834366e04668c11ff07e19eda173e195eb2
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of sleep() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-snprintf-posix.c
+Hash: 7fce32e7bb5b8d3bda5a1df8212fb1d14ec7a02dc5e72ebb28dd9225dad5e397
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible snprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-snprintf-posix.h
+Hash: 9c968e1b41c6112dfd570d39aae8c0902a54036c53b751224852c002c65aada0
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vsnprintf() and snprintf() functions.
+#   Copyright (C) 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.
+#
+#   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-snprintf.c
+Hash: a8fc7710afcd71af941318a653e85e172eb11dcf342d0362c2bee74cc1361c0a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of snprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-sockets.c
+Hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008, 2009 Free Software Foundation
+# * Written by Simon Josefsson.
+# *
+# * 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: ./tests/test-sprintf-posix.c
+Hash: bfa4989be540f363296df2cabc7bf499303561023475f1a5272b0a1898cf4746
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible sprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-sprintf-posix.h
+Hash: 643c16861240bef0649dd4bcefe6ef1d9996a7d9bf4e16d3f70ecd7d22619764
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vsprintf() and sprintf() functions.
+#   Copyright (C) 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.
+#
+#   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-stat-time.c
+Hash: 13ed608bac62ec91a2526f569107d3f2c029da8a2935eca78a4cc53839419da8
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <stat-time.h>.
+#   Copyright (C) 2007-2008 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: ./tests/test-stdbool.c
+Hash: c84624aac5e8ef0d17ac6cfba2d9902112d8652ff84f75943bbaab5483a15104
+Copyright: 2002-2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <stdbool.h> substitute.
+#   Copyright (C) 2002-2007 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: ./tests/test-stddef.c
+Hash: a7f33ad88ddc3e59c999ce92e4d5c33162876f2dbd2f812612f5f875e098a0e1
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <stddef.h> substitute.
+#   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: ./tests/test-stdint.c
+Hash: 23f2d98a74e19ebc217c7540652a726c29f8393ff93360bc7d491d73ef222896
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <stdint.h> substitute.
+#   Copyright (C) 2006-2008 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: ./tests/test-stdio.c
+Hash: 2ac4b9dd417d2756a7b7531075a8de408eaa834699dcacc33968d0acd485708a
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <stdio.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-stdlib.c
+Hash: 054829fa60196e2c3f2af8a2ae7f5906b69a5ca770ea3f67f4bf20e58459cc39
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <stdlib.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-stpncpy.c
+Hash: f0900ada3225a1fce15fe1f412789c086482da205d663e8d29b7d44f0a74ff6c
+Copyright: 2003, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the system defined function stpncpy().
+#   Copyright (C) 2003, 2008 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: ./tests/test-stpncpy.out.aix433
+Hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+Copyright:
+License:
+#Header:
+#i =  0, j =  0, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  1:  from = \x00XXXXXXXXX  to = D\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  2:  from = \x00XXXXXXXXX  to = De\x00YYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  3:  from = \x00XXXXXXXXX  to = Des\x00YYYYYY  ret = to + 0
+#i =  0, j =  0, k =  4:  from = \x00XXXXXXXXX  to = Dest\x00YYYYY  ret = to + 0
+#i =  0, j =  0, k =  5:  from = \x00XXXXXXXXX  to = Desti\x00YYYY  ret = to + 0
+#i =  0, j =  0, k =  6:  from = \x00XXXXXXXXX  to = Destin\x00YYY  ret = to + 0
+#i =  0, j =  0, k =  7:  from = \x00XXXXXXXXX  to = Destina\x00YY  ret = to + 0
+#i =  0, j =  0, k =  8:  from = \x00XXXXXXXXX  to = Destinat\x00Y  ret = to + 0
+#i =  0, j =  0, k =  9:  from = \x00XXXXXXXXX  to = Destinati\x00  ret = to + 0
+#i =  0, j =  1, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  1:  from = \x00XXXXXXXXX  to = \x00\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  2:  from = \x00XXXXXXXXX  to = \x00e\x00YYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  3:  from = \x00XXXXXXXXX  to = \x00es\x00YYYYYY  ret = to + 0
+#i =  0, j =  1, k =  4:  from = \x00XXXXXXXXX  to = \x00est\x00YYYYY  ret = to + 0
+File: ./tests/test-stpncpy.out.glibc
+Hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+Copyright:
+License:
+#Header:
+#i =  0, j =  0, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  1:  from = \x00XXXXXXXXX  to = D\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  2:  from = \x00XXXXXXXXX  to = De\x00YYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  3:  from = \x00XXXXXXXXX  to = Des\x00YYYYYY  ret = to + 0
+#i =  0, j =  0, k =  4:  from = \x00XXXXXXXXX  to = Dest\x00YYYYY  ret = to + 0
+#i =  0, j =  0, k =  5:  from = \x00XXXXXXXXX  to = Desti\x00YYYY  ret = to + 0
+#i =  0, j =  0, k =  6:  from = \x00XXXXXXXXX  to = Destin\x00YYY  ret = to + 0
+#i =  0, j =  0, k =  7:  from = \x00XXXXXXXXX  to = Destina\x00YY  ret = to + 0
+#i =  0, j =  0, k =  8:  from = \x00XXXXXXXXX  to = Destinat\x00Y  ret = to + 0
+#i =  0, j =  0, k =  9:  from = \x00XXXXXXXXX  to = Destinati\x00  ret = to + 0
+#i =  0, j =  1, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  1:  from = \x00XXXXXXXXX  to = \x00\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  2:  from = \x00XXXXXXXXX  to = \x00e\x00YYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  3:  from = \x00XXXXXXXXX  to = \x00es\x00YYYYYY  ret = to + 0
+#i =  0, j =  1, k =  4:  from = \x00XXXXXXXXX  to = \x00est\x00YYYYY  ret = to + 0
+File: ./tests/test-strcasestr.c
+Hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007, 2008 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: ./tests/test-strchrnul.c
+Hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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: ./tests/test-strerror.c
+Hash: 14a1d27bf7519c28518b2fa09cdbff600099f8fbbdcdd31d19f1e17abd42eec1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of strerror() function.
+#   Copyright (C) 2007-2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-striconv.c
+Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of character set conversion.
+#   Copyright (C) 2007-2008 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: ./tests/test-striconveh.c
+Hash: d58780303b58b650191816c9c6f6d31acc192c6b06da016cd940a1daaad76347
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of character set conversion with error handling.
+#   Copyright (C) 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.
+#
+#   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-striconveha.c
+Hash: 5613eb13fd03278f3cfae673d2742357a77a24e39aa5464290122bd1f5cc17e9
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of character set conversion with error handling and autodetection.
+#   Copyright (C) 2007-2008 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: ./tests/test-string.c
+Hash: 0ba6f6d137f27b2f588c41cd0dd4a7f44a8611d2b5650a7623304eb04f2a985c
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <string.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-strings.c
+Hash: 1218735581f6fd81e89c932786b84ad7efdb3fd0a98b512cfb6ef7179ee629b9
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <strings.h> substitute.
+#   Copyright (C) 2007 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: ./tests/test-strsignal.c
+Hash: 911cff60ea0d2142906a8b6e37b8e316a82700ce9dc6f4419abb1544eeb16255
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of strsignal() function.
+#   Copyright (C) 2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-strstr.c
+Hash: 921b584d5b441ef5314ef79cacb914b5734b212d15a5d3e34d83a3cac45985c7
+Copyright: 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2004, 2007, 2008, 2009 Free Software Foundation
+# * Written by Bruno Haible and Eric Blake
+# *
+# * 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: ./tests/test-strtod.c
+Hash: 94d0b9d07d2cb7df156fa576ff2f5508151924b4eec0f0394e315fc6c43fde83
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/*
+# * Copyright (C) 2008 Free Software Foundation
+# * Written by Eric Blake
+# *
+# * 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: ./tests/test-strverscmp.c
+Hash: 73715c12c4e50afe8feb14d326eb9d0092f449850bf20bda4a2a09965c37fd2d
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of strverscmp() function.
+#   Copyright (C) 2008 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
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-symlinkat.c
+Hash: 688324a6ce6943ee6fcd5c4bbc12a6ed11ead304de5c082acac34fa5d620244a
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Tests of symlinkat and readlinkat.
+#   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: ./tests/test-sys_select.c
+Hash: e6cbee138afbf2346834176c831267687d1d62f0cc1c182a06b826921c4a2a0b
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sys/select.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-sys_socket.c
+Hash: 27b064bea275a251fd55f12386c38305cfa83d0e2ce5d9b781fc898d400773c6
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sys/socket.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-sys_stat.c
+Hash: 04013ed74812f946e4b59b34d20190ec2cd9ceb8574f5fc52edcd6eac76c352a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sys/stat.h> substitute.
+#   Copyright (C) 2007-2008 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: ./tests/test-sys_time.c
+Hash: 3ebfc9d43b3f8649e84a73cd567fca4c7ae4d825da72da4ed90e6e5a99d94fff
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sys/time.h> substitute.
+#   Copyright (C) 2007 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: ./tests/test-sys_times.c
+Hash: b4313ff79695d9b7f87cdd1971b9abde2045f25322923a3e6489c6feea1eacdc
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sys/times.h> substitute.
+#   Copyright (C) 2008 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: ./tests/test-sys_utsname.c
+Hash: b1a0f7f5778c07e508753fb8758e87eccbf547386a4590bc130135b051293a38
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sys/utsname.h> substitute.
+#   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: ./tests/test-sysexits.c
+Hash: 7c3f18282922b3f9c1ebb90c97f14450d340a78ca9e554109d2696866155c1d4
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <sysexits.h> substitute.
+#   Copyright (C) 2007 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: ./tests/test-time.c
+Hash: e2a57979e9a7175aef1b8845af8f151674553744316aac9805c8db52cbb6dfb2
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <time.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-times.c
+Hash: f96de125f14181292c4c8e2e4c0974b25583ad38f9ef6a77d6460b0a6be47bb8
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of times function.
+#   Copyright (C) 2008 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: ./tests/test-tls.c
+Hash: a371f1638584ea868f8774f0863ed063f15ec220e756dc6cd961ac59be40da55
+Copyright: 2005, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of thread-local storage in multithreaded situations.
+#   Copyright (C) 2005, 2008 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: ./tests/test-trunc1.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 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: ./tests/test-trunc2.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 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: ./tests/test-truncf1.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 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: ./tests/test-truncf2.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 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: ./tests/test-truncl.c
+Hash: 503c95b4810a0f30ba1704d1103337c932b495da73ef6c06c21d7a26583b3d60
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of rounding towards zero.
+#   Copyright (C) 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.
+#
+#   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-tsearch.c
+Hash: 5fc9ed83fc429236699dce56057e9d206682791a0228c09393bd282e8874f20b
+Copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
+License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test program for tsearch et al.
+#   Copyright (C) 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C Library is free software: you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public License as
+#   published by the Free Software Foundation; either version 3 of the
+#   License, or (at your option) any later version.
+#
+#   The GNU C Library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public License
+File: ./tests/test-tsearch.sh
+Hash: 4a91b1aa51229c44027a90338ac75c18482cd83b1c5a42abbbd5e586cc77bdde
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-tsearch.out"
+#./test-tsearch${EXEEXT} > t-tsearch.out 2>&1
+#test $? = 0 || { cat t-tsearch.out 1>&2; rm -f $tmpfiles; exit 1; }
+#
+#rm -f $tmpfiles
+#
+#exit 0
+File: ./tests/test-u64.c
+Hash: e479b4ed53ff1ef1ddb7c68c062cc0b016685511ba81a14bfa6c2971d06cab71
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <u64.h>
+#   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: ./tests/test-uname.c
+Hash: 95dd080068a87ec7a8f8dd8f9c52cfcc3eb411fdc69747e76099b7f55491e9e0
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of system information.
+#   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: ./tests/test-unistd.c
+Hash: 9dec8ae8ec34dede0933ebdae6fea6044297491dfbba7df3544444a73b7cf7fb
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <unistd.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-update-copyright.sh
+Hash: 31a6cf464a511c9f798d56d6107ef0eb41dafac06037c8e04649f9ae2d9f2e67
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for update-copyright.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-vasnprintf-posix.c
+Hash: 4033ae875db9b7dec68ccfb88dc9e8ac872f79ccd3ff8c1bbf475994065a67a3
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vasnprintf() and asnprintf() functions.
+#   Copyright (C) 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.
+#
+#   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-vasnprintf-posix2.c
+Hash: 264ce034a6a0e2af38dd9a7f56d3fc621770b161c40e4868673d2197175d7e9d
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vasnprintf() and asnprintf() functions.
+#   Copyright (C) 2007-2008 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: ./tests/test-vasnprintf-posix2.sh
+Hash: a2853f3c4b9322d67eeb514a02f551027226143c613f10e2f07141cea27ef400
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test $LOCALE_FR_UTF8 != none; then
+#    testlocale=$LOCALE_FR_UTF8
+#  else
+#    if test -f /usr/bin/localedef; then
+#      echo "Skipping test: no french locale is installed"
+#    else
+#      echo "Skipping test: no french locale is supported"
+File: ./tests/test-vasnprintf.c
+Hash: 61a80e32eb8210bc664d982ac7156c97f5b068023f47eeef9b2712eaa0cf5358
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of vasnprintf() and asnprintf() functions.
+#   Copyright (C) 2007-2008 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: ./tests/test-vasprintf-posix.c
+Hash: ec33ca31cf67dba4a443c9cd11bebb34a58110f2c2c15ffb891f9d22b628f47a
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vasprintf() and asprintf() functions.
+#   Copyright (C) 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.
+#
+#   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-vasprintf.c
+Hash: 2bd69a93dc485bffe1c49f3d6e4b411651ed41f823fb47f163b9487c35df55e9
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of vasprintf() and asprintf() functions.
+#   Copyright (C) 2007-2008 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: ./tests/test-vc-list-files-cvs.sh
+Hash: 5592779105d6e3c84009c3743f19ba267e3c947df43bd05fce6250d51d38acd8
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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
+## Unit tests for vc-list-files
+## Copyright (C) 2008 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-vc-list-files-git.sh
+Hash: cba59ad2fc05be9c59e16bb50f191c185f4d87a147deb9477fab63dbeaba6169
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: 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
+## Unit tests for vc-list-files
+## Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-vdprintf-posix.c
+Hash: 8fc71c626ad4e8b2da0fb5b1661b55fc288ffc3242744e43fd24edf0b22d8d03
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vdprintf() function.
+#   Copyright (C) 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.
+#
+#   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-vdprintf-posix.sh
+Hash: f3166adb33bacdb3b2da94ac726284ed8403a179c0f69b2e9490d82210ef3ed6
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-vdprintf-posix.tmp t-vdprintf-posix.out"
+#./test-vdprintf-posix${EXEEXT} > t-vdprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-vdprintf-posix.tmp > t-vdprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-vdprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+File: ./tests/test-verify.c
+Hash: 17fec5a9ababc4561b627d90f689ea9e12ae05c2cabf962750d3472bb98dcc3c
+Copyright: 2005 Free Software Foundation, Inc.
+License: 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:
+#/* Test the "verify" module.
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 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: ./tests/test-version-etc.c
+Hash: 166966c01aec43b6eea70f77889719b4ca98d4f9333c9e7b8ff9fb10235eaf2b
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test suite for version-etc.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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: ./tests/test-version-etc.sh
+Hash: c2dcff71edecfe89df84edb38bc7cf657c88b91a82456014937488b7eed9cf8c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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
+## Test suite for version-etc.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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: ./tests/test-vfprintf-posix.c
+Hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vfprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-vfprintf-posix.sh
+Hash: 51b6714415c10dd04271db0038eb39b1bd3c5881b43025900606e5ae92334fc2
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-vfprintf-posix.tmp t-vfprintf-posix.out"
+#./test-vfprintf-posix${EXEEXT} > t-vfprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-vfprintf-posix.tmp > t-vfprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-vfprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+File: ./tests/test-vprintf-posix.c
+Hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vfprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-vprintf-posix.sh
+Hash: a6ebb7e5988deb06cbc675b3be4c82c3366db7423e770607fdb9e5079331a9bc
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-vprintf-posix.tmp t-vprintf-posix.out"
+#./test-vprintf-posix${EXEEXT} > t-vprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-vprintf-posix.tmp > t-vprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-vprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+File: ./tests/test-vsnprintf-posix.c
+Hash: 08921df8083c6cf72f8107df0955a905c1cfc1a7639420651e479889b858372f
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vsnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-vsnprintf.c
+Hash: 38a886365a5b7333bcddff2e6f7e078b4ccd8affc79c69d525fb628b81e77163
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of vsnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-vsprintf-posix.c
+Hash: 5ff40ad8122a4316b3880b33fa58711292cfe9daf80cf886bc3bf7b4c8b8f7b6
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of POSIX compatible vsprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-wchar.c
+Hash: b9f590d320dde15ebc89d1b241f7f1affa3e77afaf21eb72b9d0d848c666aa15
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <wchar.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-wcrtomb.c
+Hash: a7e09560f0d1bcf0d97e0961f8aea91e910f34af271cf323261f13ffa0ae7711
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion of wide character to multibyte character.
+#   Copyright (C) 2008 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: ./tests/test-wcrtomb.sh
+Hash: a44d114e1ecf5712c05a7280fb46e7eed4ba1d93c1afbd19f628ee14485c0f17
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  LC_ALL=$LOCALE_FR \
+#  ./test-wcrtomb${EXEEXT} 1 \
+#  || exit 1
+#fi
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  LC_ALL=$LOCALE_FR_UTF8 \
+#  ./test-wcrtomb${EXEEXT} 2 \
+File: ./tests/test-wcsnrtombs.c
+Hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion of wide string to string.
+#   Copyright (C) 2008 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: ./tests/test-wcsnrtombs1.sh
+Hash: 33a1c921605c916d076531d447e2cd6371d22857bb403db1f372526fb35fa98f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-wcsnrtombs${EXEEXT} 1
+File: ./tests/test-wcsnrtombs2.sh
+Hash: 4ee200893e30f53de0d3366bbac9c7e8524cc201b1d9debd643ad7c3acb63aba
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-wcsnrtombs${EXEEXT} 2
+File: ./tests/test-wcsnrtombs3.sh
+Hash: a593e2317d40fa30cf64732ee7d952ddc68ef2f69e9d9130b17b10f28e8d3d6f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-wcsnrtombs${EXEEXT} 3
+File: ./tests/test-wcsnrtombs4.sh
+Hash: de5e3b2ff8be87faf053ba51d5846ac4e10322c76bc4b4f2a20357eae2a0489b
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-wcsnrtombs${EXEEXT} 4
+File: ./tests/test-wcsrtombs.c
+Hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion of wide string to string.
+#   Copyright (C) 2008 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: ./tests/test-wcsrtombs1.sh
+Hash: 7f6c7ca6878d2632a37f8f54060bcc41aa415a85487a76f7a374ba03a218e71a
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-wcsrtombs${EXEEXT} 1
+File: ./tests/test-wcsrtombs2.sh
+Hash: 738099bbea2049911db3bee0ae7d1cba4043ff740759d77197cfca1f5743d55a
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-wcsrtombs${EXEEXT} 2
+File: ./tests/test-wcsrtombs3.sh
+Hash: b5b4068a795461636f1fca1ce581a918e6298eb6d915f6fd5f9ec34597d9397f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-wcsrtombs${EXEEXT} 3
+File: ./tests/test-wcsrtombs4.sh
+Hash: a3a4b7ceb64d8c8d819c6552cc46779e6264e5dd6bf3e0774d71504aeb22a135
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-wcsrtombs${EXEEXT} 4
+File: ./tests/test-wctype.c
+Hash: 3913b2dadee190c3c7363a11f4698e6dc6e54e77ff0f6f815989f716687b8c66
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of <wctype.h> substitute.
+#   Copyright (C) 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.
+#
+#   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-wcwidth.c
+Hash: 621775bd4bf289a67327498e46edf2e12d578a8ba977b62f871f1957de3e43c5
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of wcwidth() function.
+#   Copyright (C) 2007-2008 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: ./tests/test-xfprintf-posix.c
+Hash: 2a603870f561fd13002c29e2de6553989048d747097638326de087abc5d9c70d
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of error-checking xfprintf() function with POSIX compatible formatting.
+#   Copyright (C) 2007-2008 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: ./tests/test-xmemdup0.c
+Hash: 4b2575757caf38d863f415b5079c56fd838ffe4a807c81bc83bd296dcbfcaee6
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of xmemdup0() function.
+#   Copyright (C) 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, or (at your option)
+#   any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software Foundation,
+File: ./tests/test-xprintf-posix.c
+Hash: a3af7c6b24629c4787aa5231313b8f64c3b33cf955dc694a5294ae299c3d0ca5
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of error-checking xprintf() function with POSIX compatible formatting.
+#   Copyright (C) 2007-2008 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: ./tests/test-xprintf-posix.sh
+Hash: 1ce067e6f56dcb6a5a56ce1246d36be56fcc7f66b31106e803156fd220d3e1d0
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-xprintf-posix.tmp t-xprintf-posix.out"
+#./test-xprintf-posix${EXEEXT} > t-xprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-xprintf-posix.tmp > t-xprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-xprintf-posix.out
+#test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+#
+#tmpfiles="$tmpfiles t-xfprintf-posix.tmp t-xfprintf-posix.out"
+#./test-xfprintf-posix${EXEEXT} > t-xfprintf-posix.tmp || exit 1
+File: ./tests/test-xstrtoimax.c
+Hash: c5c3852fa55a1f51008c37b7783d23de2f4d137cf90ff959870b62f6e59587ac
+Copyright:
+License:
+#Header:
+##define __xstrtol xstrtoimax
+##define __strtol_t intmax_t
+##define __spec PRIdMAX
+##include "test-xstrtol.c"
+File: ./tests/test-xstrtoimax.sh
+Hash: 5d15991c8b4c13c05fc12f220e26c34f702a317d8998b1d016379ce9e18b3565
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-xstrtoimax.tmp t-xstrtoimax.xo"
+#: > t-xstrtoimax.tmp
+#too_big=99999999999999999999999999999999999999999999999999999999999999999999
+#result=0
+#
+## test xstrtoimax
+#./test-xstrtoimax${EXEEXT} 1 >> t-xstrtoimax.tmp 2>&1 || result=1
+#./test-xstrtoimax${EXEEXT} -1 >> t-xstrtoimax.tmp 2>&1 || result=1
+#./test-xstrtoimax${EXEEXT} 1k >> t-xstrtoimax.tmp 2>&1 || result=1
+#./test-xstrtoimax${EXEEXT} ${too_big}h >> t-xstrtoimax.tmp 2>&1 && result=1
+File: ./tests/test-xstrtol.c
+Hash: de7b5c726b634ae4f59358f375b594790755ca1a9cc5ca12cd7192f7ad89d763
+Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of xstrtol module.
+#   Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#   2006, 2007, 2008 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
+File: ./tests/test-xstrtol.sh
+Hash: 79873e8a91e9b9088083cb4ef4d0909822f0d7ba1ecbbc98bcb63322735abcbf
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-xstrtol.tmp t-xstrtol.xo"
+#: > t-xstrtol.tmp
+#too_big=99999999999999999999999999999999999999999999999999999999999999999999
+#result=0
+#
+## test xstrtol
+#./test-xstrtol${EXEEXT} 1 >> t-xstrtol.tmp 2>&1 || result=1
+#./test-xstrtol${EXEEXT} -1 >> t-xstrtol.tmp 2>&1 || result=1
+#./test-xstrtol${EXEEXT} 1k >> t-xstrtol.tmp 2>&1 || result=1
+#./test-xstrtol${EXEEXT} ${too_big}h >> t-xstrtol.tmp 2>&1 && result=1
+File: ./tests/test-xstrtoul.c
+Hash: 54c2b16099a222e6bc15d83a1911f4725f1e7ba22a3f302408dacfd3bd5c05a5
+Copyright:
+License:
+#Header:
+##define __xstrtol xstrtoul
+##define __strtol_t unsigned long int
+##define __spec "lu"
+##include "test-xstrtol.c"
+File: ./tests/test-xstrtoumax.c
+Hash: 257441d9c0f1b24b0d758658b014fae6ae1c9f17a4453ccd246dde4897eaa45a
+Copyright:
+License:
+#Header:
+##define __xstrtol xstrtoumax
+##define __strtol_t uintmax_t
+##define __spec PRIuMAX
+##include "test-xstrtol.c"
+File: ./tests/test-xstrtoumax.sh
+Hash: 4ad7ec4f7631fa5d7ab92d91e1ff3b565a3a8b6f75e0f1b86d89d8030d8252c8
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-xstrtoumax.tmp t-xstrtoumax.xo"
+#: > t-xstrtoumax.tmp
+#too_big=99999999999999999999999999999999999999999999999999999999999999999999
+#result=0
+#
+## test xstrtoumax
+#./test-xstrtoumax${EXEEXT} 1 >> t-xstrtoumax.tmp 2>&1 || result=1
+#./test-xstrtoumax${EXEEXT} -1 >> t-xstrtoumax.tmp 2>&1 && result=1
+#./test-xstrtoumax${EXEEXT} 1k >> t-xstrtoumax.tmp 2>&1 || result=1
+#./test-xstrtoumax${EXEEXT} ${too_big}h >> t-xstrtoumax.tmp 2>&1 && result=1
+File: ./tests/test-xvasprintf.c
+Hash: ac9ad8e875af014830c20d9e09da1311639c83e409ad8db3f4ffebd240e713f4
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of xvasprintf() and xasprintf() functions.
+#   Copyright (C) 2007-2008 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: ./tests/test-yesno.c
+Hash: 3f971eee932cdc6643afc7e82875800dbd694b7d7cce5e5898866d3838e5f8e6
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of yesno module.
+#   Copyright (C) 2007-2008 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
+#   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-yesno.sh
+Hash: 6d197acd4b62c8295898322d0a74a7d9b6af375c6612d23e8c718d7d3e034d32
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#p=t-yesno-
+#tmpfiles="${p}in.tmp ${p}xout.tmp ${p}out1.tmp ${p}out.tmp ${p}err.tmp"
+#
+## For now, only test with C locale
+#LC_ALL=C
+#export LC_ALL
+#
+## Find out how to remove carriage returns from output. Solaris /usr/ucb/tr
+## does not understand '\r'.
+#if echo solaris | tr -d '\r' | grep solais > /dev/null; then
+File: ./tests/unicase/test-casecmp.h
+Hash: 087298e7ab0c96019fc4bbda3234ee52643b112a91685571bec731d121ff32a9
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case and normalization insensitive comparison of Unicode strings.
+#   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: ./tests/unicase/test-cased.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unicase/test-ignorable.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unicase/test-is-cased.h
+Hash: 77f0f5c8da18d68e55012ca31cd200ccaaf62ce13a0437f969525b324746cab9
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether case matters for a Unicode string.
+#   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: ./tests/unicase/test-is-casefolded.h
+Hash: 8a64df7d2b39cf72a790f65a4380a5257f3906c479a5c7ff2866e2caf521459e
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether a Unicode string is already case-folded.
+#   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: ./tests/unicase/test-is-lowercase.h
+Hash: e780f461c5ab26573a2f7a337d9dea72d1b535ce9b8c99aa74286904c35e5350
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether a Unicode string is entirely lower case.
+#   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: ./tests/unicase/test-is-titlecase.h
+Hash: ed0e9f7db4df9c5e31d50ff099af7ffd491810832336d9a7b1fa2af8405d927b
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether a Unicode string is entirely title case.
+#   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: ./tests/unicase/test-is-uppercase.h
+Hash: c166575b45c29d58756309538901f3ca2bc4976a7afe7bc9d5c96c2a940702a6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether a Unicode string is entirely upper case.
+#   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: ./tests/unicase/test-locale-language.c
+Hash: 7902cd50a3a989d21413e91019f1101ca387732e3a3549e9ee5142a2968122a2
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of language code determination.
+#   Copyright (C) 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.
+#
+#   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/unicase/test-locale-language.sh
+Hash: 028ff70d75eaa2008146f1da86917178198eacf5cd2951201c91392e88636645
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#LC_ALL=C                       ./test-locale-language${EXEEXT} '' || exit 1
+#
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR_UTF8 != none; then
+#  LC_ALL=$LOCALE_FR_UTF8       ./test-locale-language${EXEEXT} fr || exit 1
+#fi
+#
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  LC_ALL=$LOCALE_FR_UTF8       ./test-locale-language${EXEEXT} fr || exit 1
+#fi
+#
+#: ${LOCALE_JA=ja_JP}
+File: ./tests/unicase/test-mapping-part1.h
+Hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of single character case mapping functions.
+#   Copyright (C) 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.
+#
+#   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/unicase/test-mapping-part2.h
+Hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of single character case mapping functions.
+#   Copyright (C) 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.
+#
+#   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/unicase/test-predicate-part1.h
+Hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 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.
+#
+#   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/unicase/test-predicate-part2.h
+Hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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: ./tests/unicase/test-u16-casecmp.c
+Hash: fbaf1cf87ef4e2cb6c22e345726fbeca61d4f4fde17fe328cd36f69e383210ff
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case and normalization insensitive comparison of UTF-16 strings.
+#   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: ./tests/unicase/test-u16-casecoll.c
+Hash: a478780b48f6135ed858b897f9cd56b995fa2bea4331f359e845712e7a921b9b
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   UTF-16 strings.
+#   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
+File: ./tests/unicase/test-u16-casefold.c
+Hash: 780d80975734f219ef2f735b4735e8977dca243032a3d46705d14bea69577b74
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of casefolding mapping for UTF-16 strings.
+#   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: ./tests/unicase/test-u16-is-cased.c
+Hash: 4234fb2ee9a3330beba45d579838054b73cb027a32343e6a5bfecb31cb63b5a0
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether case matters for an UTF-16 string.
+#   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: ./tests/unicase/test-u16-is-casefolded.c
+Hash: f43cf1df76813ed4ff41af0649ec88984148a1a58474b0510aaef5991f58e476
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-16 string is already case-folded.
+#   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: ./tests/unicase/test-u16-is-lowercase.c
+Hash: 41ab69760cda76f92490056f713aa78ab1fc91f29b6e85dc11364f4d52cea2cd
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-16 string is entirely lower case.
+#   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: ./tests/unicase/test-u16-is-titlecase.c
+Hash: 7082f5c82633a0a232479102690aec07d560deb2fa2febf9433eb417b2893b6e
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-16 string is entirely title case.
+#   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: ./tests/unicase/test-u16-is-uppercase.c
+Hash: beeb3d8e2907686e31ae7bcacffa24dabd5b8341e95e71008118a27c965127a9
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-16 string is entirely upper case.
+#   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: ./tests/unicase/test-u16-tolower.c
+Hash: ec459a8224c2ed7f817f50477cce68cd280caadf3f43fdc758e094ba738dad44
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of lowercase mapping for UTF-16 strings.
+#   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: ./tests/unicase/test-u16-totitle.c
+Hash: 364955699731118e15b5c015a5b0e2a0ca481108df690c7d2ca72113bdef9bbd
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of titlecase mapping for UTF-16 strings.
+#   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: ./tests/unicase/test-u16-toupper.c
+Hash: 256d31e7737c279ab0a7fe336bbc2d8a3b2f5c3646a923645408fb5cd647232f
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of uppercase mapping for UTF-16 strings.
+#   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: ./tests/unicase/test-u32-casecmp.c
+Hash: 9179bf8a4dd90067464a8a095910c5a6f53ff0c8b7d4d4d970fb9905caeccab6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case and normalization insensitive comparison of UTF-32 strings.
+#   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: ./tests/unicase/test-u32-casecoll.c
+Hash: 46cde4ad2bde5e77ddf09650e34490837d03ffa5566c3665745417de0e7d3a1f
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   UTF-32 strings.
+#   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
+File: ./tests/unicase/test-u32-casefold.c
+Hash: 4d907542dd3a62d941844298dfe70f36057246c130a8906db2071703fcc5ea26
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of casefolding mapping for UTF-32 strings.
+#   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: ./tests/unicase/test-u32-is-cased.c
+Hash: afdd64c3cbdb2db2a6d0a0385c23cadd7acde81fe68ef08c39d1af0e65c1c302
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether case matters for an UTF-32 string.
+#   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: ./tests/unicase/test-u32-is-casefolded.c
+Hash: 406ff64a31f1889065d2f75d3e1352d13da79827438f5af6f72920b26e01be5e
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-32 string is already case-folded.
+#   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: ./tests/unicase/test-u32-is-lowercase.c
+Hash: 925d3f074e4eba6fd371968cdf931e8f266dc18f42c4da065890ec4059e99eb9
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-32 string is entirely lower case.
+#   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: ./tests/unicase/test-u32-is-titlecase.c
+Hash: 7093a37ec59985094b8e3315f0f3195d83b1656d652ebc113e5d419c996cf396
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-32 string is entirely title case.
+#   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: ./tests/unicase/test-u32-is-uppercase.c
+Hash: 1378c386b1283dfea9232ebf982922c37fc43e31aa750dbcae3a513d599a37f6
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-32 string is entirely upper case.
+#   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: ./tests/unicase/test-u32-tolower.c
+Hash: d7cfcd257ced2d32004af0d357e3e5dfcd9299fdc83447b6fd59f2b0430cb2b9
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of lowercase mapping for UTF-32 strings.
+#   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: ./tests/unicase/test-u32-totitle.c
+Hash: 54ba07d46dd17204c8df179dae285eae06fc47dac38440471866ccfb285780b7
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of titlecase mapping for UTF-32 strings.
+#   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: ./tests/unicase/test-u32-toupper.c
+Hash: 9517acce3a3c32363be5998282902d14b76512c2d95007ae0426073b0ae3e66d
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of uppercase mapping for UTF-32 strings.
+#   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: ./tests/unicase/test-u8-casecmp.c
+Hash: e55c357f7afbc9a0cfe0f69c8736e09ac327cf0efa110bd54358b26552c15d91
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case and normalization insensitive comparison of UTF-8 strings.
+#   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: ./tests/unicase/test-u8-casecoll.c
+Hash: cb8087d7a4cd6f72c7df00d9b74cbb14bbe7ff92f76de65ad5e2688c4008f1cc
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   UTF-8 strings.
+#   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
+File: ./tests/unicase/test-u8-casefold.c
+Hash: 46aa95b956c978d68693a6a7d28e6119e702da6d5852b422cae8ac60feb56e7a
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of casefolding mapping for UTF-8 strings.
+#   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: ./tests/unicase/test-u8-is-cased.c
+Hash: d2e06421cfef63befc22d5867d91edcde0be66c6e5da6ab56407c62655210ad4
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether case matters for an UTF-8 string.
+#   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: ./tests/unicase/test-u8-is-casefolded.c
+Hash: 8847ed4d063cb5ef6b9ad3824c768719bf92ceb9dc999867a7e22fe80da46a62
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-8 string is already case-folded.
+#   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: ./tests/unicase/test-u8-is-lowercase.c
+Hash: 40b3b6176251c3ba3f01a9dfd5ad1e90fc294c6d2187e04c7623d12dbd036e75
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-8 string is entirely lower case.
+#   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: ./tests/unicase/test-u8-is-titlecase.c
+Hash: 4addcc8d4a006652f4e0af349822acb9ceabab38e19f7bf45f2264ce526c734e
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-8 string is entirely title case.
+#   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: ./tests/unicase/test-u8-is-uppercase.c
+Hash: d647fd8d839c47edffa85a2edc6a9b5f9d740295d42b861e2097069fc1d973cd
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of test whether an UTF-8 string is entirely upper case.
+#   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: ./tests/unicase/test-u8-tolower.c
+Hash: 40ee18dae3078615adcadd02bc1525436c511d80eb00a52c9c7e44cb0e260d19
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of lowercase mapping for UTF-8 strings.
+#   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: ./tests/unicase/test-u8-totitle.c
+Hash: daea8586484638f8dff9c0f3972a5e1cc4632eb4c26528f93972f8ba9f1c0435
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of titlecase mapping for UTF-8 strings.
+#   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: ./tests/unicase/test-u8-toupper.c
+Hash: 92775e814bc7c28fd54cd36641f38bacbb6e32645a9901abb6d77a7dd3266e15
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of uppercase mapping for UTF-8 strings.
+#   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: ./tests/unicase/test-uc_tolower.c
+Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character mapping functions.
+#   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
+File: ./tests/unicase/test-uc_totitle.c
+Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character mapping functions.
+#   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
+File: ./tests/unicase/test-uc_toupper.c
+Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character mapping functions.
+#   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
+File: ./tests/unicase/test-ulc-casecmp.c
+Hash: a70362d42f608ae8519496f614eab7f6840506198a7b35a54688aae06f8ec537
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of case and normalization insensitive comparison of strings.
+#   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: ./tests/unicase/test-ulc-casecmp1.sh
+Hash: e11e26a26c3195042709f1c53297ff0ee32afb9250cee9144746a30ed82ac770
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-ulc-casecmp${EXEEXT} 1
+File: ./tests/unicase/test-ulc-casecmp2.sh
+Hash: c5f5915062ac34dd725d099fa932f794f216eb1ba89a42b3c10f1c017f83e698
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-ulc-casecmp${EXEEXT} 2
+File: ./tests/unicase/test-ulc-casecoll.c
+Hash: 4889e501871ae3a0ada5fb5a8099116bbf289c47ced06d26b7d1bcb98f805e51
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   strings.
+#   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
+File: ./tests/unicase/test-ulc-casecoll1.sh
+Hash: 60778acf09ad204d99a6e1e57b880e68d7f53c81bc1dc0473c865922ff99020b
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-ulc-casecoll${EXEEXT}
+File: ./tests/unicase/test-ulc-casecoll2.sh
+Hash: 085a2bd9d34dba3e6eb2f389ff01804bfde543909a631b591f44799a8632ce0c
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-ulc-casecoll${EXEEXT}
+
+######################################################################
+## UPTOHERE
+######################################################################
+
+File: ./tests/uniconv/test-u16-conv-from-enc.c
+Hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u16-conv-to-enc.c
+Hash: ee723fe33867bbe1788462de1e330317d6949f49144cabd6e8e38efca0d447cb
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u16-strconv-from-enc.c
+Hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u16-strconv-to-enc.c
+Hash: 7cc68dc5f7b4f76a27bf80ef26a988398dd0a4288934033f8e604467ebbbddc1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 2007-2008 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: ./tests/uniconv/test-u32-conv-from-enc.c
+Hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u32-conv-to-enc.c
+Hash: 9d55d78e2f579b4085948278faa02c153cf2889171a763786c40a320053fefb9
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u32-strconv-from-enc.c
+Hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u32-strconv-to-enc.c
+Hash: f046bf7ce16400906bfb439be832a1e91647af489a78820eb57d0b4ca94f0810
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 2007-2008 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: ./tests/uniconv/test-u8-conv-from-enc.c
+Hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u8-conv-to-enc.c
+Hash: b699c5da15c5e1fdb4bf45482b3895de5a4bdf4febbf595cfe241f5eca8d335a
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u8-strconv-from-enc.c
+Hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 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.
+#
+#   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/uniconv/test-u8-strconv-to-enc.c
+Hash: 92b274f28c6b1980e1ffc2bce550639bea47dd069072090dfbbf3db06ee6ab96
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-bidi_byname.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-bidi_name.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-bidi_of.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-bidi_test.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-block_list.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-block_of.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-block_test.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_C.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Cc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Cf.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Cn.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Co.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Cs.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_L.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Ll.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Lm.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Lo.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Lt.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Lu.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_M.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Mc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Me.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Mn.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_N.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Nd.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Nl.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_No.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_P.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Pc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Pd.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Pe.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Pf.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Pi.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Po.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Ps.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_S.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Sc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Sk.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Sm.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_So.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Z.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Zl.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Zp.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_Zs.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-categ_and.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_and_not.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_byname.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_name.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_none.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_of.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_or.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-categ_test_withtable.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-combining.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-ctype_alnum.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_alpha.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_blank.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_cntrl.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_graph.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_lower.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_print.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_punct.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_upper.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-ctype_xdigit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-decdigit.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-decdigit.h
+Hash: d15c2fbaf8a835d6cbc0c2da37cd84fba9905ba6199f021dd4def95e741aeb94
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decimal digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#    { 0x0030, 0 },
+#    { 0x0031, 1 },
+#    { 0x0032, 2 },
+#    { 0x0033, 3 },
+#    { 0x0034, 4 },
+#    { 0x0035, 5 },
+#    { 0x0036, 6 },
+#    { 0x0037, 7 },
+#    { 0x0038, 8 },
+#    { 0x0039, 9 },
+#    { 0x0660, 0 },
+#    { 0x0661, 1 },
+File: ./tests/unictype/test-digit.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-digit.h
+Hash: 08530a09f8d458d98e4012b13ec2ab5df415027736aa50e44d5bce7643faffb1
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#    { 0x0030, 0 },
+#    { 0x0031, 1 },
+#    { 0x0032, 2 },
+#    { 0x0033, 3 },
+#    { 0x0034, 4 },
+#    { 0x0035, 5 },
+#    { 0x0036, 6 },
+#    { 0x0037, 7 },
+#    { 0x0038, 8 },
+#    { 0x0039, 9 },
+#    { 0x00B2, 2 },
+#    { 0x00B3, 3 },
+File: ./tests/unictype/test-mirror.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-numeric.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-numeric.h
+Hash: d6f23324b218034f2f4c008b20dc43866a71580a56841aac37368dc517c0ea52
+Copyright:
+License:
+#Header:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Numeric values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#    { 0x0030, 0, 1 },
+#    { 0x0031, 1, 1 },
+#    { 0x0032, 2, 1 },
+#    { 0x0033, 3, 1 },
+#    { 0x0034, 4, 1 },
+#    { 0x0035, 5, 1 },
+#    { 0x0036, 6, 1 },
+#    { 0x0037, 7, 1 },
+#    { 0x0038, 8, 1 },
+#    { 0x0039, 9, 1 },
+#    { 0x00B2, 2, 1 },
+#    { 0x00B3, 3, 1 },
+File: ./tests/unictype/test-pr_alphabetic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_ascii_hex_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_arabic_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_arabic_right_to_left.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_block_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_boundary_neutral.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_common_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_embedding_or_override.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_eur_num_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_eur_num_terminator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_european_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_left_to_right.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_non_spacing_mark.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_other_neutral.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_pdf.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_segment_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_bidi_whitespace.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_byname.c
+Hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 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.
+#
+#   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/unictype/test-pr_combining.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_composite.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_currency_symbol.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_dash.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_decimal_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_default_ignorable_code_point.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_deprecated.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_diacritic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_extender.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_format_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_grapheme_base.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_grapheme_extend.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_grapheme_link.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_hex_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_hyphen.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_id_continue.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_id_start.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_ideographic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_ids_binary_operator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_ids_trinary_operator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_ignorable_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_iso_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_join_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_left_of_pair.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_line_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_logical_order_exception.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_lowercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_math.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_non_break.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_not_a_character.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_numeric.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_alphabetic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_default_ignorable_code_point.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_grapheme_extend.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_id_continue.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_id_start.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_lowercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_math.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_other_uppercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_paired_punctuation.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_paragraph_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_pattern_syntax.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_pattern_white_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_private_use.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_punctuation.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_quotation_mark.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_radical.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_sentence_terminal.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_soft_dotted.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_terminal_punctuation.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_test.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-pr_titlecase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_unassigned_code_value.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_unified_ideograph.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_uppercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_variation_selector.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_white_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_xid_continue.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_xid_start.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-pr_zero_width.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-predicate-part1.h
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-predicate-part2.h
+Hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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: ./tests/unictype/test-scripts.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-sy_c_ident.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-sy_c_whitespace.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unictype/test-sy_java_ident.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 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: ./tests/unictype/test-sy_java_whitespace.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 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
+File: ./tests/unilbrk/test-u16-possible-linebreaks.c
+Hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of UTF-16 strings.
+#   Copyright (C) 2008 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: ./tests/unilbrk/test-u16-width-linebreaks.c
+Hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of UTF-16 strings.
+#   Copyright (C) 2008 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: ./tests/unilbrk/test-u32-possible-linebreaks.c
+Hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of UTF-32 strings.
+#   Copyright (C) 2008 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: ./tests/unilbrk/test-u32-width-linebreaks.c
+Hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of UTF-32 strings.
+#   Copyright (C) 2008 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: ./tests/unilbrk/test-u8-possible-linebreaks.c
+Hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of UTF-8 strings.
+#   Copyright (C) 2008 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: ./tests/unilbrk/test-u8-width-linebreaks.c
+Hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of UTF-8 strings.
+#   Copyright (C) 2008 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: ./tests/unilbrk/test-ulc-possible-linebreaks.c
+Hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of strings.
+#   Copyright (C) 2008 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: ./tests/unilbrk/test-ulc-width-linebreaks.c
+Hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+Copyright: 2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of line breaking of strings.
+#   Copyright (C) 2008 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: ./tests/uniname/UnicodeDataNames.txt
+Hash: a1676b8b73689618daa1662cabf719b5da50cf74a63224111534949d3e4297fb
+Copyright:
+License:
+#Header:
+#0020;SPACE;Zs;0;WS;;;;;N;;;;;
+#0021;EXCLAMATION MARK;Po;0;ON;;;;;N;;;;;
+#0022;QUOTATION MARK;Po;0;ON;;;;;N;;;;;
+#0023;NUMBER SIGN;Po;0;ET;;;;;N;;;;;
+#0024;DOLLAR SIGN;Sc;0;ET;;;;;N;;;;;
+#0025;PERCENT SIGN;Po;0;ET;;;;;N;;;;;
+#0026;AMPERSAND;Po;0;ON;;;;;N;;;;;
+#0027;APOSTROPHE;Po;0;ON;;;;;N;APOSTROPHE-QUOTE;;;;
+#0028;LEFT PARENTHESIS;Ps;0;ON;;;;;Y;OPENING PARENTHESIS;;;;
+#0029;RIGHT PARENTHESIS;Pe;0;ON;;;;;Y;CLOSING PARENTHESIS;;;;
+#002A;ASTERISK;Po;0;ON;;;;;N;;;;;
+#002B;PLUS SIGN;Sm;0;ES;;;;;N;;;;;
+#002C;COMMA;Po;0;CS;;;;;N;;;;;
+#002D;HYPHEN-MINUS;Pd;0;ES;;;;;N;;;;;
+#002E;FULL STOP;Po;0;CS;;;;;N;PERIOD;;;;
+File: ./tests/uniname/test-uninames.c
+Hash: 75aa6d9c3dd3d7292e5386895029004117b7bb082ce4f21227c105dc6af43b00
+Copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test the Unicode character name functions.
+#   Copyright (C) 2000-2003, 2005, 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.
+#
+#   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/uniname/test-uninames.sh
+Hash: 853dcc547f6774df0e14d3d22621c60a885132801e94352425dc0992f91b1fb4
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#exec ./test-uninames${EXEEXT} "$srcdir/uniname/UnicodeDataNames.txt"
+File: ./tests/uninorm/NormalizationTest.txt
+Hash: 886760af898381620a8980841c646ae70e894b5292c3138e6dfd75b6904deffb
+Copyright:
+License:
+#Header:
+
+File: ./tests/uninorm/test-canonical-decomposition.c
+Hash: a448e6e47900ce6ef19b5c003b18e330f376cd946cbd71d73028af86abe135dd
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical decomposition of Unicode characters.
+#   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: ./tests/uninorm/test-compat-decomposition.c
+Hash: 1a1be0d3a07610958181e24240ac9a5ecbf2ab378eee5f10e83361662f9c4846
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility decomposition of Unicode characters.
+#   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: ./tests/uninorm/test-composition.c
+Hash: a9cfc5518ecd4051f86fd4d69f17642c965db52574d6e05e7a6c48d910e863b8
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical composition of Unicode characters.
+#   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: ./tests/uninorm/test-decomposing-form.c
+Hash: 69576c1fa17d13a8886c698b7d02742d961e36583f54b708bbd69ad096c32a93
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of decomposing variant of a normalization form.
+#   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: ./tests/uninorm/test-decomposition.c
+Hash: e098c1a33862ac43c6a81a23842bcc036bc222abd16cabf7585b40c5ffa9f13b
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of decomposition of Unicode characters.
+#   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: ./tests/uninorm/test-nfc.c
+Hash: e9e561889a62796cb7a20a6a9044b31b813500f2a501e285020f9150b1bd8e9b
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical normalization of Unicode strings.
+#   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: ./tests/uninorm/test-nfd.c
+Hash: 9e4d1ad511a5edfbe76247e671aeba2f3a2ccb7d048d408440d9d64a2b6bfd86
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical decomposition of Unicode strings.
+#   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: ./tests/uninorm/test-nfkc.c
+Hash: f852f8cc0ef2cc1d6145b5040910d25bad300da7f4f217b441bf42f48c5b684f
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility normalization of Unicode strings.
+#   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: ./tests/uninorm/test-nfkd.c
+Hash: 996838de5e25b4e10b7be70b8e0139e15b9852eec680d7813b7ac0e9cd4a4254
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility decomposition of Unicode strings.
+#   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: ./tests/uninorm/test-u16-nfc.c
+Hash: b698b4d1c028fb6ecf50c5fbd520583195bbb1d0e55ad4b6e098487c6ad28d38
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical normalization of UTF-16 strings.
+#   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: ./tests/uninorm/test-u16-nfd.c
+Hash: 4c837d69f99444f70aa8a5a6b4ac325ffcca6a95ec60cb4fc052a53d8bbe2a44
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical decomposition of UTF-16 strings.
+#   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: ./tests/uninorm/test-u16-nfkc.c
+Hash: 498eacf1ec13365c3b4a66b32f14a6a10374555a75e6a3a68916446e76c2b146
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility normalization of UTF-16 strings.
+#   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: ./tests/uninorm/test-u16-nfkd.c
+Hash: 0b13b0dddc12354427fafcf78195149905174c48a77bdfea7de548c164de9ec8
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility decomposition of UTF-16 strings.
+#   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: ./tests/uninorm/test-u16-normcmp.c
+Hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of normalization insensitive comparison of UTF-16 strings.
+#   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: ./tests/uninorm/test-u16-normcmp.h
+Hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of normalization insensitive comparison of UTF-16 strings.
+#   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: ./tests/uninorm/test-u16-normcoll.c
+Hash: ceee340b1298ce1b06479da651ec2099f4356abfe07c42a2cf75b2f3ccc53855
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locale dependent, normalization insensitive comparison of
+#   UTF-16 strings.
+#   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
+File: ./tests/uninorm/test-u32-nfc-big.c
+Hash: 0d2777874284fe0a8c91d2b3b2a5399b823cb2dad79d585383eb83c79b57c81c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of Unicode compliance of canonical normalization of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-nfc-big.sh
+Hash: 756efd18ad52a52ef3c82289a3036f7c5fff9304a556162298fa05572b3ad8d5
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#exec ./test-u32-nfc-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+File: ./tests/uninorm/test-u32-nfc.c
+Hash: 1b33b266858f6f5526266ebd1602fa80e26475d58bdeb7e6c376bfb53ba04963
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical normalization of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-nfd-big.c
+Hash: 63854a2632b7cbc28cf0082fff71e81449b3459399888d8c59085994b440fbd1
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of Unicode compliance of canonical decomposition of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-nfd-big.sh
+Hash: 7df6600ba689632b1923565f4cea0c349205eb81ab54e48adbe2b4f19f1a0710
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#exec ./test-u32-nfd-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+File: ./tests/uninorm/test-u32-nfd.c
+Hash: 1d11efc667f9a1a96ae0c1cf7a7ff48efeb6343fd34d5bf65bc009926b652e1b
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical decomposition of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-nfkc-big.c
+Hash: 03584a064142db823aa30f198f34140a95768d7cb752d9bc2b4fd2b5064d9967
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of Unicode compliance of compatibility normalization of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-nfkc-big.sh
+Hash: 9c1bbb4dc3679b54e635a3f50ac29520d1bdf8fcff118b56b01b7760af61a802
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#exec ./test-u32-nfkc-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+File: ./tests/uninorm/test-u32-nfkc.c
+Hash: 4cb74b532545362c81ed6ff3a88bc7ae33d0663e9262942ee6c264d1190e1fbd
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility normalization of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-nfkd-big.c
+Hash: 12acb786931e36a2d9a6ba2d9807d967a72b06b659b6e37181b20b6168235f5f
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of Unicode compliance of compatibility decomposition of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-nfkd-big.sh
+Hash: 59c7882b0d8e4cb0a3f3b3d4deceaed6b01da8bcd5dcd430931782d394e9a581
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#exec ./test-u32-nfkd-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+File: ./tests/uninorm/test-u32-nfkd.c
+Hash: 35ed77ced7909ca500b2c08af6836d013992774deafe0846b72ecfa13d6f031c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility decomposition of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-normalize-big.c
+Hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of Unicode compliance of normalization of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-normalize-big.h
+Hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of Unicode compliance of normalization of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-normcmp.c
+Hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of normalization insensitive comparison of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-normcmp.h
+Hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of normalization insensitive comparison of UTF-32 strings.
+#   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: ./tests/uninorm/test-u32-normcoll.c
+Hash: 3b3591a744117db52df87ebfee1374c242580690a9d38dd72b9264d47d519b12
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locale dependent, normalization insensitive comparison of
+#   UTF-32 strings.
+#   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
+File: ./tests/uninorm/test-u8-nfc.c
+Hash: 1cc025cec921d4f28a082455f5ee5c4c03ba8293305aa7b8c3b0c1fbba30c4fa
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical normalization of UTF-8 strings.
+#   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: ./tests/uninorm/test-u8-nfd.c
+Hash: ab1a65db2659f7732acdd205f0b1ea3117f4b85013e5c38a9f46d225ad2ae0f0
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical decomposition of UTF-8 strings.
+#   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: ./tests/uninorm/test-u8-nfkc.c
+Hash: d7082ba6f4b74e4554c6653e18151eb793cdda74f1b47770530230295d2e3e2e
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility normalization of UTF-8 strings.
+#   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: ./tests/uninorm/test-u8-nfkd.c
+Hash: a813ff37ff6161e75f5290a0fc5a2e80284c57f42d059e4ba9bd16159a1fdfc8
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of compatibility decomposition of UTF-8 strings.
+#   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: ./tests/uninorm/test-u8-normcmp.c
+Hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of normalization insensitive comparison of UTF-8 strings.
+#   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: ./tests/uninorm/test-u8-normcmp.h
+Hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of normalization insensitive comparison of UTF-8 strings.
+#   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: ./tests/uninorm/test-u8-normcoll.c
+Hash: d7aa94f225cc5310484036b430a51f201b05b9bc7784316c1d21f6a605a339ea
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of locale dependent, normalization insensitive comparison of
+#   UTF-8 strings.
+#   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
+File: ./tests/uninorm/test-uninorm-filter-nfc.c
+Hash: b66d309ad83a237d8d0a247cedfab3884798bad886cc15f3a6ba1d9f5e13b9ad
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of canonical normalization of streams.
+#   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: ./tests/unistdio/test-u16-asnprintf1.c
+Hash: 4cd1fc1c179cccfb1ae23beba8905574b7607b734ca02cb70a1267216322a5a4
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_asnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u16-asnprintf1.h
+Hash: 76a1f62bd7c8d5161add6df04b31cd91ada3814cc0ca69bd9753a73a17dfcea4
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_[v]asnprintf() function.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-u16-printf1.h
+Hash: 909d6f0cefa405afb2e1072bb26eb4df9ba77e176f713b5f446a0c35b6b45ee7
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_v[a]s[n]printf() function.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-u16-vasnprintf1.c
+Hash: 3d425ccab1f150ddf5f5b81607ce8bfcfdd0c2ccb574609fe36a93297b08258e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_vasnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u16-vasnprintf2.c
+Hash: c42edbef700ece3826498e7ec7562a528f72171d32e1dcadd5589aade0a62cc1
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u16-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-u16-vasnprintf3.c
+Hash: 6b80497faada59178ae32663d8cc7aac6607d31f69c43bd2ab2a411492bfa495
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u16-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-u16-vasprintf1.c
+Hash: d559b3310501b16f524c4cf845f697c47b883582976b38184410d2f88971682c
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_vasprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u16-vsnprintf1.c
+Hash: bbea74e4dfbebb15cf5bdf3dae5d9e5b9c0fecf7b81cd5d597686a27b8e12570
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_vsnprintf() function.
+#   Copyright (C) 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.
+#
+#   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/unistdio/test-u16-vsprintf1.c
+Hash: 51f1b19e6f03063d8833db2914a0b59598e146143ff42eb5789564b39888d994
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_vsprintf() function.
+#   Copyright (C) 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.
+#
+#   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/unistdio/test-u32-asnprintf1.c
+Hash: d249b9b64091c3e4f41e6e9b0e7e856c278716eb4db6a989f603c9859fedf963
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_asnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u32-asnprintf1.h
+Hash: 8b746d35a6ed28682834e7bd2e553b62a12e899d022589df093e016b38fb03af
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_[v]asnprintf() function.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-u32-printf1.h
+Hash: 2aa402941192f63adcad98959781ac2774070979f335f1332164a3863cc54404
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_v[a]s[n]printf() function.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-u32-vasnprintf1.c
+Hash: 2d05aa67379ffb2f79eb2308a4bc06bfd43b048ee90b89ae18730279e363c524
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_vasnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u32-vasnprintf2.c
+Hash: b083a2377405a07fe51eb035ad09a0489bf65067207a0566910712abcb30726b
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u32-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-u32-vasnprintf3.c
+Hash: 4fcf74ce885ab101762032b20b3ad9f1cfbfb52430e736add8c65743ec40eade
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u32-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-u32-vasprintf1.c
+Hash: eabc0bb1a9dbe71c93902c4a1490621caad6c67d3e03f4ac411b05807cb595e4
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_vasprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u32-vsnprintf1.c
+Hash: 2fb5c97c1868ff9f912aae2bc8784dbe759e65cfcb02ac8263da73868a208a49
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_vsnprintf() function.
+#   Copyright (C) 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.
+#
+#   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/unistdio/test-u32-vsprintf1.c
+Hash: 36cf2e191798aa14ab7c7a791b0d61357029ec015af3c1feb99aaf853e1b8803
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_vsprintf() function.
+#   Copyright (C) 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.
+#
+#   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/unistdio/test-u8-asnprintf1.c
+Hash: f2754ecea17ff7e997c7ba8312c71a022f600e49807de5f420c8bb62f0871cd8
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_asnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u8-asnprintf1.h
+Hash: 46bdc3f468fe19b87aaacbecbd84f662c90c6ab838125defd47e5412c9bd67c1
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_[v]asnprintf() function.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-u8-printf1.h
+Hash: 1b1973376c0d8b5d5f884d50b7b1ab402e3e31243b03bc3f8e9c3251e39c66ec
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_v[a]s[n]printf() function.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-u8-vasnprintf1.c
+Hash: feffbb7a585c58b542b866102777167000d487253536607fd7500a6f21c5a1d5
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_vasnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u8-vasnprintf2.c
+Hash: 6964834677d5fd9d5fcec4e56ebc23c309ef467f98ae1827e81e9739de99eaa2
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u8-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-u8-vasnprintf3.c
+Hash: 59c1d2cbfeabd9ca557c7c72f2f556faab45e78c6113db11244cbe00eafb4c91
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u8-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-u8-vasprintf1.c
+Hash: 005e299ef65aa2dfd2c981e1fb5ae933957acfc190152132b9bd9da6b75afc68
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_vasprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-u8-vsnprintf1.c
+Hash: f0f1a7e874f9cdb481d2920816076e14198c8279ed8878458668578ce82643d5
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_vsnprintf() function.
+#   Copyright (C) 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.
+#
+#   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/unistdio/test-u8-vsprintf1.c
+Hash: ecfe8f24ee3cdd3323a0192f09dd50590f4201122e5b203aa84879ae682ff319
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_vsprintf() function.
+#   Copyright (C) 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.
+#
+#   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/unistdio/test-ulc-asnprintf1.c
+Hash: f460de9dace19bfa0b9e79f25557bd411248db7e9c41ded07d1b450087c5e1cb
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_asnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-ulc-asnprintf1.h
+Hash: cd00792dc677501bacb09b04f578ee318c85955822b7e39b71f20ded701252f9
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_[v]asnprintf() functions.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-ulc-printf1.h
+Hash: 52719b059d0fe4592ec7de9c12156520eacdf740e6a9b43edaf32d1650a8c992
+Copyright: 2007 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_v[a]s[n]printf() functions.
+#   Copyright (C) 2007 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: ./tests/unistdio/test-ulc-vasnprintf1.c
+Hash: 38f11760c3832f5b714de061118c87e63e5e70c624e5f25bb835676b6055e6b4
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_vasnprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-ulc-vasnprintf2.c
+Hash: be7efc5b5cb950d1b005d9fe5af23b12c0eb89bc049db7294d999044a6329e1e
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-ulc-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-ulc-vasnprintf3.c
+Hash: 90ffc7b3f6cb85309a0e342f0f768c7a4c2c729a08d2b831a0f549e8e01718d0
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-ulc-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+File: ./tests/unistdio/test-ulc-vasprintf1.c
+Hash: 0db7617d589e3703964119869d14691abb2498a1fc25d64a755eec64dfd07413
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_vasprintf() function.
+#   Copyright (C) 2007-2008 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: ./tests/unistdio/test-ulc-vsnprintf1.c
+Hash: bb840d45e39a1be31b0b4daad61d03d30d8376f10220704e06c94f655cc3a564
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_vsnprintf() function.
+#   Copyright (C) 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.
+#
+#   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/unistdio/test-ulc-vsprintf1.c
+Hash: d062894ca1aa3e3cc138093e10d57c39a38df1464ffcf75538249c801da83c35
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of ulc_vsprintf() function.
+#   Copyright (C) 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.
+#
+#   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/uniwbrk/test-u16-wordbreaks.c
+Hash: 11ab1e7ac1c6c7ba08cea587aadb03a6aa110a3169c7bf643d0ea2764e240537
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of word breaks in UTF-16 strings.
+#   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: ./tests/uniwbrk/test-u32-wordbreaks.c
+Hash: f49f7bebcb1395a7fa915f963b4a677a3698fc1d2e5ff93f955be0299357baee
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of word breaks in UTF-32 strings.
+#   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: ./tests/uniwbrk/test-u8-wordbreaks.c
+Hash: bb82bf9821127ceb2c7da498d0c101d05faef0dd319c018e41d56ed0f3ac1c31
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of word breaks in UTF-8 strings.
+#   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: ./tests/uniwbrk/test-ulc-wordbreaks.c
+Hash: 1609df8eadc7abda56ce3dec4a2ec747326360d74afb059c522331d5b242533c
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Test of word breaks in strings.
+#   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: ./tests/uniwbrk/test-ulc-wordbreaks.sh
+Hash: d1d3525c27882f7ded09b3b5fa177ebddcfb16a75b19ef3804ae6f4731f2962c
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-ulc-wordbreaks${EXEEXT}
+File: ./tests/uniwidth/test-u16-strwidth.c
+Hash: e5c07a0d8d419dff0b836a33748dee1cc6e0f9d71808ca383caefda4c8f0d551
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_strwidth() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-u16-width.c
+Hash: 6874b1458a692740482ff6e7172bf490f6dcc01985040b888e7bd2d7f7243261
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u16_width() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-u32-strwidth.c
+Hash: a4d26a909a61a615cf5aa5b183b291ca10258e5123a9eea0aec24856da402b1d
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_strwidth() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-u32-width.c
+Hash: e651f14a8b91f79e7b9cbf7403e88af982c9d37e0b1a5327c89da40f1bde988c
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u32_width() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-u8-strwidth.c
+Hash: fcf5c6c2c481b0375772edb286bed88b0ca421d6736214ae4e0a64567beb75c7
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_strwidth() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-u8-width.c
+Hash: 9e7db4127bec42b0e97fa3a07242099cb818e1e533c208c158bcc2969c7d7c31
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of u8_width() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-uc_width.c
+Hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of uc_width() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-uc_width2.c
+Hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: 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:
+#/* Test of uc_width() function.
+#   Copyright (C) 2007-2008 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: ./tests/uniwidth/test-uc_width2.sh
+Hash: 26f58b4ef6788b773c28c79baabad9e1739f820166b24458450bfa7cd542370f
+Copyright:
+License:
+#Header:
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles uc_width.out"
+#./test-uc_width2${EXEEXT} | LC_ALL=C tr -d '\r' > uc_width.out
+#
+#tmpfiles="$tmpfiles uc_width.ok"
+#cat > uc_width.ok <<\EOF
+#0000          0
+#0020..007E    1
+#00A0          1
+#00A1..00AC    A
+#00AD          0
+File: ./tests/zerosize-ptr.h
+Hash: f1e50a6aba1af63593fff7b9ec71317ade999e0e10d738a6594aa3de16536da7
+Copyright: 2009 Free Software Foundation, Inc.
+License: 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:
+#/* Return a pointer to a zero-size object in memory.
+#   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: ./top/GNUmakefile
+Hash: 1db2e4a3959febe32d5c70280a5b28547600d854b8d1b61ec85d3a9b670a2b23
+Copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc.
+License: 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:
+## Having a separate GNUmakefile lets me `include' the dynamically
+## generated rules created via cfg.mk (package-local configuration)
+## as well as maint.mk (generic maintainer rules).
+## This makefile is used only if you run GNU Make.
+## It is necessary if you want to build targets usually of interest
+## only to the maintainer.
+#
+## Copyright (C) 2001, 2003, 2006-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: ./top/maint.mk
+Hash: eef091164cb5f26dc538fb6b3940b82d779d05390f32dffea43d1161be06adc1
+Copyright: 2001-2009 Free Software Foundation, Inc.
+License: 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:
+## -*-Makefile-*-
+## This Makefile fragment tries to be general-purpose enough to be
+## used by many projects via the gnulib maintainer-makefile module.
+#
+### Copyright (C) 2001-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: ./users.txt
+Hash: f5c05b7f2c33b93dcda0aa8f108195721e70410ef027614d4e342b00ccd15536
+Copyright:
+License:
+#Header:
+#The following packages appear to be using gnulib and gnulib-tool:
+#
+#  Net::CDP        http://search.cpan.org/src/MCHAPMAN/Net-CDP-0.09/libcdp/
+#  OPeNDAP         http://scm.opendap.org:8090/svn/trunk/
+#  anubis          http://cvs.sv.gnu.org/viewcvs/anubis/anubis/
+#  autobuild       http://josefsson.org/autobuild/
+#  bison           http://git.sv.gnu.org/gitweb/?p=bison.git
+#  clisp           http://clisp.cvs.sourceforge.net/clisp/clisp/
+#  coreutils       http://git.sv.gnu.org/gitweb/?p=coreutils.git
+#  cpio            http://cvs.sv.gnu.org/viewcvs/cpio/cpio/
+#  cvs             http://cvs.sv.gnu.org/viewcvs/cvs/ccvs/
+#  diffutils       http://cvs.sv.gnu.org/viewcvs/diffutils/diffutils/
+#  findutils       http://cvs.sv.gnu.org/viewcvs/findutils/findutils/
+#  gettext         http://cvs.sv.gnu.org/viewcvs/gettext/gettext/
+#  gnuit           http://ftp.gnu.org/gnu/gnuit/gnuit-4.9.2.tar.gz
+
index e59b31e..8bb62a3 100644 (file)
 This package was debianized by Daniel Baumann <daniel@debian.org> on
 Thu,  1 Jun 2006 00:00:00 +0200.
 
-It was downloaded from <http://www.gnu.org/software/gnulib/>.
-
-The files in here are mostly copyright (C) Free Software Foundation, and
-are under assorted licenses.  Mostly, but not entirely, GPL.
-
-Many modules are provided dual-license, either GPL or LGPL at your
-option.  The headers of files in the lib directory (e.g., lib/error.c)
-state GPL for convenience, since the bulk of current gnulib users are
-GPL'd programs.  But the files in the modules directory (e.g.,
-modules/error) state the true license of each file, and when you use
-'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
-the files to have an LGPL header as part of copying them from gnulib
-to your project directory, or fails because the modules you requested
-were not licensed under LGPL.
-
-Some of the source files in lib/ have different licenses.  Also, the
-copy of maintain.texi in doc/ has a verbatim-copying license, and
-doc/standards.texi and make-stds.texi are GFDL.
-
-On Debian systems, the complete text of the GNU General Public License
-can be found in /usr/share/common-licenses/GPL file,
-the GNU Lesser General Public License in /usr/share/common-licenses/LGPL,
-and the GNU Free Document License in /usr/share/common-licenses/GFDL.
-
-The Debian packaging is Copyright 2006-2008, Daniel Baumann <daniel@debian.org>
-and Copyright 2009 Ian Beckwith <ianb@debian.org>, and is licensed
-under the GPL-2, see `/usr/share/common-licenses/GPL-2'.
+It was downloaded from <git://git.savannah.gnu.org/gnulib.git>.
+
+> The files in here are mostly copyright (C) Free Software Foundation, and
+> are under assorted licenses.  Mostly, but not entirely, GPL.
+>
+> Many modules are provided dual-license, either GPL or LGPL at your
+> option.  The headers of files in the lib directory (e.g., lib/error.c)
+> state GPL for convenience, since the bulk of current gnulib users are
+> GPL'd programs.  But the files in the modules directory (e.g.,
+> modules/error) state the true license of each file, and when you use
+> 'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
+> the files to have an LGPL header as part of copying them from gnulib
+> to your project directory, or fails because the modules you requested
+> were not licensed under LGPL.
+>
+> Some of the source files in lib/ have different licenses.  Also, the
+> copy of maintain.texi in doc/ has a verbatim-copying license, and
+> doc/standards.texi and make-stds.texi are GFDL.
+
+Detailed copyright information follows, see debian/clscan/README
+in the gnulib source package for information on updating this.
+
+Files: debian/*
+Copyright: 2006-2008, Daniel Baumann <daniel@debian.org> /  2009 Ian Beckwith <ianb@debian.org>
+License: GPL-2
+
+Files: modules/*
+Copyright: 2002-2007 Free Software Foundation, Inc.
+License: other
+  From modules/README:
+  > All the files in this directory are distributed under the following copyright:
+  >
+  > Copyright (C) 2002-2007 Free Software Foundation, Inc.
+  > Copying and distribution of this file, with or without modification,
+  > in any medium, are permitted without royalty provided the copyright
+  > notice and this notice are preserved.
+  From modules/COPYING:
+  > The files in this directory describe the gnulib modules.
+  > The following copyright notice applies to each of these
+  > description files.
+  >
+  > Copyright (C) 2006 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.
+
+Files: ./doc/solaris-versions
+Copyright: 2003, 2005, 2006 Free Software Foundation, Inc.
+License: other [REF01]
+
+Files: ./doc/Makefile
+Copyright: 2004, 2006-2009 Free Software Foundation, Inc.
+License: other [REF01]
+
+Files: ./doc/gnu-oids.texi
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: other [REF01]
+
+Files: ./doc/INSTALL, ./doc/INSTALL.ISO, ./doc/INSTALL.UTF-8, ./doc/install.texi
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: other [REF02]
+
+Files: ./Makefile
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: other [REF03]
+
+Files: ./doc/COPYINGv2
+Copyright: 1989, 1991 Free Software Foundation, Inc.
+License: other [REF04]
+
+Files: ./doc/COPYING.LESSERv2
+Copyright: 1991, 1999 Free Software Foundation, Inc.
+License: other [REF04]
+
+Files: ./doc/fdl-1.2.texi
+Copyright: 2000,2001,2002 Free Software Foundation, Inc.
+License: other [REF04]
+
+Files: ./doc/COPYING.LESSERv3, ./doc/COPYINGv3, ./doc/lgpl-3.0.texi
+Copyright: 2007 Free Software Foundation, Inc.
+License: other [REF04]
+
+Files: ./build-aux/mkinstalldirs
+License: other [REF05]
+
+Files: ./build-aux/install-sh
+Copyright: 1994 X Consortium
+License: other [REF06]
+
+Files: ./build-aux/po/Makefile.in.in
+Copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+License: other [REF07]
+
+Files: ./m4/onceonly.m4
+Copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc.
+License: other [REF08]
+
+Files: ./m4/afs.m4
+Copyright: 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc.
+License: other [REF09]
+
+Files: ./m4/ulonglong.m4
+Copyright: 1999-2007 Free Software Foundation, Inc.
+License: other [REF09]
+
+Files: ./m4/locale-tr.m4
+Copyright: 2003, 2005-2009 Free Software Foundation, Inc.
+License: other [REF09]
+
+Files: ./m4/gnulib-tool.m4
+Copyright: 2004-2005 Free Software Foundation, Inc.
+License: other [REF09]
+
+Files: ./m4/stat-macros.m4
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: other [REF09]
+
+Files: ./m4/gnulib-common.m4
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: other [REF09]
+
+Files: ./m4/00gnulib.m4, ./m4/ungetc.m4
+Copyright: 2009 Free Software Foundation, Inc.
+License: other [REF09]
+
+Files: ./doc/verify.texi
+Copyright: 2006 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF10]
+
+Files: ./doc/maintain.texi, ./doc/standards.texi
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/make-stds.texi
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/alloca-opt.texi, ./doc/alloca.texi
+Copyright: 2004, 2007 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/gnulib.texi
+Copyright: 2004-2009 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/ctime.texi, ./doc/inet_ntoa.texi, ./doc/quote.texi
+Copyright: 2005 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/lib-symbol-visibility.texi
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/gnulib-tool.texi
+Copyright: 2005-2009 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/gcd.texi
+Copyright: 2006 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/error.texi
+Copyright: 2007 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/c-ctype.texi, ./doc/c-strcase.texi, ./doc/c-strcaseeq.texi, ./doc/c-strcasestr.texi, ./doc/c-strstr.texi, ./doc/c-strtold.texi
+Copyright: 2008 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./doc/c-strtod.texi
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: GFDL-1.3+-NIV [REF11]
+
+Files: ./build-aux/pmccabe.css, ./doc/gendocs_template, ./doc/relocatable.texi, ./lib/bcopy.c, ./lib/c-strtold.c, ./lib/cloexec.h, ./lib/close-stream.h, ./lib/dev-ino.h, ./lib/dirchownmod.h, ./lib/fchown-stub.c, ./lib/file-set.h, ./lib/fprintftime.c, ./lib/ftruncate.c, ./lib/hash-triple.h, ./lib/idcache.h, ./lib/javaversion.class, ./lib/mkancesdirs.h, ./lib/mpsort.h, ./lib/posixver.h, ./lib/stat-macros.h, ./lib/strtoumax.c, ./lib/userspec.h, ./lib/utimens.h, ./lib/write-any-file.h, ./lib/xgethostname.h, ./lib/xmemcoll.h, ./lib/xnanosleep.h, ./lib/xstrtoimax.c, ./lib/xstrtold.c, ./lib/xstrtoul.c, ./lib/xstrtoumax.c
+License: GPL [REF12]
+
+Files: ./lib/getloadavg.c
+Copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/idcache.c
+Copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/filemode.c
+Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/linebuffer.c
+Copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/linebuffer.h
+Copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/rmdir.c
+Copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fstrcmp.c
+Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008, Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/diffseq.h
+Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/posixtm.c
+Copyright: 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/modechange.c
+Copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/modechange.h
+Copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fts_.h
+Copyright: 1989, 1993 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/userspec.c
+Copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/diacrit.h
+Copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/backupfile.c
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xmalloc.c
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xalloc.h
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/diacrit.c
+Copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/backupfile.h
+Copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getugroups.c
+Copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/readtokens.h
+Copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fts.c
+Copyright: 1990, 1993, 1994 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/savedir.c
+Copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/mkdir-p.c
+Copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fileblocks.c
+Copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/basename.c
+Copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/argmatch.c
+Copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/argmatch.h
+Copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/dirname.c
+Copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/yesno.c
+Copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/isdir.c
+Copyright: 1990, 1998, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/stripslash.c
+Copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/readtokens.c
+Copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/mountlist.c
+Copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/mountlist.h
+Copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getusershell.c
+Copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/cloexec.c
+Copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getcwd.c
+Copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/getloadavg.m4
+Copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/exclude.c
+Copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/exclude.h
+Copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xgetdomainname.h
+Copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xgethostname.c
+Copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xgetdomainname.c
+Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/pathmax.h
+Copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/setenv.c
+Copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/readutmp.c
+Copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/readutmp.h
+Copyright: 1992-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/acosl.c, ./lib/asinl.c, ./lib/cosl.c, ./lib/sinl.c, ./lib/tanl.c
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+License: GPL [REF12]
+
+Files: ./lib/long-options.c
+Copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/long-options.h
+Copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/file-type.h
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/file-type.c
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./doc/getdate.texi
+Copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/mkdir-p.h
+Copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/group-member.c
+Copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/group-member.h
+Copyright: 1994, 1997, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstrtol.c
+Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstrtol.h
+Copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstrtol-error.c
+Copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/save-cwd.h
+Copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/save-cwd.c
+Copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getdate.h
+Copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/memcpy.c
+Copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fstrcmp.h
+Copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/elisp-comp
+Copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xgetcwd.h
+Copyright: 1995, 2001, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/human.c, ./lib/human.h
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/memcasecmp.c
+Copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/filenamecat.h
+Copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/rpmatch.c
+Copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/memcasecmp.h
+Copyright: 1996, 1998, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstrtod.h
+Copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstrtod.c
+Copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/jm-winsz2.m4
+Copyright: 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/jm-winsz1.m4
+Copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getgroups.c
+Copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/uptime.m4
+Copyright: 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/getgroups.m4
+Copyright: 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/canonicalize-lgpl.c
+Copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/lib-ld.m4
+Copyright: 1996-2003, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/canonicalize.h, ./lib/filenamecat.c
+Copyright: 1996-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/config.libpath
+Copyright: 1996-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/canonicalize.c
+Copyright: 1996-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/same.c
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xalloc-die.c
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/same.h
+Copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/hard-locale.c
+Copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/savedir.h
+Copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/d-ino.m4
+Copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/chown.c
+Copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/chown.m4
+Copyright: 1997-2001, 2003-2005, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/hash.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/quotearg.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/close-stream.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/closeout.c, ./lib/quotearg.h
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/quote.h
+Copyright: 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/quote.c
+Copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/hash.h
+Copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/fstypename.m4
+Copyright: 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/assert.m4
+Copyright: 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/st_dm_mode.m4
+Copyright: 1998, 1999, 2001, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/lchown.c
+Copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/filemode.h
+Copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/closeout.h
+Copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/utime.m4
+Copyright: 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/utime.c
+Copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/dirname.h
+Copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/lchown.m4
+Copyright: 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/posixtm.h
+Copyright: 1998, 2003, 2005, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/stat-time.m4
+Copyright: 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/utimes-null.m4
+Copyright: 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/perl.m4, ./m4/utimbuf.m4
+Copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/ls-mntd-fs.m4
+Copyright: 1998-2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/unlocked-io.m4
+Copyright: 1998-2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getdate.y
+Copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/nanosleep.c
+Copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/strtoimax.c
+Copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/memcoll.c
+Copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xasprintf.c
+Copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xvasprintf.c
+Copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/memcoll.h
+Copyright: 1999, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/hard-locale.h
+Copyright: 1999, 2003, 2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/version-etc.h
+Copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/sincosl.c
+Copyright: 1999, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/trigl.c
+Copyright: 1999, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/group-member.m4
+Copyright: 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/nanosleep.m4
+Copyright: 1999-2001, 2003-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/link-follow.m4
+Copyright: 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/version-etc-fsf.c
+Copyright: 1999-2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/longlong.m4
+Copyright: 1999-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/version-etc.c
+Copyright: 1999-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/timespec.m4
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/ftruncate.m4
+Copyright: 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/dos.m4
+Copyright: 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/unlink-busy.m4
+Copyright: 2000, 2001, 2004, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/rmdir-errno.m4
+Copyright: 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/timespec.h
+Copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fpending.h
+Copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fpending.c
+Copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/unictype/3level.h
+Copyright: 2000-2001 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/fpending.m4
+Copyright: 2000-2001, 2004-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/unictype/3levelbit.h
+Copyright: 2000-2002 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/mbswidth.m4
+Copyright: 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/gen-uni-tables.c
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/mbstate_t.m4
+Copyright: 2000-2002, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/unicodeio.h
+Copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/c-ctype.c
+Copyright: 2000-2003, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/c-ctype.h, ./lib/unicodeio.c
+Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/mbswidth.h
+Copyright: 2000-2004, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/mbswidth.c
+Copyright: 2000-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/atanl.c, ./lib/logl.c
+Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+License: GPL [REF12]
+
+Files: ./lib/unlocked-io.h
+Copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/inttostr.h
+Copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/rename.c
+Copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/hash-pjw.h
+Copyright: 2001, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/getcwd.m4
+Copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xgetcwd.c
+Copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/host-os.m4
+Copyright: 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/areadlink.h, ./lib/xreadlink.h
+Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/w32spawn.h
+Copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/unistd-safer.h
+Copyright: 2001, 2003, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/rename.m4
+Copyright: 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/hash-pjw.c
+Copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/stdio-safer.h
+Copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/clean-temp.c
+Copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./top/GNUmakefile
+Copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/areadlink-with-size.c, ./lib/areadlink.c, ./lib/xreadlink.c
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/dup-safer.c, ./lib/fopen-safer.c
+Copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/javaexec.sh.in
+Copyright: 2001, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/mbmemcasecoll.c, ./lib/mbmemcasecoll.h
+Copyright: 2001, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/javaexec.h
+Copyright: 2001-2002 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/sh-quote.h
+Copyright: 2001-2002, 2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/mbrtowc.m4
+Copyright: 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xsetenv.c
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/javacomp.sh.in, ./lib/gcd.c, ./lib/gcd.h, ./lib/javacomp.h
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xsetenv.h
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/copy-file.h, ./lib/findprog.h
+Copyright: 2001-2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/progname.c, ./lib/wait-process.c
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/classpath.c
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/pipe.h, ./lib/wait-process.h
+Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/javaexec.m4
+Copyright: 2001-2003, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/copy-file.c
+Copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/javacomp.m4
+Copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/javacomp.c, ./lib/javaexec.c
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/execute.h
+Copyright: 2001-2003, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/pipe-filter-aux.h, ./lib/pipe-filter-gi.c, ./lib/pipe-filter-ii.c
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/progname.h, ./lib/sh-quote.c, ./lib/xstriconv.c
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstriconv.h
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/findprog.c, ./lib/xconcat-filename.c
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/execute.c, ./lib/pipe.c, ./m4/environ.m4, ./m4/setenv.m4
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/concat-filename.h
+Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstriconveh.h
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./top/maint.mk
+Copyright: 2001-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/exitfail.h, ./m4/isdir.m4
+Copyright: 2002 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/trigl.h
+Copyright: 2002, 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/posixver.c, ./m4/backupfile.m4, ./m4/hard-locale.m4, ./m4/human.m4, ./m4/mkdir-p.m4, ./m4/xalloc.m4, ./m4/xgetcwd.m4
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xnanosleep.c, ./m4/xstrtol.m4
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xmemcoll.c
+Copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/strtoimax.m4, ./m4/strtoumax.m4
+Copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/c-stack.m4
+Copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/closeout.m4, ./m4/exclude.m4, ./m4/exitfail.m4, ./m4/getugroups.m4, ./m4/hash.m4, ./m4/idcache.m4, ./m4/long-options.m4, ./m4/memcoll.m4, ./m4/modechange.m4, ./m4/quote.m4, ./m4/readtokens.m4, ./m4/same.m4, ./m4/savedir.m4, ./m4/xstrtod.m4, ./m4/yesno.m4
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/exitfail.c
+Copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/getusershell.m4
+Copyright: 2002, 2003, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/expl.c, ./lib/sqrtl.c
+Copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/gettime.c
+Copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/settime.c
+Copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/gettime.m4, ./m4/settime.m4
+Copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/sig2str.c
+Copyright: 2002, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/c-stack.c
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/c-stack.h
+Copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/acl.m4, ./m4/quotearg.m4
+Copyright: 2002, 2004-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/sig2str.h
+Copyright: 2002, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/file-type.m4, ./m4/filemode.m4, ./m4/unistd-safer.m4
+Copyright: 2002, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/fileblocks.m4, ./m4/sig2str.m4
+Copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/bison.m4, ./m4/rmdir.m4
+Copyright: 2002, 2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/stdio-safer.m4
+Copyright: 2002, 2005-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/strerror.m4
+Copyright: 2002, 2007-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/acl.h
+Copyright: 2002, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/memcpy.m4, ./m4/tm_gmtoff.m4
+Copyright: 2002, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/unicodeio.m4
+Copyright: 2002-2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/posixtm.m4
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/copy-acl.c
+Copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/acl-internal.h, ./lib/acl_entries.c, ./lib/file-has-acl.c, ./lib/set-mode-acl.c
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/rpmatch.m4
+Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/getdomainname.m4, ./m4/libsigsegv.m4
+Copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xvasprintf.h
+Copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/dirname.m4
+Copyright: 2002-2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/getdate.m4
+Copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/clock_time.m4, ./m4/filenamecat.m4, ./m4/mountlist.m4, ./m4/posixver.m4, ./m4/save-cwd.m4, ./m4/userspec.m4
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/announce-gen, ./m4/readutmp.m4
+Copyright: 2002-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/reloc-ldflags, ./lib/classpath.h, ./lib/csharpcomp.h, ./lib/csharpexec.h, ./lib/xstrndup.h, ./m4/getnline.m4, ./m4/xstrndup.m4
+Copyright: 2003 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getnline.h
+Copyright: 2003, 2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/cycle-check.c, ./lib/fts-cycle.c
+Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/canonicalize.m4
+Copyright: 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/utimens.m4
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/gendocs.sh, ./lib/utimens.c
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/free.m4, ./m4/utimes.m4
+Copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/cycle-check.h, ./lib/getnline.c
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/c-strtod.c
+Copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/csharpexec.sh.in
+Copyright: 2003, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xmalloca.h
+Copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/relocatable.h
+Copyright: 2003, 2005, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fwriteerror.h
+Copyright: 2003, 2005-2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/relocatable.sh.in, ./lib/relocwrapper.c
+Copyright: 2003, 2005-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/install-reloc, ./m4/relocatable-lib.m4, ./m4/relocatable.m4
+Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/free.c
+Copyright: 2003, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/xstrndup.c
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/getdomainname.c
+Copyright: 2003, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/malloca.c, ./lib/xmalloca.c
+Copyright: 2003, 2006-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/canonicalize-lgpl.m4
+Copyright: 2003, 2006-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/mathl.m4, ./m4/readlink.m4, ./m4/tzset.m4
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/eealloc.h
+Copyright: 2003, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/execute.m4, ./m4/wait-process.m4
+Copyright: 2003, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/copy-file.m4, ./m4/eaccess.m4, ./m4/eealloc.m4, ./m4/findprog.m4, ./m4/sig_atomic_t.m4
+Copyright: 2003, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fatal-signal.h
+Copyright: 2003-2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/fatal-signal.m4
+Copyright: 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/malloca.m4
+Copyright: 2003-2004, 2006-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fatal-signal.c
+Copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/c-strtod.h
+Copyright: 2003-2004, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/csharpcomp.m4
+Copyright: 2003-2005, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/csharpexec.m4
+Copyright: 2003-2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/csharpcomp.sh.in
+Copyright: 2003-2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fwriteerror.c, ./lib/relocatable.c
+Copyright: 2003-2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/malloca.h, ./lib/readlink.c
+Copyright: 2003-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/getcwd-path-max.m4
+Copyright: 2003-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/csharpcomp.c, ./lib/csharpexec.c
+Copyright: 2003-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/progreloc.c
+Copyright: 2003-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/readtokens0.h, ./lib/utimecmp.h, ./lib/yesno.h, ./m4/savewd.m4
+Copyright: 2004 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/chdir-long.h
+Copyright: 2004, 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/cloexec.m4
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/calloc.c, ./lib/utimecmp.c, ./m4/chdir-long.m4, ./m4/utimecmp.m4
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/gnupload
+Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/c-strtod.m4
+Copyright: 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/readtokens0.c
+Copyright: 2004, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/pipe.m4
+Copyright: 2004, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/csharp.m4
+Copyright: 2004-2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/openat.h
+Copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/chdir-long.c, ./lib/fdopendir.c, ./lib/openat.c, ./m4/calloc.m4, ./m4/openat.m4
+Copyright: 2004-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/chdir-safer.h, ./lib/fprintftime.h, ./lib/gethrxtime.h, ./lib/readline.h, ./lib/stdlib-safer.h, ./lib/unistd--.h, ./lib/unlinkdir.h
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/creat-safer.c, ./lib/pipe-safer.c, ./lib/xtime.h, ./m4/argmatch.m4, ./m4/fprintftime.m4, ./m4/memcasecmp.m4, ./m4/stdlib-safer.m4, ./m4/xnanosleep.m4
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/gethrxtime.c, ./lib/mkstemp-safer.c, ./lib/pagealign_alloc.c, ./lib/stdlib--.h, ./m4/cycle-check.m4, ./m4/pagealign_alloc.m4
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/readline.c, ./m4/unlinkdir.m4
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/lchmod.m4
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/gethrxtime.m4
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/open-safer.c, ./lib/openat-die.c, ./lib/openat-safer.c
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fd-safer.c, ./lib/mkdirat.c, ./lib/openat-priv.h, ./lib/stdio--.h, ./m4/chdir-safer.m4, ./m4/readline.m4
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/stat-time.h
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/mmap-anon.m4
+Copyright: 2005, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/pagealign_alloc.h
+Copyright: 2005, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fcntl--.h, ./lib/fcntl-safer.h
+Copyright: 2005, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/chdir-safer.c
+Copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/unlinkdir.c, ./m4/bison-i18n.m4
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/fcntl-safer.m4
+Copyright: 2005-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./m4/fts.m4
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/ldd.sh.in, ./lib/clean-temp.h, ./lib/gl_anyavltree_list1.h, ./lib/gl_anyhash_list1.h, ./lib/gl_anyhash_list2.h, ./lib/gl_anylinked_list1.h, ./lib/gl_anyrbtree_list1.h, ./lib/gl_anytree_list1.h, ./lib/gl_array_list.h, ./lib/gl_array_oset.h, ./lib/gl_avltree_list.h, ./lib/gl_avltree_oset.h, ./lib/gl_avltreehash_list.h, ./lib/gl_carray_list.h, ./lib/gl_linked_list.h, ./lib/gl_linkedhash_list.h, ./lib/gl_rbtree_list.h, ./lib/gl_rbtree_oset.h, ./lib/gl_rbtreehash_list.h, ./lib/gl_sublist.h, ./lib/javaversion.h, ./lib/javaversion.java, ./lib/mkancesdirs.c, ./lib/rename-dest-slash.c, ./lib/savewd.h, ./lib/trim.h, ./m4/gl_list.m4, ./m4/ldd.m4, ./m4/lib-ignore.m4, ./m4/mkancesdirs.m4, ./m4/xvasprintf.m4
+Copyright: 2006 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/dirchownmod.c
+Copyright: 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/savewd.c
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/gl_avltree_list.c, ./lib/gl_avltreehash_list.c, ./lib/gl_linked_list.c, ./lib/gl_linkedhash_list.c, ./lib/gl_rbtree_list.c, ./lib/gl_rbtreehash_list.c, ./lib/propername.h
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/at-func.c, ./lib/fchmodat.c, ./lib/fstatat.c, ./lib/openat-proc.c, ./lib/tmpfile-safer.c, ./m4/flexmember.m4, ./m4/getcwd-abort-bug.m4, ./m4/rename-dest-slash.m4
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/gl_anyavltree_list2.h, ./lib/gl_anyrbtree_list2.h, ./lib/gl_anytree_oset.h, ./lib/gl_anytreehash_list1.h, ./lib/gl_anytreehash_list2.h, ./lib/gl_array_oset.c, ./lib/gl_avltree_oset.c, ./lib/gl_oset.c, ./lib/gl_oset.h, ./lib/gl_rbtree_oset.c, ./lib/verror.c, ./lib/verror.h, ./m4/close-stream.m4
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fchownat.c
+Copyright: 2006-2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/gl_anylinked_list2.h, ./lib/gl_anytree_list2.h, ./lib/gl_array_list.c, ./lib/gl_carray_list.c, ./lib/gl_list.c, ./lib/gl_list.h, ./lib/gl_sublist.c, ./lib/javaversion.c, ./lib/trim.c
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/vc-list-files, ./lib/propername.c
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/closein.c, ./lib/closein.h, ./lib/file-set.c, ./lib/getugroups.h, ./lib/hash-triple.c, ./lib/mpsort.c, ./lib/tmpfile.c, ./lib/write-any-file.c, ./lib/xprintf.c, ./m4/check-math-lib.m4, ./m4/closein.m4, ./m4/gnu-make.m4, ./m4/mpsort.m4
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/pmccabe2html
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/selinux-at.c, ./lib/selinux-at.h, ./m4/tmpfile.m4, ./m4/write-any-file.m4
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/git-version-gen, ./build-aux/mktempd, ./lib/isfinite.c, ./lib/isinf.c, ./lib/stdio-impl.h, ./lib/xprintf.h, ./m4/exponentd.m4, ./m4/exponentf.m4, ./m4/isnan.m4, ./m4/posix-shell.m4, ./tests/test-isfinite.c, ./tests/test-isinf.c
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/fflush.c, ./lib/strerror.c, ./m4/exponentl.m4, ./m4/fflush.m4, ./m4/isfinite.m4, ./m4/isinf.m4
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/obstack_printf.c, ./lib/parse-duration.c, ./lib/parse-duration.h, ./lib/sigpipe-die.c, ./lib/sigpipe-die.h, ./lib/xmemdup0.c, ./lib/xmemdup0.h, ./m4/obstack-printf.m4
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/gitlog-to-changelog, ./build-aux/useless-if-before-free, ./m4/pmccabe2html.m4
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./lib/git-merge-changelog.c
+Copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
+License: GPL [REF12]
+
+Files: ./m4/obstack-printf-posix.m4
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/update-copyright, ./lib/argp-version-etc.c, ./lib/argp-version-etc.h, ./lib/dirent--.h, ./lib/dirent-safer.h, ./lib/faccessat.c, ./lib/idpriv-drop.c, ./lib/idpriv-droptemp.c, ./lib/idpriv.h, ./lib/nproc.c, ./lib/nproc.h, ./lib/opendir-safer.c, ./lib/pipe-filter.h, ./lib/popen-safer.c, ./lib/priv-set.c, ./lib/priv-set.h, ./lib/symlinkat.c, ./lib/xstriconveh.c, ./m4/dirent-safer.m4, ./m4/faccessat.m4, ./m4/fdopendir.m4, ./m4/idpriv.m4, ./m4/mode_t.m4, ./m4/priv-set.m4, ./m4/symlinkat.m4, ./m4/version-etc.m4, ./tests/test-priv-set.c
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL [REF12]
+
+Files: ./build-aux/config.guess
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./build-aux/config.sub
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./build-aux/mdate-sh
+Copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./build-aux/missing
+Copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./build-aux/depcomp
+Copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./build-aux/compile
+Copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./tests/test-flock.c, ./tests/test-fsync.c
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./tests/test-link.c
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-2+ [REF13]
+
+Files: ./build-aux/texinfo.tex
+Copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-argmatch.c
+Copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-xstrtol.c
+Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-filenamecat.c
+Copyright: 1996-2007, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/uniname/test-uninames.c
+Copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./build-aux/x-to-1.in
+Copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./config/srclistvars.sh
+Copyright: 2002, 2003, 2004 2005, 2006, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./config/srclist-update
+Copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-c-stack.c
+Copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./build-aux/move-if-change
+Copyright: 2002-2007 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./posix-modules
+Copyright: 2002-2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./MODULES.html.sh, ./gnulib-tool
+Copyright: 2002-2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-stpncpy.c
+Copyright: 2003, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./build-aux/bootstrap
+Copyright: 2003-2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-iconvme.c
+Copyright: 2004, 2005 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-strstr.c
+Copyright: 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-fpending.c
+Copyright: 2004, 2007-2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-memmem.c
+Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-base64.c
+Copyright: 2004, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-arcfour.c, ./tests/test-arctwo.c, ./tests/test-getpass.c, ./tests/test-hmac-md5.c, ./tests/test-hmac-sha1.c, ./tests/test-md5.c, ./tests/test-rijndael.c, ./tests/test-verify.c
+Copyright: 2005 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-crc.c, ./tests/test-dirname.c
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./check-module
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-alloca-opt.c, ./tests/test-gettimeofday.c, ./tests/test-malloca.c
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-binary-io.c, ./tests/test-c-ctype.c
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-lock.c, ./tests/test-tls.c
+Copyright: 2005, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-sha1.c
+Copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./build-aux/bootstrap.conf
+Copyright: 2006, 2007 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-argp.c, ./tests/test-read-file.c
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-argp-2.sh, ./tests/test-array_list.c, ./tests/test-array_oset.c, ./tests/test-avltreehash_list.c, ./tests/test-carray_list.c, ./tests/test-i-ring.c, ./tests/test-linked_list.c, ./tests/test-linkedhash_list.c, ./tests/test-rbtree_list.c, ./tests/test-rbtree_oset.c, ./tests/test-rbtreehash_list.c
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-avltree_list.c, ./tests/test-avltree_oset.c
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-atexit.c, ./tests/test-fflush.c, ./tests/test-fprintf-posix2.c, ./tests/test-fseterr.c, ./tests/test-isnanl-nolibm.c, ./tests/test-printf-posix2.c, ./tests/unicase/test-cased.c, ./tests/unicase/test-ignorable.c, ./tests/unicase/test-predicate-part2.h, ./tests/unictype/test-categ_C.c, ./tests/unictype/test-categ_Cc.c, ./tests/unictype/test-categ_Cf.c, ./tests/unictype/test-categ_Cn.c, ./tests/unictype/test-categ_Co.c, ./tests/unictype/test-categ_Cs.c, ./tests/unictype/test-categ_L.c, ./tests/unictype/test-categ_Ll.c, ./tests/unictype/test-categ_Lm.c, ./tests/unictype/test-categ_Lo.c, ./tests/unictype/test-categ_Lt.c, ./tests/unictype/test-categ_Lu.c, ./tests/unictype/test-categ_M.c, ./tests/unictype/test-categ_Mc.c, ./tests/unictype/test-categ_Me.c, ./tests/unictype/test-categ_Mn.c, ./tests/unictype/test-categ_N.c, ./tests/unictype/test-categ_Nd.c, ./tests/unictype/test-categ_Nl.c, ./tests/unictype/test-categ_No.c, ./tests/unictype/test-categ_P.c, ./tests/unictype/test-categ_Pc.c, ./tests/unictype/test-categ_Pd.c, ./tests/unictype/test-categ_Pe.c, ./tests/unictype/test-categ_Pf.c, ./tests/unictype/test-categ_Pi.c, ./tests/unictype/test-categ_Po.c, ./tests/unictype/test-categ_Ps.c, ./tests/unictype/test-categ_S.c, ./tests/unictype/test-categ_Sc.c, ./tests/unictype/test-categ_Sk.c, ./tests/unictype/test-categ_Sm.c, ./tests/unictype/test-categ_So.c, ./tests/unictype/test-categ_Z.c, ./tests/unictype/test-categ_Zl.c, ./tests/unictype/test-categ_Zp.c, ./tests/unictype/test-categ_Zs.c, ./tests/unictype/test-ctype_alnum.c, ./tests/unictype/test-ctype_alpha.c, ./tests/unictype/test-ctype_blank.c, ./tests/unictype/test-ctype_cntrl.c, ./tests/unictype/test-ctype_digit.c, ./tests/unictype/test-ctype_graph.c, ./tests/unictype/test-ctype_lower.c, ./tests/unictype/test-ctype_print.c, ./tests/unictype/test-ctype_punct.c, ./tests/unictype/test-ctype_space.c, ./tests/unictype/test-ctype_upper.c, ./tests/unictype/test-ctype_xdigit.c, ./tests/unictype/test-pr_alphabetic.c, ./tests/unictype/test-pr_ascii_hex_digit.c, ./tests/unictype/test-pr_bidi_arabic_digit.c, ./tests/unictype/test-pr_bidi_arabic_right_to_left.c, ./tests/unictype/test-pr_bidi_block_separator.c, ./tests/unictype/test-pr_bidi_boundary_neutral.c, ./tests/unictype/test-pr_bidi_common_separator.c, ./tests/unictype/test-pr_bidi_control.c, ./tests/unictype/test-pr_bidi_embedding_or_override.c, ./tests/unictype/test-pr_bidi_eur_num_separator.c, ./tests/unictype/test-pr_bidi_eur_num_terminator.c, ./tests/unictype/test-pr_bidi_european_digit.c, ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c, ./tests/unictype/test-pr_bidi_left_to_right.c, ./tests/unictype/test-pr_bidi_non_spacing_mark.c, ./tests/unictype/test-pr_bidi_other_neutral.c, ./tests/unictype/test-pr_bidi_pdf.c, ./tests/unictype/test-pr_bidi_segment_separator.c, ./tests/unictype/test-pr_bidi_whitespace.c, ./tests/unictype/test-pr_combining.c, ./tests/unictype/test-pr_composite.c, ./tests/unictype/test-pr_currency_symbol.c, ./tests/unictype/test-pr_dash.c, ./tests/unictype/test-pr_decimal_digit.c, ./tests/unictype/test-pr_default_ignorable_code_point.c, ./tests/unictype/test-pr_deprecated.c, ./tests/unictype/test-pr_diacritic.c, ./tests/unictype/test-pr_extender.c, ./tests/unictype/test-pr_format_control.c, ./tests/unictype/test-pr_grapheme_base.c, ./tests/unictype/test-pr_grapheme_extend.c, ./tests/unictype/test-pr_grapheme_link.c, ./tests/unictype/test-pr_hex_digit.c, ./tests/unictype/test-pr_hyphen.c, ./tests/unictype/test-pr_id_continue.c, ./tests/unictype/test-pr_id_start.c, ./tests/unictype/test-pr_ideographic.c, ./tests/unictype/test-pr_ids_binary_operator.c, ./tests/unictype/test-pr_ids_trinary_operator.c, ./tests/unictype/test-pr_ignorable_control.c, ./tests/unictype/test-pr_iso_control.c, ./tests/unictype/test-pr_join_control.c, ./tests/unictype/test-pr_left_of_pair.c, ./tests/unictype/test-pr_line_separator.c, ./tests/unictype/test-pr_logical_order_exception.c, ./tests/unictype/test-pr_lowercase.c, ./tests/unictype/test-pr_math.c, ./tests/unictype/test-pr_non_break.c, ./tests/unictype/test-pr_not_a_character.c, ./tests/unictype/test-pr_numeric.c, ./tests/unictype/test-pr_other_alphabetic.c, ./tests/unictype/test-pr_other_default_ignorable_code_point.c, ./tests/unictype/test-pr_other_grapheme_extend.c, ./tests/unictype/test-pr_other_id_continue.c, ./tests/unictype/test-pr_other_id_start.c, ./tests/unictype/test-pr_other_lowercase.c, ./tests/unictype/test-pr_other_math.c, ./tests/unictype/test-pr_other_uppercase.c, ./tests/unictype/test-pr_paired_punctuation.c, ./tests/unictype/test-pr_paragraph_separator.c, ./tests/unictype/test-pr_pattern_syntax.c, ./tests/unictype/test-pr_pattern_white_space.c, ./tests/unictype/test-pr_private_use.c, ./tests/unictype/test-pr_punctuation.c, ./tests/unictype/test-pr_quotation_mark.c, ./tests/unictype/test-pr_radical.c, ./tests/unictype/test-pr_sentence_terminal.c, ./tests/unictype/test-pr_soft_dotted.c, ./tests/unictype/test-pr_space.c, ./tests/unictype/test-pr_terminal_punctuation.c, ./tests/unictype/test-pr_titlecase.c, ./tests/unictype/test-pr_unassigned_code_value.c, ./tests/unictype/test-pr_unified_ideograph.c, ./tests/unictype/test-pr_uppercase.c, ./tests/unictype/test-pr_variation_selector.c, ./tests/unictype/test-pr_white_space.c, ./tests/unictype/test-pr_xid_continue.c, ./tests/unictype/test-pr_xid_start.c, ./tests/unictype/test-pr_zero_width.c, ./tests/unictype/test-predicate-part2.h, ./tests/unictype/test-sy_c_whitespace.c, ./tests/unictype/test-sy_java_whitespace.c, ./tests/unistdio/test-u16-asnprintf1.h, ./tests/unistdio/test-u16-printf1.h, ./tests/unistdio/test-u32-asnprintf1.h, ./tests/unistdio/test-u32-printf1.h, ./tests/unistdio/test-u8-asnprintf1.h, ./tests/unistdio/test-u8-printf1.h, ./tests/unistdio/test-ulc-asnprintf1.h, ./tests/unistdio/test-ulc-printf1.h
+Copyright: 2007 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-c-strcasestr.c, ./tests/test-closein.c, ./tests/test-localename.c, ./tests/test-strcasestr.c
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-fseek.c, ./tests/test-fseeko.c, ./tests/test-ftell.c, ./tests/test-ftello.c, ./tests/test-signbit.c
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-c-strcasecmp.c, ./tests/test-c-strncasecmp.c, ./tests/test-c-strstr.c, ./tests/test-canonicalize-lgpl.c, ./tests/test-canonicalize.c, ./tests/test-count-one-bits.c, ./tests/test-fbufmode.c, ./tests/test-fprintf-posix.c, ./tests/test-fprintf-posix.h, ./tests/test-freadable.c, ./tests/test-freadahead.c, ./tests/test-freading.c, ./tests/test-freadptr.c, ./tests/test-freadptr2.c, ./tests/test-freopen.c, ./tests/test-fwritable.c, ./tests/test-fwriting.c, ./tests/test-getdelim.c, ./tests/test-getline.c, ./tests/test-iconv-utf.c, ./tests/test-iconv.c, ./tests/test-isnand-nolibm.c, ./tests/test-isnand.c, ./tests/test-isnand.h, ./tests/test-isnanf-nolibm.c, ./tests/test-isnanf.c, ./tests/test-isnanf.h, ./tests/test-isnanl.c, ./tests/test-lseek.c, ./tests/test-mbscasecmp.c, ./tests/test-mbscasestr1.c, ./tests/test-mbscasestr2.c, ./tests/test-mbscasestr3.c, ./tests/test-mbscasestr4.c, ./tests/test-mbschr.c, ./tests/test-mbscspn.c, ./tests/test-mbsncasecmp.c, ./tests/test-mbspbrk.c, ./tests/test-mbspcasecmp.c, ./tests/test-mbsrchr.c, ./tests/test-mbsspn.c, ./tests/test-mbsstr1.c, ./tests/test-mbsstr2.c, ./tests/test-mbsstr3.c, ./tests/test-printf-posix.c, ./tests/test-printf-posix.h, ./tests/test-sleep.c, ./tests/test-snprintf-posix.c, ./tests/test-snprintf.c, ./tests/test-sprintf-posix.c, ./tests/test-stat-time.c, ./tests/test-strerror.c, ./tests/test-striconv.c, ./tests/test-striconveha.c, ./tests/test-vasnprintf-posix2.c, ./tests/test-vasnprintf.c, ./tests/test-vasprintf.c, ./tests/test-vfprintf-posix.c, ./tests/test-vprintf-posix.c, ./tests/test-vsnprintf-posix.c, ./tests/test-vsnprintf.c, ./tests/test-vsprintf-posix.c, ./tests/test-wcwidth.c, ./tests/test-xfprintf-posix.c, ./tests/test-xprintf-posix.c, ./tests/test-xvasprintf.c, ./tests/test-yesno.c, ./tests/uniconv/test-u16-strconv-to-enc.c, ./tests/uniconv/test-u32-strconv-to-enc.c, ./tests/uniconv/test-u8-strconv-to-enc.c, ./tests/unictype/test-bidi_byname.c, ./tests/unictype/test-bidi_name.c, ./tests/unictype/test-bidi_of.c, ./tests/unictype/test-bidi_test.c, ./tests/unictype/test-block_list.c, ./tests/unictype/test-block_of.c, ./tests/unictype/test-block_test.c, ./tests/unictype/test-categ_and.c, ./tests/unictype/test-categ_and_not.c, ./tests/unictype/test-categ_byname.c, ./tests/unictype/test-categ_name.c, ./tests/unictype/test-categ_none.c, ./tests/unictype/test-categ_of.c, ./tests/unictype/test-categ_or.c, ./tests/unictype/test-categ_test_withtable.c, ./tests/unictype/test-combining.c, ./tests/unictype/test-decdigit.c, ./tests/unictype/test-digit.c, ./tests/unictype/test-mirror.c, ./tests/unictype/test-numeric.c, ./tests/unictype/test-pr_test.c, ./tests/unictype/test-predicate-part1.h, ./tests/unictype/test-scripts.c, ./tests/unictype/test-sy_c_ident.c, ./tests/unictype/test-sy_java_ident.c, ./tests/unistdio/test-u16-asnprintf1.c, ./tests/unistdio/test-u16-vasnprintf1.c, ./tests/unistdio/test-u16-vasnprintf2.c, ./tests/unistdio/test-u16-vasnprintf3.c, ./tests/unistdio/test-u16-vasprintf1.c, ./tests/unistdio/test-u32-asnprintf1.c, ./tests/unistdio/test-u32-vasnprintf1.c, ./tests/unistdio/test-u32-vasnprintf2.c, ./tests/unistdio/test-u32-vasnprintf3.c, ./tests/unistdio/test-u32-vasprintf1.c, ./tests/unistdio/test-u8-asnprintf1.c, ./tests/unistdio/test-u8-vasnprintf1.c, ./tests/unistdio/test-u8-vasnprintf2.c, ./tests/unistdio/test-u8-vasnprintf3.c, ./tests/unistdio/test-u8-vasprintf1.c, ./tests/unistdio/test-ulc-asnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf2.c, ./tests/unistdio/test-ulc-vasnprintf3.c, ./tests/unistdio/test-ulc-vasprintf1.c, ./tests/uniwidth/test-u16-strwidth.c, ./tests/uniwidth/test-u16-width.c, ./tests/uniwidth/test-u32-strwidth.c, ./tests/uniwidth/test-u32-width.c, ./tests/uniwidth/test-u8-strwidth.c, ./tests/uniwidth/test-u8-width.c, ./tests/uniwidth/test-uc_width.c, ./tests/uniwidth/test-uc_width2.c
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-bitrotate.c, ./tests/test-dprintf-posix.c, ./tests/test-fcntl-safer.c, ./tests/test-fopen-safer.c, ./tests/test-fopen.c, ./tests/test-fopen.h, ./tests/test-fpurge.c, ./tests/test-freadseek.c, ./tests/test-fstrcmp.c, ./tests/test-isnan.c, ./tests/test-isnanl.h, ./tests/test-mbmemcasecmp.c, ./tests/test-mbmemcasecmp.h, ./tests/test-mbmemcasecoll.c, ./tests/test-open.c, ./tests/test-open.h, ./tests/test-snprintf-posix.h, ./tests/test-sprintf-posix.h, ./tests/test-striconveh.c, ./tests/test-vasnprintf-posix.c, ./tests/test-vasprintf-posix.c, ./tests/test-vdprintf-posix.c, ./tests/unicase/test-locale-language.c, ./tests/unicase/test-mapping-part1.h, ./tests/unicase/test-mapping-part2.h, ./tests/unicase/test-predicate-part1.h, ./tests/uniconv/test-u16-conv-from-enc.c, ./tests/uniconv/test-u16-conv-to-enc.c, ./tests/uniconv/test-u16-strconv-from-enc.c, ./tests/uniconv/test-u32-conv-from-enc.c, ./tests/uniconv/test-u32-conv-to-enc.c, ./tests/uniconv/test-u32-strconv-from-enc.c, ./tests/uniconv/test-u8-conv-from-enc.c, ./tests/uniconv/test-u8-conv-to-enc.c, ./tests/uniconv/test-u8-strconv-from-enc.c, ./tests/unictype/test-pr_byname.c, ./tests/unistdio/test-u16-vsnprintf1.c, ./tests/unistdio/test-u16-vsprintf1.c, ./tests/unistdio/test-u32-vsnprintf1.c, ./tests/unistdio/test-u32-vsprintf1.c, ./tests/unistdio/test-u8-vsnprintf1.c, ./tests/unistdio/test-u8-vsprintf1.c, ./tests/unistdio/test-ulc-vsnprintf1.c, ./tests/unistdio/test-ulc-vsprintf1.c
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./build-aux/ncftpput-ftp, ./tests/test-btowc.c, ./tests/test-cond.c, ./tests/test-copy-acl.c, ./tests/test-copy-file.c, ./tests/test-environ.c, ./tests/test-errno.c, ./tests/test-getdtablesize.c, ./tests/test-getndelim2.c, ./tests/test-lstat.c, ./tests/test-mbrtowc.c, ./tests/test-mbsinit.c, ./tests/test-mbsnrtowcs.c, ./tests/test-mbsrtowcs.c, ./tests/test-perror.c, ./tests/test-rawmemchr.c, ./tests/test-sameacls.c, ./tests/test-set-mode-acl.c, ./tests/test-sigaction.c, ./tests/test-sigpipe.c, ./tests/test-strchrnul.c, ./tests/test-strsignal.c, ./tests/test-strtod.c, ./tests/test-strverscmp.c, ./tests/test-sys_times.c, ./tests/test-times.c, ./tests/test-vc-list-files-cvs.sh, ./tests/test-wcrtomb.c, ./tests/test-wcsnrtombs.c, ./tests/test-wcsrtombs.c, ./tests/unilbrk/test-u16-possible-linebreaks.c, ./tests/unilbrk/test-u16-width-linebreaks.c, ./tests/unilbrk/test-u32-possible-linebreaks.c, ./tests/unilbrk/test-u32-width-linebreaks.c, ./tests/unilbrk/test-u8-possible-linebreaks.c, ./tests/unilbrk/test-u8-width-linebreaks.c, ./tests/unilbrk/test-ulc-possible-linebreaks.c, ./tests/unilbrk/test-ulc-width-linebreaks.c
+Copyright: 2008 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-getdate.c, ./tests/test-gethostname.c, ./tests/test-posix_spawn1.c, ./tests/test-posix_spawn2.c, ./tests/test-posix_spawn3.c, ./tests/test-sockets.c, ./tests/test-vc-list-files-git.sh
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./lib/argv-iter.c, ./lib/argv-iter.h, ./tests/test-argv-iter.c, ./tests/test-fflush2.c, ./tests/test-file-has-acl.c, ./tests/test-filevercmp.c, ./tests/test-func.c, ./tests/test-memchr.c, ./tests/test-memchr2.c, ./tests/test-memcmp.c, ./tests/test-memrchr.c, ./tests/test-obstack-printf.c, ./tests/test-parse-duration.c, ./tests/test-poll.c, ./tests/test-quotearg.c, ./tests/test-sched.c, ./tests/test-xmemdup0.c
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./tests/test-alignof.c, ./tests/test-argp-version-etc-1.sh, ./tests/test-argp-version-etc.c, ./tests/test-dirent-safer.c, ./tests/test-dup2.c, ./tests/test-dup3.c, ./tests/test-exclude.c, ./tests/test-exclude1.sh, ./tests/test-exclude2.sh, ./tests/test-exclude3.sh, ./tests/test-exclude4.sh, ./tests/test-exclude5.sh, ./tests/test-exclude6.sh, ./tests/test-exclude7.sh, ./tests/test-fchdir.c, ./tests/test-fdopendir.c, ./tests/test-fnmatch.c, ./tests/test-getopt.c, ./tests/test-getopt.h, ./tests/test-getopt_long.h, ./tests/test-glob.c, ./tests/test-hash.c, ./tests/test-idpriv-drop.c, ./tests/test-idpriv-droptemp.c, ./tests/test-openat-safer.c, ./tests/test-pipe-filter-gi1.c, ./tests/test-pipe-filter-gi2-child.c, ./tests/test-pipe-filter-gi2-main.c, ./tests/test-pipe-filter-gi2.sh, ./tests/test-pipe-filter-ii1.c, ./tests/test-pipe-filter-ii2-child.c, ./tests/test-pipe-filter-ii2-main.c, ./tests/test-pipe-filter-ii2.sh, ./tests/test-pipe.c, ./tests/test-pipe2.c, ./tests/test-popen-safer.c, ./tests/test-popen-safer2.c, ./tests/test-popen.c, ./tests/test-popen.h, ./tests/test-symlinkat.c, ./tests/test-u64.c, ./tests/test-uname.c, ./tests/test-update-copyright.sh, ./tests/test-version-etc.c, ./tests/test-version-etc.sh, ./tests/unicase/test-casecmp.h, ./tests/unicase/test-is-cased.h, ./tests/unicase/test-is-casefolded.h, ./tests/unicase/test-is-lowercase.h, ./tests/unicase/test-is-titlecase.h, ./tests/unicase/test-is-uppercase.h, ./tests/unicase/test-u16-casecmp.c, ./tests/unicase/test-u16-casecoll.c, ./tests/unicase/test-u16-casefold.c, ./tests/unicase/test-u16-is-cased.c, ./tests/unicase/test-u16-is-casefolded.c, ./tests/unicase/test-u16-is-lowercase.c, ./tests/unicase/test-u16-is-titlecase.c, ./tests/unicase/test-u16-is-uppercase.c, ./tests/unicase/test-u16-tolower.c, ./tests/unicase/test-u16-totitle.c, ./tests/unicase/test-u16-toupper.c, ./tests/unicase/test-u32-casecmp.c, ./tests/unicase/test-u32-casecoll.c, ./tests/unicase/test-u32-casefold.c, ./tests/unicase/test-u32-is-cased.c, ./tests/unicase/test-u32-is-casefolded.c, ./tests/unicase/test-u32-is-lowercase.c, ./tests/unicase/test-u32-is-titlecase.c, ./tests/unicase/test-u32-is-uppercase.c, ./tests/unicase/test-u32-tolower.c, ./tests/unicase/test-u32-totitle.c, ./tests/unicase/test-u32-toupper.c, ./tests/unicase/test-u8-casecmp.c, ./tests/unicase/test-u8-casecoll.c, ./tests/unicase/test-u8-casefold.c, ./tests/unicase/test-u8-is-cased.c, ./tests/unicase/test-u8-is-casefolded.c, ./tests/unicase/test-u8-is-lowercase.c, ./tests/unicase/test-u8-is-titlecase.c, ./tests/unicase/test-u8-is-uppercase.c, ./tests/unicase/test-u8-tolower.c, ./tests/unicase/test-u8-totitle.c, ./tests/unicase/test-u8-toupper.c, ./tests/unicase/test-uc_tolower.c, ./tests/unicase/test-uc_totitle.c, ./tests/unicase/test-uc_toupper.c, ./tests/unicase/test-ulc-casecmp.c, ./tests/unicase/test-ulc-casecoll.c, ./tests/uninorm/test-canonical-decomposition.c, ./tests/uninorm/test-compat-decomposition.c, ./tests/uninorm/test-composition.c, ./tests/uninorm/test-decomposing-form.c, ./tests/uninorm/test-decomposition.c, ./tests/uninorm/test-nfc.c, ./tests/uninorm/test-nfd.c, ./tests/uninorm/test-nfkc.c, ./tests/uninorm/test-nfkd.c, ./tests/uninorm/test-u16-nfc.c, ./tests/uninorm/test-u16-nfd.c, ./tests/uninorm/test-u16-nfkc.c, ./tests/uninorm/test-u16-nfkd.c, ./tests/uninorm/test-u16-normcmp.c, ./tests/uninorm/test-u16-normcmp.h, ./tests/uninorm/test-u16-normcoll.c, ./tests/uninorm/test-u32-nfc-big.c, ./tests/uninorm/test-u32-nfc.c, ./tests/uninorm/test-u32-nfd-big.c, ./tests/uninorm/test-u32-nfd.c, ./tests/uninorm/test-u32-nfkc-big.c, ./tests/uninorm/test-u32-nfkc.c, ./tests/uninorm/test-u32-nfkd-big.c, ./tests/uninorm/test-u32-nfkd.c, ./tests/uninorm/test-u32-normalize-big.c, ./tests/uninorm/test-u32-normalize-big.h, ./tests/uninorm/test-u32-normcmp.c, ./tests/uninorm/test-u32-normcmp.h, ./tests/uninorm/test-u32-normcoll.c, ./tests/uninorm/test-u8-nfc.c, ./tests/uninorm/test-u8-nfd.c, ./tests/uninorm/test-u8-nfkc.c, ./tests/uninorm/test-u8-nfkd.c, ./tests/uninorm/test-u8-normcmp.c, ./tests/uninorm/test-u8-normcmp.h, ./tests/uninorm/test-u8-normcoll.c, ./tests/uninorm/test-uninorm-filter-nfc.c, ./tests/uniwbrk/test-u16-wordbreaks.c, ./tests/uniwbrk/test-u32-wordbreaks.c, ./tests/uniwbrk/test-u8-wordbreaks.c, ./tests/uniwbrk/test-ulc-wordbreaks.c, ./tests/zerosize-ptr.h
+Copyright: 2009 Free Software Foundation, Inc.
+License: GPL-3+ [REF14]
+
+Files: ./lib/imaxtostr.c, ./lib/isapipe.h, ./lib/offtostr.c, ./lib/rawmemchr.valgrind, ./lib/strchrnul.valgrind, ./lib/uinttostr.c, ./lib/umaxtostr.c, ./lib/unicase/cased.h, ./lib/unicase/ignorable.h, ./lib/unicase/locale-languages.gperf, ./lib/unicase/special-casing-table.gperf, ./lib/unicase/tocasefold.h, ./lib/unicase/tolower.h, ./lib/unicase/totitle.h, ./lib/unicase/toupper.h, ./lib/unictype/bidi_of.h, ./lib/unictype/blocks.h, ./lib/unictype/categ_C.h, ./lib/unictype/categ_Cc.h, ./lib/unictype/categ_Cf.h, ./lib/unictype/categ_Cn.h, ./lib/unictype/categ_Co.h, ./lib/unictype/categ_Cs.h, ./lib/unictype/categ_L.h, ./lib/unictype/categ_Ll.h, ./lib/unictype/categ_Lm.h, ./lib/unictype/categ_Lo.h, ./lib/unictype/categ_Lt.h, ./lib/unictype/categ_Lu.h, ./lib/unictype/categ_M.h, ./lib/unictype/categ_Mc.h, ./lib/unictype/categ_Me.h, ./lib/unictype/categ_Mn.h, ./lib/unictype/categ_N.h, ./lib/unictype/categ_Nd.h, ./lib/unictype/categ_Nl.h, ./lib/unictype/categ_No.h, ./lib/unictype/categ_P.h, ./lib/unictype/categ_Pc.h, ./lib/unictype/categ_Pd.h, ./lib/unictype/categ_Pe.h, ./lib/unictype/categ_Pf.h, ./lib/unictype/categ_Pi.h, ./lib/unictype/categ_Po.h, ./lib/unictype/categ_Ps.h, ./lib/unictype/categ_S.h, ./lib/unictype/categ_Sc.h, ./lib/unictype/categ_Sk.h, ./lib/unictype/categ_Sm.h, ./lib/unictype/categ_So.h, ./lib/unictype/categ_Z.h, ./lib/unictype/categ_Zl.h, ./lib/unictype/categ_Zp.h, ./lib/unictype/categ_Zs.h, ./lib/unictype/categ_of.h, ./lib/unictype/combining.h, ./lib/unictype/ctype_alnum.h, ./lib/unictype/ctype_alpha.h, ./lib/unictype/ctype_blank.h, ./lib/unictype/ctype_cntrl.h, ./lib/unictype/ctype_digit.h, ./lib/unictype/ctype_graph.h, ./lib/unictype/ctype_lower.h, ./lib/unictype/ctype_print.h, ./lib/unictype/ctype_punct.h, ./lib/unictype/ctype_space.h, ./lib/unictype/ctype_upper.h, ./lib/unictype/ctype_xdigit.h, ./lib/unictype/decdigit.h, ./lib/unictype/digit.h, ./lib/unictype/mirror.h, ./lib/unictype/numeric.h, ./lib/unictype/pr_alphabetic.h, ./lib/unictype/pr_ascii_hex_digit.h, ./lib/unictype/pr_bidi_arabic_digit.h, ./lib/unictype/pr_bidi_arabic_right_to_left.h, ./lib/unictype/pr_bidi_block_separator.h, ./lib/unictype/pr_bidi_boundary_neutral.h, ./lib/unictype/pr_bidi_common_separator.h, ./lib/unictype/pr_bidi_control.h, ./lib/unictype/pr_bidi_embedding_or_override.h, ./lib/unictype/pr_bidi_eur_num_separator.h, ./lib/unictype/pr_bidi_eur_num_terminator.h, ./lib/unictype/pr_bidi_european_digit.h, ./lib/unictype/pr_bidi_hebrew_right_to_left.h, ./lib/unictype/pr_bidi_left_to_right.h, ./lib/unictype/pr_bidi_non_spacing_mark.h, ./lib/unictype/pr_bidi_other_neutral.h, ./lib/unictype/pr_bidi_pdf.h, ./lib/unictype/pr_bidi_segment_separator.h, ./lib/unictype/pr_bidi_whitespace.h, ./lib/unictype/pr_byname.gperf, ./lib/unictype/pr_combining.h, ./lib/unictype/pr_composite.h, ./lib/unictype/pr_currency_symbol.h, ./lib/unictype/pr_dash.h, ./lib/unictype/pr_decimal_digit.h, ./lib/unictype/pr_default_ignorable_code_point.h, ./lib/unictype/pr_deprecated.h, ./lib/unictype/pr_diacritic.h, ./lib/unictype/pr_extender.h, ./lib/unictype/pr_format_control.h, ./lib/unictype/pr_grapheme_base.h, ./lib/unictype/pr_grapheme_extend.h, ./lib/unictype/pr_grapheme_link.h, ./lib/unictype/pr_hex_digit.h, ./lib/unictype/pr_hyphen.h, ./lib/unictype/pr_id_continue.h, ./lib/unictype/pr_id_start.h, ./lib/unictype/pr_ideographic.h, ./lib/unictype/pr_ids_binary_operator.h, ./lib/unictype/pr_ids_trinary_operator.h, ./lib/unictype/pr_ignorable_control.h, ./lib/unictype/pr_iso_control.h, ./lib/unictype/pr_join_control.h, ./lib/unictype/pr_left_of_pair.h, ./lib/unictype/pr_line_separator.h, ./lib/unictype/pr_logical_order_exception.h, ./lib/unictype/pr_lowercase.h, ./lib/unictype/pr_math.h, ./lib/unictype/pr_non_break.h, ./lib/unictype/pr_not_a_character.h, ./lib/unictype/pr_numeric.h, ./lib/unictype/pr_other_alphabetic.h, ./lib/unictype/pr_other_default_ignorable_code_point.h, ./lib/unictype/pr_other_grapheme_extend.h, ./lib/unictype/pr_other_id_continue.h, ./lib/unictype/pr_other_id_start.h, ./lib/unictype/pr_other_lowercase.h, ./lib/unictype/pr_other_math.h, ./lib/unictype/pr_other_uppercase.h, ./lib/unictype/pr_paired_punctuation.h, ./lib/unictype/pr_paragraph_separator.h, ./lib/unictype/pr_pattern_syntax.h, ./lib/unictype/pr_pattern_white_space.h, ./lib/unictype/pr_private_use.h, ./lib/unictype/pr_punctuation.h, ./lib/unictype/pr_quotation_mark.h, ./lib/unictype/pr_radical.h, ./lib/unictype/pr_sentence_terminal.h, ./lib/unictype/pr_soft_dotted.h, ./lib/unictype/pr_space.h, ./lib/unictype/pr_terminal_punctuation.h, ./lib/unictype/pr_titlecase.h, ./lib/unictype/pr_unassigned_code_value.h, ./lib/unictype/pr_unified_ideograph.h, ./lib/unictype/pr_uppercase.h, ./lib/unictype/pr_variation_selector.h, ./lib/unictype/pr_white_space.h, ./lib/unictype/pr_xid_continue.h, ./lib/unictype/pr_xid_start.h, ./lib/unictype/pr_zero_width.h, ./lib/unictype/scripts.h, ./lib/unictype/scripts_byname.gperf, ./lib/unictype/sy_c_ident.h, ./lib/unictype/sy_java_ident.h, ./lib/uniname/gen-uninames.lisp, ./lib/uniname/uninames.h, ./lib/uninorm/decomposition-table1.h, ./lib/uninorm/decomposition-table2.h, ./tests/test-roundf2.c, ./tests/test-select-in.sh, ./tests/test-select-out.sh, ./tests/test-tsearch.sh
+License: LGPL [REF15]
+
+Files: ./lib/getopt.c
+Copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/getopt1.c
+Copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/obstack.c
+Copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/obstack.h
+Copyright: 1988-1994,1996-1999,2003,2004,2005,2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/getopt_int.h
+Copyright: 1989-1994,1996-1999,2001,2003,2004 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/getopt.in.h
+Copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/euidaccess.c
+Copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/error.c
+Copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strtol.c
+Copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strtod.c
+Copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/fsusage.h
+Copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/memrchr.c
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strcspn.c
+Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/putenv.c
+Copyright: 1991, 1994, 1997-1998, 2000, 2003-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strtoul.c
+Copyright: 1991, 1997 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/atoll.c
+Copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strtok_r.c
+Copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/fsusage.c
+Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strftime.c
+Copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/alphasort.c
+Copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unsetenv.c
+Copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/scandir.c
+Copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/full-write.c
+Copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/safe-read.c
+Copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/stpncpy.c
+Copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strtoull.c
+Copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strtoll.c
+Copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/error.h
+Copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/tsearch.c
+Copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp.h
+Copyright: 1995-1999,2003-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-parse.c
+Copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-help.c
+Copyright: 1995-2005, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/error.m4
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/strftime.m4
+Copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-pvh.c
+Copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/getsubopt.c
+Copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-pv.c
+Copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-ba.c
+Copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-eexst.c
+Copyright: 1997 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-xinl.c
+Copyright: 1997, 1998, 2004 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./tests/test-tsearch.c
+Copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-fs-xinl.c
+Copyright: 1997, 2003, 2004 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-namefrob.h
+Copyright: 1997, 2003, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-fmtstream.h
+Copyright: 1997, 2006-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/fsusage.m4
+Copyright: 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-fmtstream.c
+Copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbscasecmp.c, ./lib/mbsncasecmp.c, ./lib/mbspcasecmp.c
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbmemcasecmp.c
+Copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/tmpdir.c
+Copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistdio/u-printf-parse.h
+Copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistdio/u-asnprintf.h, ./lib/unistdio/u-asprintf.h, ./lib/unistdio/u-printf-args.h, ./lib/unistdio/u-snprintf.h, ./lib/unistdio/u-sprintf.h, ./lib/unistdio/u16-asnprintf.c, ./lib/unistdio/u16-asprintf.c, ./lib/unistdio/u16-snprintf.c, ./lib/unistdio/u16-sprintf.c, ./lib/unistdio/u16-u16-asnprintf.c, ./lib/unistdio/u16-u16-asprintf.c, ./lib/unistdio/u16-u16-snprintf.c, ./lib/unistdio/u16-u16-sprintf.c, ./lib/unistdio/u32-asnprintf.c, ./lib/unistdio/u32-asprintf.c, ./lib/unistdio/u32-snprintf.c, ./lib/unistdio/u32-sprintf.c, ./lib/unistdio/u32-u32-asnprintf.c, ./lib/unistdio/u32-u32-asprintf.c, ./lib/unistdio/u32-u32-snprintf.c, ./lib/unistdio/u32-u32-sprintf.c, ./lib/unistdio/u8-asnprintf.c, ./lib/unistdio/u8-asprintf.c, ./lib/unistdio/u8-snprintf.c, ./lib/unistdio/u8-sprintf.c, ./lib/unistdio/u8-u8-asnprintf.c, ./lib/unistdio/u8-u8-asprintf.c, ./lib/unistdio/u8-u8-snprintf.c, ./lib/unistdio/u8-u8-sprintf.c, ./lib/unistdio/ulc-asnprintf.c, ./lib/unistdio/ulc-snprintf.c, ./lib/unistdio/ulc-sprintf.c
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistr/u-cpy.h, ./lib/unistr/u-move.h, ./lib/unistr/u-set.h, ./lib/unistr/u-stpcpy.h, ./lib/unistr/u-stpncpy.h, ./lib/unistr/u-strcat.h, ./lib/unistr/u-strcpy.h, ./lib/unistr/u-strcspn.h, ./lib/unistr/u-strlen.h, ./lib/unistr/u-strncat.h, ./lib/unistr/u-strncpy.h, ./lib/unistr/u-strnlen.h, ./lib/unistr/u-strpbrk.h, ./lib/unistr/u-strspn.h, ./lib/unistr/u-strstr.h, ./lib/unistr/u-strtok.h, ./lib/unistr/u16-cmp.c, ./lib/unistr/u16-cpy-alloc.c, ./lib/unistr/u16-cpy.c, ./lib/unistr/u16-move.c, ./lib/unistr/u16-set.c, ./lib/unistr/u16-stpncpy.c, ./lib/unistr/u16-strcat.c, ./lib/unistr/u16-strcmp.c, ./lib/unistr/u16-strcpy.c, ./lib/unistr/u16-strcspn.c, ./lib/unistr/u16-strdup.c, ./lib/unistr/u16-strlen.c, ./lib/unistr/u16-strncat.c, ./lib/unistr/u16-strncmp.c, ./lib/unistr/u16-strncpy.c, ./lib/unistr/u16-strnlen.c, ./lib/unistr/u16-strpbrk.c, ./lib/unistr/u16-strspn.c, ./lib/unistr/u16-strstr.c, ./lib/unistr/u16-strtok.c, ./lib/unistr/u32-chr.c, ./lib/unistr/u32-cmp.c, ./lib/unistr/u32-cpy-alloc.c, ./lib/unistr/u32-cpy.c, ./lib/unistr/u32-move.c, ./lib/unistr/u32-set.c, ./lib/unistr/u32-stpcpy.c, ./lib/unistr/u32-stpncpy.c, ./lib/unistr/u32-strcat.c, ./lib/unistr/u32-strchr.c, ./lib/unistr/u32-strcmp.c, ./lib/unistr/u32-strcpy.c, ./lib/unistr/u32-strcspn.c, ./lib/unistr/u32-strdup.c, ./lib/unistr/u32-strlen.c, ./lib/unistr/u32-strncat.c, ./lib/unistr/u32-strncmp.c, ./lib/unistr/u32-strncpy.c, ./lib/unistr/u32-strnlen.c, ./lib/unistr/u32-strpbrk.c, ./lib/unistr/u32-strrchr.c, ./lib/unistr/u32-strspn.c, ./lib/unistr/u32-strstr.c, ./lib/unistr/u32-strtok.c, ./lib/unistr/u8-stpcpy.c, ./lib/unistr/u8-stpncpy.c, ./lib/unistr/u8-strcspn.c, ./lib/unistr/u8-strnlen.c, ./lib/unistr/u8-strpbrk.c, ./lib/unistr/u8-strspn.c, ./lib/unistr/u8-strstr.c, ./lib/unistr/u8-strtok.c
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistdio/u-printf-args.c, ./lib/unistdio/u16-u16-vasnprintf.c, ./lib/unistdio/u16-u16-vasprintf.c, ./lib/unistdio/u16-u16-vsnprintf.c, ./lib/unistdio/u16-u16-vsprintf.c, ./lib/unistdio/u16-vasnprintf.c, ./lib/unistdio/u16-vasprintf.c, ./lib/unistdio/u16-vsnprintf.c, ./lib/unistdio/u16-vsprintf.c, ./lib/unistdio/u32-u32-vasnprintf.c, ./lib/unistdio/u32-u32-vasprintf.c, ./lib/unistdio/u32-u32-vsnprintf.c, ./lib/unistdio/u32-u32-vsprintf.c, ./lib/unistdio/u32-vasnprintf.c, ./lib/unistdio/u32-vasprintf.c, ./lib/unistdio/u32-vsnprintf.c, ./lib/unistdio/u32-vsprintf.c, ./lib/unistdio/u8-u8-vasnprintf.c, ./lib/unistdio/u8-u8-vasprintf.c, ./lib/unistdio/u8-u8-vsnprintf.c, ./lib/unistdio/u8-u8-vsprintf.c, ./lib/unistdio/u8-vasnprintf.c, ./lib/unistdio/u8-vasprintf.c, ./lib/unistdio/u8-vsnprintf.c, ./lib/unistdio/u8-vsprintf.c, ./lib/unistdio/ulc-asprintf.c, ./lib/unistdio/ulc-vasnprintf.c, ./lib/unistdio/ulc-vasprintf.c, ./lib/unistdio/ulc-vsnprintf.c, ./lib/unistdio/ulc-vsprintf.c, ./lib/unistr/u-strdup.h, ./lib/unistr/u16-chr.c, ./lib/unistr/u16-stpcpy.c, ./lib/unistr/u16-strchr.c, ./lib/unistr/u16-strrchr.c, ./lib/unistr/u8-chr.c, ./lib/unistr/u8-strchr.c, ./lib/unistr/u8-strrchr.c
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistr/u-cpy-alloc.h
+Copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbscspn.c, ./lib/mbspbrk.c, ./lib/mbsspn.c, ./lib/mbstok_r.c, ./lib/unistdio/u-vasprintf.h, ./lib/unistdio/u-vsnprintf.h, ./lib/unistdio/u-vsprintf.h
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistdio/u16-printf-parse.c, ./lib/unistdio/u32-printf-parse.c, ./lib/unistdio/u8-printf-parse.c, ./lib/unistdio/ulc-printf-parse.c, ./lib/unistr/u16-mblen.c, ./lib/unistr/u16-strmblen.c, ./lib/unistr/u16-strmbtouc.c, ./lib/unistr/u8-mblen.c, ./lib/unistr/u8-strmblen.c, ./lib/unistr/u8-strmbtouc.c
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbrlen.c
+Copyright: 1999-2000, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/iconv.c
+Copyright: 1999-2001, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistr/u16-mbtoucr.c, ./lib/unistr/u8-mbtoucr.c
+Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistr/u16-mbtouc-unsafe.c, ./lib/unistr/u16-mbtouc.c, ./lib/unistr/u8-mbtouc-unsafe.c, ./lib/unistr/u8-mbtouc.c
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/spawn.c, ./lib/spawn_faction_addclose.c, ./lib/spawn_faction_adddup2.c, ./lib/spawn_faction_addopen.c, ./lib/spawn_faction_destroy.c, ./lib/spawn_faction_init.c, ./lib/spawnattr_destroy.c, ./lib/spawnattr_getdefault.c, ./lib/spawnattr_getflags.c, ./lib/spawnattr_getpgroup.c, ./lib/spawnattr_getschedpolicy.c, ./lib/spawnattr_getsigmask.c, ./lib/spawnattr_init.c, ./lib/spawnattr_setdefault.c, ./lib/spawnattr_setpgroup.c, ./lib/spawnattr_setschedparam.c, ./lib/spawnattr_setschedpolicy.c, ./lib/spawnattr_setsigmask.c, ./lib/spawnp.c
+Copyright: 2000 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/spawn.in.h
+Copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/spawnattr_setflags.c
+Copyright: 2000, 2004 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/spawn_int.h, ./lib/spawnattr_getschedparam.c
+Copyright: 2000, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniwbrk/wbrkprop.h
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unilbrk/lbrkprop1.h, ./lib/unilbrk/lbrkprop2.h
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniname.h
+Copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unictype/bitmap.h, ./lib/unictype/identsyntaxmap.h
+Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniname/uniname.c
+Copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/spawni.c
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/binary-io.h
+Copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbfile.h
+Copyright: 2001, 2005 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbiter.h, ./lib/mbuiter.h
+Copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbchar.h
+Copyright: 2001, 2005-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/mbchar.c
+Copyright: 2001, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/inttostr.c
+Copyright: 2001, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/vararrays.m4
+Copyright: 2001, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/tmpdir.h
+Copyright: 2001-2002 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniwidth.h
+Copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniwidth/cjk.h
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistr.h
+Copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniwidth/u16-strwidth.c, ./lib/uniwidth/u32-strwidth.c, ./lib/uniwidth/u32-width.c, ./lib/uniwidth/u8-strwidth.c
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/tmpdir.m4
+Copyright: 2001-2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniwidth/u16-width.c, ./lib/uniwidth/u8-width.c
+Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistr/u16-mbtouc-aux.c, ./lib/unistr/u16-mbtouc-unsafe-aux.c, ./lib/unistr/u8-mbtouc-aux.c, ./lib/unistr/u8-mbtouc-unsafe-aux.c
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniwidth/width.c
+Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/c-strcaseeq.h
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uninorm.h
+Copyright: 2001-2002, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unilbrk.h
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniwbrk.h
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/c-strstr.h
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unilbrk/lbrktables.h, ./lib/unilbrk/u16-width-linebreaks.c, ./lib/unilbrk/u32-width-linebreaks.c, ./lib/unilbrk/u8-width-linebreaks.c, ./lib/unilbrk/ulc-common.c, ./lib/unilbrk/ulc-common.h
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unilbrk/lbrktables.c, ./lib/unilbrk/u16-possible-linebreaks.c, ./lib/unilbrk/u32-possible-linebreaks.c, ./lib/unilbrk/u8-possible-linebreaks.c, ./lib/unilbrk/ulc-possible-linebreaks.c, ./lib/unilbrk/ulc-width-linebreaks.c, ./lib/uniwbrk/ulc-wordbreaks.c, ./lib/uniwbrk/wordbreak-property.c
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uninorm/decomposition-table.h
+Copyright: 2001-2003, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/iconveh.h, ./lib/striconveh.h
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/striconveh.c
+Copyright: 2001-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/full-read.h, ./lib/safe-write.c, ./lib/safe-write.h
+Copyright: 2002 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/full-read.c
+Copyright: 2002, 2003 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/canon-host.m4
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/strtok_r.m4
+Copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/safe-read.m4
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/memrchr.m4
+Copyright: 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/strtol.m4
+Copyright: 2002, 2003, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/ldexpl.c
+Copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/strtoll.m4, ./m4/strtoull.m4
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strftime.h
+Copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/safe-write.m4
+Copyright: 2002, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/striconveha.c, ./lib/uniconv.h
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/striconveha.h
+Copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unitypes.h
+Copyright: 2002, 2005-2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unistr/u16-uctomb.c, ./lib/unistr/u32-uctomb.c, ./lib/unistr/u8-uctomb.c
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unictype/pr_test.c, ./lib/unistdio.h
+Copyright: 2002, 2005-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unictype.h
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/safe-read.h, ./lib/unictype/bidi_byname.c, ./lib/unictype/bidi_name.c, ./lib/unictype/bidi_of.c, ./lib/unictype/bidi_test.c, ./lib/unictype/combining.c, ./lib/unictype/decdigit.c, ./lib/unictype/digit.c, ./lib/unictype/mirror.c, ./lib/unistr/u-endswith.h, ./lib/unistr/u-startswith.h, ./lib/unistr/u16-endswith.c, ./lib/unistr/u16-next.c, ./lib/unistr/u16-startswith.c, ./lib/unistr/u32-check.c, ./lib/unistr/u32-endswith.c, ./lib/unistr/u32-startswith.c, ./lib/unistr/u8-cmp.c, ./lib/unistr/u8-cpy-alloc.c, ./lib/unistr/u8-cpy.c, ./lib/unistr/u8-endswith.c, ./lib/unistr/u8-move.c, ./lib/unistr/u8-next.c, ./lib/unistr/u8-set.c, ./lib/unistr/u8-startswith.c, ./lib/unistr/u8-strcat.c, ./lib/unistr/u8-strcmp.c, ./lib/unistr/u8-strcpy.c, ./lib/unistr/u8-strdup.c, ./lib/unistr/u8-strlen.c, ./lib/unistr/u8-strncat.c, ./lib/unistr/u8-strncmp.c, ./lib/unistr/u8-strncpy.c
+Copyright: 2002, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unicase/simple-mapping.h, ./lib/unicase/tocasefold.c, ./lib/unicase/tolower.c, ./lib/unicase/totitle.c, ./lib/unicase/toupper.c, ./lib/uninorm/composition.c, ./m4/strtoul.m4
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniconv/u-strconv-to-enc.h, ./lib/uniconv/u16-conv-from-enc.c, ./lib/uniconv/u16-strconv-from-enc.c, ./lib/uniconv/u16-strconv-from-locale.c, ./lib/uniconv/u16-strconv-to-enc.c, ./lib/uniconv/u16-strconv-to-locale.c, ./lib/uniconv/u32-conv-from-enc.c, ./lib/uniconv/u32-conv-to-enc.c, ./lib/uniconv/u32-strconv-from-enc.c, ./lib/uniconv/u32-strconv-from-locale.c, ./lib/uniconv/u32-strconv-to-enc.c, ./lib/uniconv/u32-strconv-to-locale.c, ./lib/uniconv/u8-strconv-from-enc.c, ./lib/uniconv/u8-strconv-from-locale.c, ./lib/uniconv/u8-strconv-to-enc.c, ./lib/uniconv/u8-strconv-to-locale.c, ./lib/unictype/categ_C.c, ./lib/unictype/categ_Cc.c, ./lib/unictype/categ_Cf.c, ./lib/unictype/categ_Cn.c, ./lib/unictype/categ_Co.c, ./lib/unictype/categ_Cs.c, ./lib/unictype/categ_L.c, ./lib/unictype/categ_Ll.c, ./lib/unictype/categ_Lm.c, ./lib/unictype/categ_Lo.c, ./lib/unictype/categ_Lt.c, ./lib/unictype/categ_Lu.c, ./lib/unictype/categ_M.c, ./lib/unictype/categ_Mc.c, ./lib/unictype/categ_Me.c, ./lib/unictype/categ_Mn.c, ./lib/unictype/categ_N.c, ./lib/unictype/categ_Nd.c, ./lib/unictype/categ_Nl.c, ./lib/unictype/categ_No.c, ./lib/unictype/categ_P.c, ./lib/unictype/categ_Pc.c, ./lib/unictype/categ_Pd.c, ./lib/unictype/categ_Pe.c, ./lib/unictype/categ_Pf.c, ./lib/unictype/categ_Pi.c, ./lib/unictype/categ_Po.c, ./lib/unictype/categ_Ps.c, ./lib/unictype/categ_S.c, ./lib/unictype/categ_Sc.c, ./lib/unictype/categ_Sk.c, ./lib/unictype/categ_Sm.c, ./lib/unictype/categ_So.c, ./lib/unictype/categ_Z.c, ./lib/unictype/categ_Zl.c, ./lib/unictype/categ_Zp.c, ./lib/unictype/categ_Zs.c, ./lib/unictype/categ_byname.c, ./lib/unictype/categ_name.c, ./lib/unictype/categ_of.c, ./lib/unictype/categ_test.c, ./lib/unictype/ctype_alnum.c, ./lib/unictype/ctype_alpha.c, ./lib/unictype/ctype_blank.c, ./lib/unictype/ctype_cntrl.c, ./lib/unictype/ctype_digit.c, ./lib/unictype/ctype_graph.c, ./lib/unictype/ctype_lower.c, ./lib/unictype/ctype_print.c, ./lib/unictype/ctype_punct.c, ./lib/unictype/ctype_space.c, ./lib/unictype/ctype_upper.c, ./lib/unictype/ctype_xdigit.c, ./lib/unictype/numeric.c, ./lib/unictype/pr_alphabetic.c, ./lib/unictype/pr_ascii_hex_digit.c, ./lib/unictype/pr_bidi_arabic_digit.c, ./lib/unictype/pr_bidi_arabic_right_to_left.c, ./lib/unictype/pr_bidi_block_separator.c, ./lib/unictype/pr_bidi_boundary_neutral.c, ./lib/unictype/pr_bidi_common_separator.c, ./lib/unictype/pr_bidi_control.c, ./lib/unictype/pr_bidi_embedding_or_override.c, ./lib/unictype/pr_bidi_eur_num_separator.c, ./lib/unictype/pr_bidi_eur_num_terminator.c, ./lib/unictype/pr_bidi_european_digit.c, ./lib/unictype/pr_bidi_hebrew_right_to_left.c, ./lib/unictype/pr_bidi_left_to_right.c, ./lib/unictype/pr_bidi_non_spacing_mark.c, ./lib/unictype/pr_bidi_other_neutral.c, ./lib/unictype/pr_bidi_pdf.c, ./lib/unictype/pr_bidi_segment_separator.c, ./lib/unictype/pr_bidi_whitespace.c, ./lib/unictype/pr_combining.c, ./lib/unictype/pr_composite.c, ./lib/unictype/pr_currency_symbol.c, ./lib/unictype/pr_dash.c, ./lib/unictype/pr_decimal_digit.c, ./lib/unictype/pr_default_ignorable_code_point.c, ./lib/unictype/pr_deprecated.c, ./lib/unictype/pr_diacritic.c, ./lib/unictype/pr_extender.c, ./lib/unictype/pr_format_control.c, ./lib/unictype/pr_grapheme_base.c, ./lib/unictype/pr_grapheme_extend.c, ./lib/unictype/pr_grapheme_link.c, ./lib/unictype/pr_hex_digit.c, ./lib/unictype/pr_hyphen.c, ./lib/unictype/pr_id_continue.c, ./lib/unictype/pr_id_start.c, ./lib/unictype/pr_ideographic.c, ./lib/unictype/pr_ids_binary_operator.c, ./lib/unictype/pr_ids_trinary_operator.c, ./lib/unictype/pr_ignorable_control.c, ./lib/unictype/pr_iso_control.c, ./lib/unictype/pr_join_control.c, ./lib/unictype/pr_left_of_pair.c, ./lib/unictype/pr_line_separator.c, ./lib/unictype/pr_logical_order_exception.c, ./lib/unictype/pr_lowercase.c, ./lib/unictype/pr_math.c, ./lib/unictype/pr_non_break.c, ./lib/unictype/pr_not_a_character.c, ./lib/unictype/pr_numeric.c, ./lib/unictype/pr_other_alphabetic.c, ./lib/unictype/pr_other_default_ignorable_code_point.c, ./lib/unictype/pr_other_grapheme_extend.c, ./lib/unictype/pr_other_id_continue.c, ./lib/unictype/pr_other_id_start.c, ./lib/unictype/pr_other_lowercase.c, ./lib/unictype/pr_other_math.c, ./lib/unictype/pr_other_uppercase.c, ./lib/unictype/pr_paired_punctuation.c, ./lib/unictype/pr_paragraph_separator.c, ./lib/unictype/pr_pattern_syntax.c, ./lib/unictype/pr_pattern_white_space.c, ./lib/unictype/pr_private_use.c, ./lib/unictype/pr_punctuation.c, ./lib/unictype/pr_quotation_mark.c, ./lib/unictype/pr_radical.c, ./lib/unictype/pr_sentence_terminal.c, ./lib/unictype/pr_soft_dotted.c, ./lib/unictype/pr_space.c, ./lib/unictype/pr_terminal_punctuation.c, ./lib/unictype/pr_titlecase.c, ./lib/unictype/pr_unassigned_code_value.c, ./lib/unictype/pr_unified_ideograph.c, ./lib/unictype/pr_uppercase.c, ./lib/unictype/pr_variation_selector.c, ./lib/unictype/pr_white_space.c, ./lib/unictype/pr_xid_continue.c, ./lib/unictype/pr_xid_start.c, ./lib/unictype/pr_zero_width.c, ./lib/unistr/u16-check.c, ./lib/unistr/u16-prev.c, ./lib/unistr/u16-to-u32.c, ./lib/unistr/u16-to-u8.c, ./lib/unistr/u16-uctomb-aux.c, ./lib/unistr/u32-mblen.c, ./lib/unistr/u32-mbtoucr.c, ./lib/unistr/u32-next.c, ./lib/unistr/u32-prev.c, ./lib/unistr/u32-strmblen.c, ./lib/unistr/u32-strmbtouc.c, ./lib/unistr/u32-to-u16.c, ./lib/unistr/u32-to-u8.c, ./lib/unistr/u8-check.c, ./lib/unistr/u8-prev.c, ./lib/unistr/u8-to-u16.c, ./lib/unistr/u8-to-u32.c, ./lib/unistr/u8-uctomb-aux.c
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unicase/cased.c, ./lib/unicase/ignorable.c, ./lib/uniconv/u-conv-from-enc.h, ./lib/uniconv/u-strconv-from-enc.h, ./lib/uniconv/u8-conv-from-enc.c, ./lib/uniconv/u8-conv-to-enc.c, ./lib/unistr/u32-mbtouc-unsafe.c, ./lib/unistr/u32-mbtouc.c
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniconv/u16-conv-to-enc.c
+Copyright: 2002, 2006-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/uniconv/u-conv-to-enc.h
+Copyright: 2002, 2006-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/unicase.h
+Copyright: 2002, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/full-write.h
+Copyright: 2002-2003 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/stpncpy.m4
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/strtod.m4
+Copyright: 2002-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/math.in.h
+Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/strcspn.m4
+Copyright: 2002-2003, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/getopt.m4
+Copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./tests/test-stdbool.c
+Copyright: 2002-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/euidaccess.m4, ./m4/putenv.m4
+Copyright: 2002-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/sysexits.m4
+Copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/sysexits.in.h
+Copyright: 2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/strchrnul.c, ./m4/rawmemchr.m4
+Copyright: 2003, 2007, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/strchrnul.m4
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/argp.m4
+Copyright: 2003-2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/inttostr.m4
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/fprintf.c, ./lib/sprintf.c, ./lib/unistdio/ulc-fprintf.c, ./lib/unistdio/ulc-vfprintf.c, ./lib/vfprintf.c, ./lib/vsprintf.c
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/getsubopt.m4
+Copyright: 2004, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/argp-pin.c, ./lib/c-strcasestr.h, ./lib/canon-host.h, ./lib/crc.h
+Copyright: 2005 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/crc.c, ./m4/crc.m4
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/canon-host.c
+Copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/mbfile.m4, ./m4/mbiter.m4
+Copyright: 2005, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/mbchar.m4
+Copyright: 2005-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/c-strcasestr.c, ./lib/c-strstr.c, ./lib/mbscasestr.c, ./lib/mbsstr.c, ./lib/str-kmp.h
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/i-ring.c, ./lib/i-ring.h, ./lib/imaxabs.c, ./lib/imaxdiv.c, ./lib/same-inode.h, ./m4/config-h.m4, ./m4/i-ring.m4, ./m4/imaxabs.m4, ./m4/imaxdiv.m4, ./m4/no-c++.m4
+Copyright: 2006 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/wcwidth.c
+Copyright: 2006, 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/fcntl_h.m4
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/isapipe.c
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/double-slash-root.m4
+Copyright: 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/stdarg.m4
+Copyright: 2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/isapipe.m4
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./tests/test-inttypes.c
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/tsearch.m4, ./tests/test-stdint.c
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/fchdir.c, ./lib/fcntl.in.h, ./lib/inttypes.in.h, ./m4/fchdir.m4, ./m4/inttypes.m4, ./m4/openmp.m4, ./m4/wcwidth.m4, ./tests/test-getaddrinfo.c
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/ceil.c, ./lib/ceilf.c, ./lib/ceill.c, ./lib/fbufmode.h, ./lib/floor.c, ./lib/floorf.c, ./lib/floorl.c, ./lib/freadable.h, ./lib/frexpl.c, ./lib/fseek.c, ./lib/fseterr.h, ./lib/ftello.c, ./lib/fwritable.h, ./lib/fwriting.h, ./lib/iconv_close.c, ./lib/isnanf.c, ./lib/isnanl.c, ./lib/printf-frexp.c, ./lib/printf-frexp.h, ./lib/printf-frexpl.c, ./lib/printf-frexpl.h, ./lib/printf.c, ./lib/round.c, ./lib/roundf.c, ./lib/roundl.c, ./lib/trunc.c, ./lib/truncf.c, ./lib/truncl.c, ./lib/unictype/block_test.c, ./lib/unictype/blocks.c, ./lib/unictype/categ_and.c, ./lib/unictype/categ_and_not.c, ./lib/unictype/categ_none.c, ./lib/unictype/categ_or.c, ./lib/unictype/pr_byname.c, ./lib/unictype/scripts.c, ./lib/unictype/sy_c_ident.c, ./lib/unictype/sy_c_whitespace.c, ./lib/unictype/sy_java_ident.c, ./lib/unictype/sy_java_whitespace.c, ./lib/unistr/u16-mbsnlen.c, ./lib/unistr/u32-mbsnlen.c, ./lib/unistr/u8-mbsnlen.c, ./lib/vprintf.c, ./m4/fbufmode.m4, ./m4/fpieee.m4, ./m4/freadable.m4, ./m4/freading.m4, ./m4/fseek.m4, ./m4/ftell.m4, ./m4/fwritable.m4, ./m4/fwriting.m4, ./m4/round.m4, ./m4/trunc.m4, ./m4/truncf.m4, ./tests/test-arpa_inet.c, ./tests/test-netinet_in.c, ./tests/test-search.c, ./tests/test-strings.c, ./tests/test-sys_time.c, ./tests/test-sysexits.c
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/ftell.c, ./m4/ftello.m4, ./tests/test-math.c, ./tests/test-roundf1.c
+Copyright: 2007, 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/frexp.m4
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/signbitf.c, ./lib/signbitl.c, ./m4/ceil.m4, ./m4/ceilf.m4, ./m4/ceill.m4, ./m4/floor.m4, ./m4/floorf.m4, ./m4/floorl.m4, ./m4/fpurge.m4, ./m4/locale_h.m4, ./m4/printf-frexp.m4, ./m4/printf-frexpl.m4, ./m4/roundl.m4, ./tests/test-fcntl-h.c, ./tests/test-locale.c, ./tests/test-stdio.c, ./tests/test-stdlib.c, ./tests/test-string.c, ./tests/test-sys_socket.c, ./tests/test-time.c, ./tests/test-unistd.c
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/fpucw.h, ./lib/freading.h, ./lib/freopen.c, ./lib/frexp.c, ./lib/isnan.c, ./lib/isnand-nolibm.h, ./lib/isnanf-nolibm.h, ./lib/isnanl-nolibm.h, ./lib/mbschr.c, ./lib/mbslen.c, ./lib/mbsnlen.c, ./lib/mbsrchr.c, ./lib/mbssep.c, ./lib/search.in.h, ./m4/freopen.m4, ./m4/math_h.m4, ./m4/search_h.m4, ./m4/truncl.m4, ./tests/test-byteswap.c, ./tests/test-ceilf1.c, ./tests/test-ceilf2.c, ./tests/test-floorf1.c, ./tests/test-floorf2.c, ./tests/test-frexp.c, ./tests/test-netdb.c, ./tests/test-printf-frexp.c, ./tests/test-printf-frexpl.c, ./tests/test-round1.c, ./tests/test-round2.c, ./tests/test-sys_stat.c, ./tests/test-trunc1.c, ./tests/test-trunc2.c, ./tests/test-truncf1.c, ./tests/test-truncf2.c
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/fbufmode.c, ./lib/fpurge.c, ./lib/freadable.c, ./lib/freading.c, ./lib/fseterr.c, ./lib/fwritable.c, ./lib/fwriting.c, ./lib/locale.in.h, ./lib/open.c, ./lib/signbitd.c, ./m4/dprintf-posix.m4, ./m4/fprintf-posix.m4, ./m4/frexpl.m4, ./m4/isnand.m4, ./m4/isnanf.m4, ./m4/isnanl.m4, ./m4/ldexpl.m4, ./m4/open.m4, ./m4/printf-posix-rpl.m4, ./m4/roundf.m4, ./m4/signbit.m4, ./m4/snprintf-posix.m4, ./m4/sprintf-posix.m4, ./m4/vasnprintf-posix.m4, ./m4/vasprintf-posix.m4, ./m4/vdprintf-posix.m4, ./m4/vfprintf-posix.m4, ./m4/vprintf-posix.m4, ./m4/vsnprintf-posix.m4, ./m4/vsprintf-posix.m4, ./tests/nan.h, ./tests/test-ceill.c, ./tests/test-floorl.c, ./tests/test-frexpl.c, ./tests/test-ldexpl.c, ./tests/test-roundl.c, ./tests/test-sys_select.c, ./tests/test-truncl.c, ./tests/test-wchar.c, ./tests/test-wctype.c
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/isnand.c, ./lib/mbsnrtowcs.c, ./lib/rawmemchr.c, ./lib/sched.in.h, ./lib/sig-handler.h, ./lib/sigaction.c, ./lib/stdarg.in.h, ./lib/wcsnrtombs.c, ./lib/wcsrtombs.c, ./lib/wctob.c, ./m4/atoll.m4, ./m4/getdtablesize.m4, ./m4/mbrlen.m4, ./m4/mbsnrtowcs.m4, ./m4/posix_spawn.m4, ./m4/sched_h.m4, ./m4/sigaction.m4, ./m4/spawn_h.m4, ./tests/test-random_r.c, ./tests/test-select-fd.c, ./tests/test-select-stdin.c
+Copyright: 2008 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./m4/sigpipe.m4
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/getdtablesize.c, ./lib/ignore-value.h, ./lib/wcsrtombs-state.c, ./m4/wcsnrtombs.m4, ./m4/wcsrtombs.m4, ./m4/wctob.m4, ./tests/test-select.c
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./lib/filevercmp.c, ./lib/filevercmp.h
+Copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+License: LGPL [REF15]
+
+Files: ./lib/accept4.c, ./lib/array-mergesort.h, ./lib/dprintf.c, ./lib/dup3.c, ./lib/mbmemcasecmp.h, ./lib/memcmp2.c, ./lib/memcmp2.h, ./lib/memxfrm.c, ./lib/memxfrm.h, ./lib/pipe2.c, ./lib/popen.c, ./lib/unicase/casefold.h, ./lib/unicase/caseprop.h, ./lib/unicase/context.h, ./lib/unicase/empty-prefix-context.c, ./lib/unicase/empty-suffix-context.c, ./lib/unicase/invariant.h, ./lib/unicase/locale-language.c, ./lib/unicase/special-casing.c, ./lib/unicase/special-casing.h, ./lib/unicase/u-casecmp.h, ./lib/unicase/u-casecoll.h, ./lib/unicase/u-casefold.h, ./lib/unicase/u-casemap.h, ./lib/unicase/u-casexfrm.h, ./lib/unicase/u-ct-casefold.h, ./lib/unicase/u-ct-totitle.h, ./lib/unicase/u-is-cased.h, ./lib/unicase/u-is-invariant.h, ./lib/unicase/u-prefix-context.h, ./lib/unicase/u-suffix-context.h, ./lib/unicase/u-totitle.h, ./lib/unicase/u16-casecmp.c, ./lib/unicase/u16-casecoll.c, ./lib/unicase/u16-casefold.c, ./lib/unicase/u16-casemap.c, ./lib/unicase/u16-casexfrm.c, ./lib/unicase/u16-ct-casefold.c, ./lib/unicase/u16-ct-tolower.c, ./lib/unicase/u16-ct-totitle.c, ./lib/unicase/u16-ct-toupper.c, ./lib/unicase/u16-is-cased.c, ./lib/unicase/u16-is-casefolded.c, ./lib/unicase/u16-is-invariant.c, ./lib/unicase/u16-is-lowercase.c, ./lib/unicase/u16-is-titlecase.c, ./lib/unicase/u16-is-uppercase.c, ./lib/unicase/u16-prefix-context.c, ./lib/unicase/u16-suffix-context.c, ./lib/unicase/u16-tolower.c, ./lib/unicase/u16-totitle.c, ./lib/unicase/u16-toupper.c, ./lib/unicase/u32-casecmp.c, ./lib/unicase/u32-casecoll.c, ./lib/unicase/u32-casefold.c, ./lib/unicase/u32-casemap.c, ./lib/unicase/u32-casexfrm.c, ./lib/unicase/u32-ct-casefold.c, ./lib/unicase/u32-ct-tolower.c, ./lib/unicase/u32-ct-totitle.c, ./lib/unicase/u32-ct-toupper.c, ./lib/unicase/u32-is-cased.c, ./lib/unicase/u32-is-casefolded.c, ./lib/unicase/u32-is-invariant.c, ./lib/unicase/u32-is-lowercase.c, ./lib/unicase/u32-is-titlecase.c, ./lib/unicase/u32-is-uppercase.c, ./lib/unicase/u32-prefix-context.c, ./lib/unicase/u32-suffix-context.c, ./lib/unicase/u32-tolower.c, ./lib/unicase/u32-totitle.c, ./lib/unicase/u32-toupper.c, ./lib/unicase/u8-casecmp.c, ./lib/unicase/u8-casecoll.c, ./lib/unicase/u8-casefold.c, ./lib/unicase/u8-casemap.c, ./lib/unicase/u8-casexfrm.c, ./lib/unicase/u8-ct-casefold.c, ./lib/unicase/u8-ct-tolower.c, ./lib/unicase/u8-ct-totitle.c, ./lib/unicase/u8-ct-toupper.c, ./lib/unicase/u8-is-cased.c, ./lib/unicase/u8-is-casefolded.c, ./lib/unicase/u8-is-invariant.c, ./lib/unicase/u8-is-lowercase.c, ./lib/unicase/u8-is-titlecase.c, ./lib/unicase/u8-is-uppercase.c, ./lib/unicase/u8-prefix-context.c, ./lib/unicase/u8-suffix-context.c, ./lib/unicase/u8-tolower.c, ./lib/unicase/u8-totitle.c, ./lib/unicase/u8-toupper.c, ./lib/unicase/ulc-casecmp.c, ./lib/unicase/ulc-casecoll.c, ./lib/unicase/ulc-casexfrm.c, ./lib/unicase/unicasemap.h, ./lib/uninorm/canonical-decomposition.c, ./lib/uninorm/compat-decomposition.c, ./lib/uninorm/composition-table.gperf, ./lib/uninorm/decompose-internal.c, ./lib/uninorm/decompose-internal.h, ./lib/uninorm/decomposing-form.c, ./lib/uninorm/decomposition-table.c, ./lib/uninorm/decomposition.c, ./lib/uninorm/nfc.c, ./lib/uninorm/nfd.c, ./lib/uninorm/nfkc.c, ./lib/uninorm/nfkd.c, ./lib/uninorm/normalize-internal.h, ./lib/uninorm/u-normalize-internal.h, ./lib/uninorm/u-normcmp.h, ./lib/uninorm/u-normcoll.h, ./lib/uninorm/u-normxfrm.h, ./lib/uninorm/u16-normalize.c, ./lib/uninorm/u16-normcmp.c, ./lib/uninorm/u16-normcoll.c, ./lib/uninorm/u16-normxfrm.c, ./lib/uninorm/u32-normalize.c, ./lib/uninorm/u32-normcmp.c, ./lib/uninorm/u32-normcoll.c, ./lib/uninorm/u32-normxfrm.c, ./lib/uninorm/u8-normalize.c, ./lib/uninorm/u8-normcmp.c, ./lib/uninorm/u8-normcoll.c, ./lib/uninorm/u8-normxfrm.c, ./lib/uninorm/uninorm-filter.c, ./lib/unistr/u-cmp2.h, ./lib/unistr/u-strcoll.h, ./lib/unistr/u16-cmp2.c, ./lib/unistr/u16-strcoll.c, ./lib/unistr/u32-cmp2.c, ./lib/unistr/u32-strcoll.c, ./lib/unistr/u8-cmp2.c, ./lib/unistr/u8-strcoll.c, ./lib/uniwbrk/u-wordbreaks.h, ./lib/uniwbrk/u16-wordbreaks.c, ./lib/uniwbrk/u32-wordbreaks.c, ./lib/uniwbrk/u8-wordbreaks.c, ./lib/uniwbrk/wbrktable.c, ./lib/uniwbrk/wbrktable.h, ./lib/vdprintf.c, ./m4/accept4.m4, ./m4/alphasort.m4, ./m4/dprintf.m4, ./m4/dup3.m4, ./m4/libunistring.m4, ./m4/pipe2.m4, ./m4/popen.m4, ./m4/scandir.m4, ./m4/vdprintf.m4, ./tests/test-signal.c, ./tests/test-stddef.c, ./tests/test-sys_utsname.c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL [REF15]
+
+Files: ./build-aux/link-warning.h, ./lib/iconv_open-aix.gperf, ./lib/iconv_open-hpux.gperf, ./lib/iconv_open-irix.gperf, ./lib/iconv_open-osf.gperf, ./lib/iconv_open-solaris.gperf, ./lib/malloca.valgrind, ./lib/memchr.valgrind, ./lib/memchr2.valgrind, ./lib/se-context.in.h, ./lib/se-selinux.in.h
+License: LGPL-2+ [REF16]
+
+Files: ./lib/random_r.c
+Copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/regex.h
+Copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/tempname.c
+Copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/fnmatch.in.h
+Copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/memcmp.c
+Copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/memchr.c, ./lib/memchr2.c
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/strpbrk.c
+Copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/strsignal.c
+Copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/strdup.c
+Copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/memset.c
+Copyright: 1991, 2003 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/fnmatch_loop.c
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/fnmatch.c
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/memmem.c, ./lib/strstr.c
+Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/glob-libc.h
+Copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/glob.c
+Copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/stpcpy.c
+Copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/gethostname.c
+Copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/getpass.c
+Copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/getndelim2.c
+Copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/mktime.c
+Copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/getdelim.c
+Copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/timegm.c
+Copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/minmax.h
+Copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/alloca.in.h
+Copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/stdlib.in.h
+Copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/md2.c, ./lib/md4.c
+Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/md5.c
+Copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/argz.in.h
+Copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/c-strcase.h
+Copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/string.in.h
+Copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/md5.h
+Copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/gettext.h
+Copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/argz.c
+Copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/localename.c
+Copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/lcmessage.m4
+Copyright: 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/nls.m4
+Copyright: 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/intl.m4
+Copyright: 1995-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/gettext.m4, ./m4/po.m4
+Copyright: 1995-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/regex.m4
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/strndup.c
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/inet_pton.c
+Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/siglist.h
+Copyright: 1996,97,98,99,2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/progtest.m4
+Copyright: 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./build-aux/config.rpath
+Copyright: 1996-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/malloc.c
+Copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/d-type.m4
+Copyright: 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/strverscmp.c
+Copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/getaddrinfo.c
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/gai_strerror.c
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/realloc.c
+Copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/lstat.c
+Copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/lstat.m4
+Copyright: 1997-2001, 2003-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/inttypes-pri.m4
+Copyright: 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/inttypes_h.m4, ./m4/stdint_h.m4
+Copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/intmax_t.m4
+Copyright: 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/uintmax_t.m4
+Copyright: 1997-2004, 2007-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/check-version.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/des.c
+Copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/mkostemp.c, ./lib/mkstemp.c
+Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/c-strcasecmp.c, ./lib/c-strncasecmp.c
+Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/strcasecmp.c, ./lib/strncasecmp.c
+Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/getline.m4
+Copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/base64.c
+Copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/mkdtemp.c
+Copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/asnprintf.c
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/asprintf.c
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/vasprintf.c
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/printf-parse.h
+Copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/printf-args.c
+Copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/printf-args.h
+Copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/vasnprintf.c
+Copyright: 1999, 2002-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/dup2.c
+Copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/printf-parse.c
+Copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/mbrtowc.c
+Copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/ref-add.sin, ./lib/ref-del.sin
+Copyright: 2000 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/arcfour.h
+Copyright: 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/arctwo.h
+Copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/arcfour.c
+Copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/sha1.c
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/physmem.c
+Copyright: 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/sha1.h
+Copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/md2.h, ./lib/md4.h
+Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/physmem.h
+Copyright: 2000, 2003 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/time_h.m4
+Copyright: 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/glibc2.m4, ./m4/glibc21.m4
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/codeset.m4
+Copyright: 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/iconv.m4
+Copyright: 2000-2002, 2007-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/localcharset.h
+Copyright: 2000-2003 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/config.charset
+Copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/localcharset.c
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/fnmatch.m4
+Copyright: 2000-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/intprops.h
+Copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/gettimeofday.c
+Copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/poll.in.h
+Copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/mkstemp.m4
+Copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/mkdir.c
+Copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/mkdir-slash.m4
+Copyright: 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/dirfd.c
+Copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/stdint.in.h
+Copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/signalblocking.m4
+Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/streq.h
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/gettimeofday.m4
+Copyright: 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/sys_wait.in.h
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/mkdtemp.m4
+Copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/stdbool.in.h
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/poll.c
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/striconv.h
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/concat-filename.c, ./lib/findprog-lgpl.c
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/filename.h
+Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/dirfd.m4
+Copyright: 2001-2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/striconv.c
+Copyright: 2001-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/stdint.m4
+Copyright: 2001-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/gc-pbkdf2-sha1.c, ./m4/md2.m4, ./m4/read-file.m4
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/gc-gnulib.c, ./lib/gc-libgcrypt.c, ./lib/regex_internal.c, ./lib/regex_internal.h, ./lib/regexec.c
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/md4.m4, ./m4/md5.m4, ./m4/sha1.m4
+Copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./tests/test-gc-pbkdf2-sha1.c
+Copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/gc.h
+Copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
+License: LGPL-2+ [REF16]
+
+Files: ./m4/memmem.m4
+Copyright: 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/strsep.m4
+Copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/memchr.m4
+Copyright: 2002, 2003, 2004, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/raise.c, ./lib/regex.c
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/pathmax.m4
+Copyright: 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/strptime.c
+Copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/localcharset.m4
+Copyright: 2002, 2004, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/getpagesize.m4
+Copyright: 2002, 2004-2005, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/dup2.m4
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/strcase.m4, ./m4/strverscmp.m4
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/stpcpy.m4
+Copyright: 2002, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/intdiv0.m4
+Copyright: 2002, 2007-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/gethostname.m4
+Copyright: 2002, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/memset.m4
+Copyright: 2002, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/regcomp.c
+Copyright: 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/physmem.m4
+Copyright: 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/getpass.m4
+Copyright: 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/mktime.m4, ./m4/strnlen.m4
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/strndup.m4
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/vasprintf.m4
+Copyright: 2002-2003, 2006-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/strpbrk.m4
+Copyright: 2002-2003, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/wchar_t.m4
+Copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/alloca.m4
+Copyright: 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/vasnprintf.m4
+Copyright: 2002-2004, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/vasnprintf.h, ./m4/snprintf.m4, ./m4/vsnprintf.m4
+Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/memcmp.m4
+Copyright: 2002-2004, 2007-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/intmax.m4
+Copyright: 2002-2005, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/stdbool.m4
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/strdup.m4
+Copyright: 2002-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/arctwo.c
+Copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/getndelim2.h
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/poll.m4
+Copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/size_max.m4
+Copyright: 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/locale-fr.m4, ./m4/locale-ja.m4, ./m4/locale-zh.m4
+Copyright: 2003, 2005-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/time_r.c
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/time_r.m4
+Copyright: 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/getndelim2.m4
+Copyright: 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/extensions.m4
+Copyright: 2003, 2006-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/mempcpy.c
+Copyright: 2003, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/printf-posix.m4, ./m4/timegm.m4
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/printf.m4, ./m4/wint_t.m4
+Copyright: 2003, 2007-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/xsize.h
+Copyright: 2003, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/alignof.h
+Copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/mempcpy.m4
+Copyright: 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/xsize.m4
+Copyright: 2003-2004, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/unistd.in.h
+Copyright: 2003-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/getpass.h
+Copyright: 2004 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/base64.h
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/base64.m4
+Copyright: 2004, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/errno_h.m4
+Copyright: 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/sockpfaf.m4
+Copyright: 2004, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/snprintf.c, ./lib/vsnprintf.c
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/dummy.c, ./lib/strsep.c
+Copyright: 2004, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/stdio.in.h
+Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/argz.m4, ./m4/getaddrinfo.m4, ./m4/intlmacosx.m4
+Copyright: 2004-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/check-version.h, ./lib/hmac.h, ./lib/memxor.h, ./lib/rijndael-alg-fst.h, ./lib/rijndael-api-fst.h, ./lib/strnlen1.h, ./tests/test-gc-arcfour.c, ./tests/test-gc-arctwo.c, ./tests/test-gc-des.c, ./tests/test-gc-hmac-md5.c, ./tests/test-gc-hmac-sha1.c, ./tests/test-gc-md2.c, ./tests/test-gc-md4.c, ./tests/test-gc-md5.c, ./tests/test-gc-rijndael.c, ./tests/test-gc-sha1.c, ./tests/test-md2.c, ./tests/test-md4.c
+Copyright: 2005 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/hmac-md5.c, ./lib/hmac-sha1.c, ./lib/memxor.c, ./lib/rijndael-alg-fst.c, ./lib/rijndael-api-fst.c, ./lib/verify.h, ./m4/arcfour.m4, ./m4/arctwo.m4, ./m4/check-version.m4, ./m4/des.m4, ./m4/gc-pbkdf2-sha1.m4, ./m4/hmac-md5.m4, ./m4/hmac-sha1.m4, ./m4/rijndael.m4, ./tests/test-gc.c
+Copyright: 2005, 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/getline.c, ./lib/getlogin_r.c, ./lib/strnlen.c, ./m4/getdelim.m4, ./m4/getlogin_r.m4
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/sha256.c, ./lib/sha512.c
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/sha256.h, ./lib/sha512.h, ./m4/inet_ntop.m4, ./m4/sha512.m4
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/inet_ntop.c
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc. / 1996-1999 by Internet Software Consortium
+License: LGPL-2+ [REF16]
+
+Files: ./m4/gc.m4
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/byteswap.in.h, ./lib/des.h, ./m4/gc-arcfour.m4, ./m4/gc-arctwo.m4, ./m4/gc-des.m4, ./m4/gc-hmac-md5.m4, ./m4/gc-hmac-sha1.m4, ./m4/gc-md2.m4, ./m4/gc-md4.m4, ./m4/gc-md5.m4, ./m4/gc-rijndael.m4, ./m4/gc-sha1.m4, ./tests/test-des.c
+Copyright: 2005, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/strcasestr.m4
+Copyright: 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/byteswap.m4
+Copyright: 2005, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/glthread/tls.h
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/tls.m4, ./m4/visibility.m4
+Copyright: 2005, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/sha256.m4
+Copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/minmax.m4
+Copyright: 2005, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/size_max.h, ./lib/strnlen1.c
+Copyright: 2005-2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/arpa_inet.in.h
+Copyright: 2005-2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/glob.in.h, ./m4/glob.m4
+Copyright: 2005-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/glthread/cond.h, ./lib/glthread/lock.c, ./lib/glthread/lock.h, ./lib/glthread/thread.c, ./lib/glthread/thread.h, ./lib/glthread/tls.c, ./lib/glthread/yield.h, ./lib/strcasestr.c
+Copyright: 2005-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/glthread/threadlib.c, ./lib/sys_socket.in.h, ./lib/sys_stat.in.h, ./m4/gc-random.m4, ./m4/lock.m4, ./m4/sys_socket_h.m4, ./m4/threadlib.m4, ./m4/yield.m4
+Copyright: 2005-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/read-file.c, ./lib/read-file.h, ./lib/u64.h, ./m4/memxor.m4
+Copyright: 2006 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/selinux-context-h.m4
+Copyright: 2006, 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/selinux-selinux-h.m4
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/arpa_inet_h.m4
+Copyright: 2006, 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/inet_pton.m4
+Copyright: 2006, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/tempname.h, ./m4/intldir.m4
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/tempname.m4
+Copyright: 2006-2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/sigprocmask.c, ./m4/netinet_in_h.m4, ./m4/wctype.m4
+Copyright: 2006-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/dirent.in.h, ./lib/signal.in.h, ./lib/wctype.in.h, ./m4/absolute-header.m4, ./m4/include_next.m4, ./m4/sys_select_h.m4, ./m4/sys_stat_h.m4, ./m4/unistd_h.m4
+Copyright: 2006-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/float+.h, ./lib/getpagesize.c, ./lib/localename.h, ./lib/lseek.c, ./lib/sleep.c, ./m4/count-one-bits.m4, ./m4/float_h.m4, ./m4/localename.m4, ./m4/lseek.m4, ./m4/strings_h.m4, ./m4/sys_time_h.m4
+Copyright: 2007 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./m4/signal_h.m4, ./m4/string_h.m4
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/iconv_open.c, ./m4/gc-camellia.m4, ./m4/malloc.m4, ./m4/realloc.m4, ./m4/strptime.m4
+Copyright: 2007, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/count-one-bits.h, ./lib/float.in.h, ./lib/freadahead.h, ./lib/freadptr.h, ./lib/freadseek.h, ./lib/iconv.in.h, ./lib/netinet_in.in.h, ./lib/strings.in.h, ./lib/sys_file.in.h, ./lib/sys_time.in.h, ./m4/fseeko.m4, ./m4/iconv_h.m4, ./m4/sleep.m4
+Copyright: 2007-2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/fopen.c, ./lib/freadahead.c, ./lib/freadptr.c, ./lib/freadseek.c, ./lib/fseeko.c, ./lib/sys_select.in.h, ./lib/time.in.h, ./lib/wchar.in.h, ./m4/fopen.m4, ./m4/iconv_open.m4, ./m4/stdio_h.m4, ./m4/stdlib_h.m4, ./m4/wchar.m4
+Copyright: 2007-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/accept.c, ./lib/bind.c, ./lib/btowc.c, ./lib/connect.c, ./lib/fclose.c, ./lib/flock.c, ./lib/fsync.c, ./lib/getpeername.c, ./lib/getsockname.c, ./lib/glthread/cond.c, ./lib/listen.c, ./lib/mbsinit.c, ./lib/mbsrtowcs.c, ./lib/memchr2.h, ./lib/netdb.in.h, ./lib/perror.c, ./lib/recv.c, ./lib/recvfrom.c, ./lib/send.c, ./lib/sendto.c, ./lib/shutdown.c, ./lib/str-two-way.h, ./lib/sys_times.in.h, ./lib/times.c, ./lib/w32sock.h, ./lib/wcrtomb.c, ./m4/cond.m4, ./m4/flock.m4, ./m4/fsync.m4, ./m4/hostent.m4, ./m4/mbsinit.m4, ./m4/netdb_h.m4, ./m4/perror.m4, ./m4/random_r.m4, ./m4/servent.m4, ./m4/strsignal.m4, ./m4/sys_file_h.m4, ./m4/sys_times_h.m4, ./m4/sys_wait_h.m4, ./m4/thread.m4, ./m4/write.m4
+Copyright: 2008 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/bitrotate.h, ./lib/ioctl.c, ./lib/sockets.h, ./m4/sockets.m4, ./m4/strstr.m4
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/close.c, ./lib/errno.in.h, ./lib/getsockopt.c, ./lib/mbsrtowcs-state.c, ./lib/select.c, ./lib/setsockopt.c, ./lib/socket.c, ./lib/sockets.c, ./lib/stdio-write.c, ./lib/sys_ioctl.in.h, ./lib/write.c, ./m4/btowc.m4, ./m4/close.m4, ./m4/dirent_h.m4, ./m4/fclose.m4, ./m4/mbsrtowcs.m4, ./m4/sys_ioctl_h.m4, ./m4/wcrtomb.m4
+Copyright: 2008-2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./lib/close-hook.c, ./lib/close-hook.h, ./lib/link.c, ./lib/pthread.in.h, ./lib/safe-alloc.c, ./lib/safe-alloc.h, ./lib/stddef.in.h, ./lib/sys_utsname.in.h, ./lib/uname.c, ./m4/link.m4, ./m4/mkostemp.m4, ./m4/pthread.m4, ./m4/safe-alloc.m4, ./m4/select.m4, ./m4/stddef_h.m4, ./m4/sys_utsname_h.m4, ./m4/uname.m4
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-2+ [REF16]
+
+Files: ./tests/test-safe-alloc.c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-2.1+ [REF17]
+
+Files: ./tests/test-array-mergesort.c
+Copyright: 2009 Free Software Foundation, Inc.
+License: LGPL-3+ [REF18]
+
+Files: ./lib/alloca.c
+License: PD [REF19]
+
+Files: ./lib/memmove.c
+License: PD [REF20]
+
+Files: ./doc/regexprops-generic.texi
+Copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+License: PD [REF21]
+
+Files: ./m4/atexit.m4, ./m4/memmove.m4
+Copyright: 2002, 2009 Free Software Foundation, Inc.
+License: PD [REF22]
+
+Files: ./lib/atexit.c
+License: PD [REF23]
+
+Files: ./doc/gpl-2.0.texi
+Copyright: 1989, 1991 Free Software Foundation, Inc.
+License: other [REF24]
+
+Files: ./doc/lgpl-2.1.texi
+Copyright: 1991, 1999 Free Software Foundation, Inc.
+License: other [REF24]
+
+Files: ./doc/fdl-1.3.texi, ./doc/fdl.texi
+Copyright: 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
+License: other [REF24]
+
+Files: ./doc/agpl-3.0.texi, ./doc/gpl-3.0.texi
+Copyright: 2007 Free Software Foundation, Inc.
+License: other [REF24]
+
+Files: ./m4/ssize_t.m4
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/lib-prefix.m4
+Copyright: 2001-2005, 2008-2009 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/lib-link.m4
+Copyright: 2001-2009 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/autobuild.m4
+Copyright: 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/socklen.m4
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/nocrash.m4
+Copyright: 2005, 2009 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/inline.m4
+Copyright: 2006, 2009 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/func.m4, ./m4/warnings.m4
+Copyright: 2008 Free Software Foundation, Inc.
+License: other [REF25]
+
+Files: ./m4/ld-output-def.m4, ./m4/ld-version-script.m4, ./m4/manywarnings.m4, ./m4/multiarch.m4
+Copyright: 2008, 2009 Free Software Foundation, Inc.
+License: other [REF25]
+
+License: other [REF01]
+    Copying and distribution of this file, with or without modification,
+    are permitted in any medium without royalty provided the copyright
+    notice and this notice are preserved.
+
+License: other [REF02]
+    Copying and distribution of this file, with or without modification,
+    are permitted in any medium without royalty provided the copyright
+    notice and this notice are preserved.  This file is offered as-is,
+    without warranty of any kind.
+
+License: other [REF03]
+    Copying and distribution of this file, with or without modification,
+    in any medium, are permitted without royalty provided the copyright
+    notice and this notice are preserved.
+
+License: other [REF04]
+    Everyone is permitted to copy and distribute verbatim copies
+    of this license document, but changing it is not allowed.
+
+License: other [REF05]
+    Original author: Noah Friedman <friedman@prep.ai.mit.edu>
+    Created: 1993-05-16
+    Public domain.
+
+License: other [REF06]
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to
+    deal in the Software without restriction, including without limitation the
+    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+    sell copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+    
+    The above copyright notice and this permission notice shall be included in
+    all copies or substantial portions of the Software.
+    
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+    X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+    AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
+    TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+    
+    Except as contained in this notice, the name of the X Consortium shall not
+    be used in advertising or otherwise to promote the sale, use or other deal-
+    ings in this Software without prior written authorization from the X Consor-
+    tium.
+    
+    FSF changes to this file are in the public domain.
+
+License: other [REF07]
+    This file can be copied and used freely without restrictions.  It can
+    be used in projects which are not available under the GNU General Public
+    License but which still want to provide support for the GNU gettext
+    functionality.
+    Please note that the actual code of GNU gettext is covered by the GNU
+    General Public License and is *not* in the public domain.
+
+License: other [REF08]
+    This file is free software, distributed under the terms of the GNU
+    General Public License.  As a special exception to the GNU General
+    Public License, this file may be distributed as part of a program
+    that contains a configuration script generated by Autoconf, under
+    the same distribution terms as the rest of that program.
+
+License: other [REF09]
+    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.
+
+License: GFDL-1.3+-NIV [REF10]
+    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, no Front-Cover Texts, and no Back-Cover
+    Texts.  A copy of the license is included in the ``GNU Free
+    Documentation License'' file as part of this distribution.
+
+License: GFDL-1.3+-NIV [REF11]
+    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.
+
+License: GPL [REF12]
+    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/>.
+
+License: GPL-2+ [REF13]
+    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, write to the Free Software Foundation,
+    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+
+License: GPL-3+ [REF14]
+    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/>.
+
+License: LGPL [REF15]
+    This program is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Library General Public License as published
+    by the Free Software Foundation; either version 2, or (at your option)
+    any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Library General Public License for more details.
+    
+    You should have received a copy of the GNU Library General Public
+    License along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+    USA.
+
+License: LGPL-2+ [REF16]
+    This program is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Library General Public License as published
+    by the Free Software Foundation; either version 2, or (at your option)
+    any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Library General Public License for more details.
+    
+    You should have received a copy of the GNU Library General Public
+    License along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+    USA.
+
+License: LGPL-2.1+ [REF17]
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+    
+    This library 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
+    Lesser 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/>.
+
+License: LGPL-3+ [REF18]
+    This program is free software: you can redistribute it and/or modify it
+    under the terms of the GNU Lesser 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
+    Lesser General Public License for more details.
+    
+    You should have received a copy of the GNU Lesser General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+License: PD [REF19]
+    (Mostly) portable public-domain implementation -- D A Gwyn
+
+License: PD [REF20]
+    In the public domain.
+    By David MacKenzie <djm@gnu.ai.mit.edu>.
+
+License: PD [REF21]
+    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.
+
+License: PD [REF22]
+    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.
+
+License: PD [REF23]
+    This function is in the public domain.  --Mike Stump.
+
+License: other [REF24]
+    Everyone is permitted to copy and distribute verbatim copies
+    of this license document, but changing it is not allowed.
+
+License: other [REF25]
+    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.
+
+
+The complete text of standard licenses referenced above
+can be found in /usr/share/common-licenses/ as follows:
+
+LICENSE                                                      FILE
+GNU Free Documentation License Version 1.3                   GFDL-1.3
+GNU General Public License                                   GPL
+GNU General Public License Version 2                         GPL-2
+GNU General Public License Version 3                         GPL-3
+GNU Lesser General Public License                            LGPL
+GNU Library General Public License Version 2                 LGPL-2
+GNU Lesser General Public License Version 2.1                LGPL-2.1
+GNU Lesser General Public License Version 3                  LGPL-3